/*
Theme Name: Kadence Child
Template: kadence
Version: 1.0
*/

/* Getting rid of sorting control and result count in product catalog */
.woocommerce-result-count, .woocommerce-ordering {
    display: none !important;
}

/* Styling headings in Shop page */
.woocommerce-shop .shop-category-header {
    margin-bottom: 3rem;
	margin-top: 5rem;
}

.woocommerce-shop .shop-category-title {
    margin: 0;
	line-height: 1.5rem;
}

@media (max-width: 767px) {
	body.woocommerce-shop h2.shop-category-title {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
		margin: 0 !important;
	}
}

/* Changing color on Offer button on Shop images */
.woocommerce span.onsale {
    background: #ff6900 !important; /* your orange */
    color: #fff !important;
    border: none;
}

/* Forcing narrow login form */
.woocommerce-account .entry-content.single-content > .woocommerce:has(.woocommerce-form-login) {
    max-width: 450px;
    margin: 0 auto;
}

/* Styles for plugin Firstbird Archive Variations */
.archive-variation-picker {
	margin-top: 0.75rem;
}

.archive-variation-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.4rem;
	margin-bottom: 0.75rem;
	text-align: left;
}

.archive-variation-label {
	flex: 0 0 auto;
	font-size: 0.85rem;
	font-weight: 600;
	color: #666;
	line-height: 1.2;
	margin-right: 0.1rem;
}

.archive-variation-options {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.4rem;
	flex: 1 1 auto;
	min-width: 0;
}

.archive-variation-option {
	border: 1px solid #d6d6d6;
	background: #fff;
	color: #1f3547;
	border-radius: 999px;
	padding: 0.35rem 0.75rem;
	font-size: 0.85rem;
	line-height: 1.2;
	cursor: pointer;
}

.archive-variation-option:hover,
.archive-variation-option.selected {
	background: #2b6cb0;
	color: #fff;
	border-color: #2b6cb0;
}

.archive-add-to-cart {
	width: 100%;
	text-align: center;
}

.archive-add-to-cart.disabled {
	opacity: 0.45;
	pointer-events: none;
}