/* ══════════════════════════════════════════════
   Somló Kincse — Custom Styles
   Design: BEMIND (bemind.hu)
   ══════════════════════════════════════════════ */

/* ── Base & Utilities ── */

::selection {
	background: rgba(184, 151, 106, 0.2);
}

/* Ensure default fonts on all page content */
.entry-content,
.wp-block-post-content,
.wp-site-blocks main p,
.wp-site-blocks main li {
	font-family: var(--wp--preset--font-family--body) !important;
	font-size: 15px;
	line-height: 1.85;
	color: var(--wp--preset--color--footer-green);
}

/* Body padding: controlled by Styles → Layout in the editor, not hardcoded */
.wp-site-blocks {
	/* overflow removed — breaks sticky header */
}
/* Remove gap between sticky header and content */
.wp-site-blocks > main {
	margin-block-start: 0 !important;
}

/* Force hero content centering */
.somlo-hero .wp-block-cover__inner-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.somlo-hero__content {
	text-align: center;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

/* Fix WooCommerce header icons */
.somlo-header .wc-block-mini-cart,
.somlo-header .wc-block-customer-account {
	margin-left: 0 !important;
}

.somlo-header .wp-block-navigation {
	flex-grow: 0;
}

/* Mobile nav overlay */
.wp-block-navigation__responsive-container.is-menu-open {
	background: var(--wp--preset--color--sand) !important;
	padding: 80px 32px 40px !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	font-family: var(--wp--preset--font-family--heading) !important;
	font-size: 24px !important;
	font-weight: 300 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	color: var(--wp--preset--color--volcanic) !important;
	padding: 12px 0 !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--gold) !important;
}

.wp-block-navigation__responsive-close-button {
	color: var(--wp--preset--color--volcanic) !important;
}

.somlo-label {
	font-family: var(--wp--preset--font-family--body);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--wp--preset--color--gold);
	margin-bottom: 16px;
	display: block;
}

.somlo-divider {
	width: 40px;
	height: 1px;
	background: var(--wp--preset--color--gold);
}

.somlo-divider--full {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(184, 151, 106, 0.25), transparent);
}

.somlo-cta-link {
	font-family: var(--wp--preset--font-family--body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: var(--wp--preset--color--volcanic);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: color 0.3s ease;
}

.somlo-cta-link::after {
	content: '';
	width: 24px;
	height: 1px;
	background: var(--wp--preset--color--gold);
	transition: width 0.4s ease;
}

.somlo-cta-link:hover::after {
	width: 36px;
}

.somlo-cta-link:hover {
	color: var(--wp--preset--color--gold);
}

/* ── Scroll Reveal Animation ── */

.somlo-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.9s ease, transform 0.9s ease;
}

.somlo-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.somlo-reveal--delay-1 { transition-delay: 0.1s; }
.somlo-reveal--delay-2 { transition-delay: 0.2s; }
.somlo-reveal--delay-3 { transition-delay: 0.3s; }

/* ── Hero Section ── */

.somlo-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-radius: 2px;
	/* Prevent alignfull from breaking out of global padding */
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: 100% !important;
}

.somlo-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(58, 58, 56, 0.25) 0%,
		rgba(58, 58, 56, 0.5) 40%,
		rgba(107, 45, 62, 0.3) 100%
	);
	z-index: 2;
}

.somlo-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.somlo-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.somlo-hero__content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 700px;
	padding: 0 24px;
}

.somlo-hero__line {
	width: 1px;
	height: 60px;
	background: linear-gradient(180deg, transparent, var(--wp--preset--color--gold));
	margin: 0 auto 32px;
}

.somlo-hero h1 {
	color: var(--wp--preset--color--sand);
	letter-spacing: -0.5px;
	margin-bottom: 24px;
}

.somlo-hero__subtitle {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 20px;
	font-weight: 300;
	font-style: italic;
	color: rgba(245, 240, 232, 0.7);
	line-height: 1.6;
	margin-bottom: 40px;
}

/* ── Sticky Header ── */

.somlo-header {
	transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
	position: sticky !important;
	top: 0 !important;
	z-index: 100;
}

/* Ensure header template part wrapper doesn't break sticky */
header.wp-block-template-part,
.wp-block-template-part:has(.somlo-header) {
	position: sticky !important;
	top: 0 !important;
	z-index: 100;
}

/* Prevent any ancestor overflow from breaking sticky */
body,
.wp-site-blocks,
header.wp-block-template-part {
	overflow-x: visible !important;
	overflow-y: visible !important;
}

/* Remove extra padding from nav group inside header */
.somlo-header .wp-block-group {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.somlo-header.is-scrolled {
	background: rgba(245, 240, 232, 0.95) !important;
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(184, 151, 106, 0.15);
}

.somlo-header.is-scrolled .wp-block-site-title a,
.somlo-header.is-scrolled .wp-block-navigation a {
	color: var(--wp--preset--color--volcanic) !important;
}

/* ── Wine Cards (WooCommerce Product Grid) ── */

.somlo-wc-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	padding: 120px 48px;
}

/* On single product, cart, and checkout pages, the wrapper should not add extra padding */
.single-product .somlo-wc-wrapper,
.woocommerce-cart .somlo-wc-wrapper,
.woocommerce-checkout .somlo-wc-wrapper {
	padding: 0;
	max-width: none;
}

/* Kill WP global margin on the WooCommerce product wrapper */
.single-product .wp-site-blocks > .woocommerce.product,
.single-product .wp-site-blocks > div > .woocommerce.product,
.woocommerce-cart .wp-site-blocks > .woocommerce,
.woocommerce-cart .wp-site-blocks > div > .woocommerce,
.woocommerce-checkout .wp-site-blocks > .woocommerce,
.woocommerce-checkout .wp-site-blocks > div > .woocommerce,
.woocommerce.product.wp-block-group {
	margin-block-start: 0 !important;
}

/* WooCommerce block-based cart/checkout pages — remove gap between header and content */
.woocommerce-cart .wp-site-blocks > main,
.woocommerce-checkout .wp-site-blocks > main,
.woocommerce-cart .wp-site-blocks > .wp-block-group,
.woocommerce-checkout .wp-site-blocks > .wp-block-group,
.woocommerce-cart .wp-site-blocks > * + main,
.woocommerce-checkout .wp-site-blocks > * + main {
	margin-block-start: 0 !important;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
	margin-block-start: 0 !important;
}

/* Collapse empty WooCommerce store notices block (causes gap on cart/checkout) */
.wc-block-store-notices:empty,
.wp-block-woocommerce-store-notices:empty {
	display: none;
}
.wc-block-store-notices,
.wp-block-woocommerce-store-notices {
	margin: 0 !important;
	padding: 0 !important;
}

/* ── Cart & Checkout — product thumbnails ── */
.wc-block-cart-items__row img,
.wc-block-components-order-summary-item__image img {
	object-fit: contain !important;
	mix-blend-mode: multiply;
	background: var(--wp--preset--color--sand);
	border-radius: 2px;
}

/* Cart thumbnail — taller to show full bottle */
.wc-block-cart-items__row .wc-block-cart-item__image {
	width: 80px !important;
	min-width: 80px;
}
.wc-block-cart-items__row .wc-block-cart-item__image img {
	aspect-ratio: auto !important;
	height: auto !important;
	width: 100% !important;
	object-fit: contain !important;
	mix-blend-mode: multiply;
}

/* Override WC grid-template-columns to give image cell more height */
table.wc-block-cart-items .wc-block-cart-items__row {
	grid-template-columns: 80px auto !important;
	grid-template-rows: auto !important;
}

/* Checkout order summary thumbnail — taller aspect */
.wc-block-components-order-summary-item__image {
	min-width: 64px;
}
.wc-block-components-order-summary-item__image img {
	aspect-ratio: 3/4 !important;
	height: auto !important;
	width: 100% !important;
}

/* ── Cart & Checkout — typography & colors ── */
.wc-block-cart .wc-block-components-product-name,
.wc-block-checkout .wc-block-components-product-name {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 500;
	color: var(--wp--preset--color--volcanic);
	text-decoration: none;
}

/* Cart — unit price (smaller, muted) vs line total (prominent, gold) */
.wc-block-cart-items__row .wc-block-components-product-price {
	font-size: 13px;
	color: var(--wp--preset--color--muted);
}
.wc-block-cart-items__row td:last-child .wc-block-components-product-price,
.wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-product-price {
	font-size: 16px;
	color: var(--wp--preset--color--gold);
}

/* Checkout order summary — unit price smaller/muted, line total gold */
.wc-block-components-order-summary-item .wc-block-components-product-price__value {
	font-size: 12px;
	color: var(--wp--preset--color--muted);
}
.wc-block-components-order-summary-item .wc-block-components-product-price__value--total {
	font-size: 14px;
	color: var(--wp--preset--color--gold);
}

/* Prevent price overflow in checkout order summary */
.wc-block-components-order-summary-item {
	overflow: hidden;
}
.wc-block-components-order-summary-item__total-price {
	font-size: 14px !important;
	color: var(--wp--preset--color--gold);
	white-space: nowrap;
}
.wc-block-components-order-summary-item__individual-price {
	font-size: 12px !important;
	color: var(--wp--preset--color--muted);
}

/* Checkout totals — Összeg, Részösszeg, Shipping */
.wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	color: var(--wp--preset--color--volcanic);
}
.wc-block-components-totals-shipping .wc-block-components-totals-item__value {
	color: var(--wp--preset--color--gold);
	font-weight: 500;
}

/* Checkout order summary heading */
.wc-block-components-checkout-order-summary__title {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 400;
}

/* Cart heading */
.wc-block-cart .wp-block-heading {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 300;
}

/* Cart/checkout buttons */
.wc-block-cart .wc-block-components-button,
.wc-block-checkout .wc-block-components-button {
	font-family: var(--wp--preset--font-family--body);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 11px;
	border-radius: 1px;
}

/* Remove link styling */
.wc-block-cart-items__row .wc-block-components-product-metadata,
.wc-block-cart-items__row .wc-block-cart-item__remove-link {
	font-size: 12px;
}

/* ── Cart & Checkout styling ── */

/* Cart item thumbnail — preserve aspect ratio, no cropping */
.wc-block-cart-items__row .wc-block-components-product-image img,
.wc-block-checkout__sidebar .wc-block-components-order-summary-item__image img {
	object-fit: contain !important;
	background: var(--wp--preset--color--sand);
	mix-blend-mode: multiply;
}

/* Hide the per-item unit price when it duplicates the line total */
.wc-block-cart-items__row .wc-block-components-product-metadata,
.wc-block-components-order-summary-item__description .wc-block-components-product-metadata {
	display: none;
}

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(240px, 320px));
	gap: 40px 32px;
	justify-content: center;
}

.woocommerce ul.products li.product {
	width: 100% !important;
	max-width: none;
	margin: 0 !important;
	padding: 20px;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 2px;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	text-align: left;
	float: none !important;
}

.woocommerce ul.products li.product:hover {
	background: rgba(184, 151, 106, 0.03);
	border-color: rgba(184, 151, 106, 0.2);
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(42, 37, 32, 0.06);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 20px;
	font-weight: 500;
	color: var(--wp--preset--color--volcanic);
	padding: 0;
	margin: 0 0 6px 0;
}

.woocommerce ul.products li.product .price {
	font-family: var(--wp--preset--font-family--body);
	font-size: 14px;
	color: var(--wp--preset--color--gold);
	margin-bottom: 14px;
}

.woocommerce ul.products li.product img {
	aspect-ratio: 3/4;
	object-fit: cover;
	width: 100%;
	height: auto;
	border-radius: 2px;
	margin-bottom: 16px;
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
	background: #fff;
	max-height: 400px;
}

/* ── Product Collection Block: product card images ── */

/* Image container */
.wc-block-components-product-image a {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 3/4;
	min-height: 200px;
	width: 100% !important;
	background-color: var(--wp--preset--color--sand);
	border-radius: 2px;
	overflow: hidden;
}

/* Force equal grid columns */
ul.wc-block-product-template.is-flex-container > li {
	flex: 1 1 0 !important;
	min-width: 0 !important;
}

/* Product images — fill container */
.wc-block-components-product-image img {
	display: block !important;
	object-fit: contain !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	mix-blend-mode: multiply;
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* WC inner container — remove padding, fill parent */
.wc-block-components-product-image__inner-container {
	padding: 0 !important;
	width: 100% !important;
	height: 100% !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	position: relative !important;
}

/* Ensure product image wrapper fills grid cell */
.wc-block-product-template .wc-block-components-product-image,
.wp-block-column .wc-block-components-product-image,
.wp-block-woocommerce-product-collection .wc-block-components-product-image {
	width: 100% !important;
	aspect-ratio: 3/4;
}
.wc-block-product-template .wc-block-components-product-image a,
.wp-block-column .wc-block-components-product-image a,
.wp-block-woocommerce-product-collection .wc-block-components-product-image a {
	flex: 1;
	width: 100% !important;
}

/* Product card hover lift */

/* Safari fix: columns-1 product images (featured wines on homepage) */
.columns-1.wc-block-product-template .wc-block-components-product-image,
.columns-1.wc-block-product-template .wc-block-components-product-image a,
.columns-1.wc-block-product-template .wc-block-components-product-image__inner-container {
	width: 100% !important;
	max-width: 100% !important;
	position: relative !important;
	display: block !important;
}
.columns-1.wc-block-product-template .wc-block-components-product-image img {
	width: 100% !important;
	height: auto !important;
	max-width: 100% !important;
	position: static !important;
	object-fit: contain !important;
	aspect-ratio: 3/4;
	mix-blend-mode: multiply;
}

/* Force 3-column product grid — override WC is-layout-flow (only for multi-product grids) */
ul.wc-block-product-template.is-flex-container:not(.columns-1) {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 24px !important;
	width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
ul.wc-block-product-template.is-flex-container:not(.columns-1) li.wc-block-product {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
	display: flex !important;
	flex-direction: column !important;
}
@media (max-width: 768px) {
	ul.wc-block-product-template.is-flex-container:not(.columns-1) {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
@media (max-width: 480px) {
	ul.wc-block-product-template.is-flex-container:not(.columns-1) {
		grid-template-columns: 1fr !important;
	}
}

.wc-block-product-template .wc-block-product {
	padding: 24px 20px;
	border: 1px solid transparent;
	border-radius: 2px;
	-webkit-transform: translateZ(0);
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
	            box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
	            border-color 0.3s ease,
	            background 0.3s ease;
}
.wc-block-product-template .wc-block-product:hover {
	transform: translateY(-4px);
	border-color: rgba(184, 151, 106, 0.25);
	background: rgba(184, 151, 106, 0.03);
	box-shadow: 0 12px 40px rgba(42, 37, 32, 0.06);
}
.wc-block-product-template .wc-block-product:hover .wc-block-components-product-image img {
	transform: scale(1.03);
}

.woocommerce ul.products li.product:hover img {
	transform: scale(1.03);
}

.woocommerce ul.products li.product .button {
	font-family: var(--wp--preset--font-family--body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: var(--wp--preset--color--volcanic);
	color: var(--wp--preset--color--sand);
	border-radius: 1px;
	padding: 12px 24px;
	transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
	background: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--volcanic);
}

/* Hide default WC category on product cards */
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .ast-woo-product-category {
	display: none;
}

/* Shop/archive page product grid - 3 columns */
.woocommerce .products .product {
	margin-bottom: 32px !important;
}

/* ── Single Product Page (Block Template) ── */

.somlo-single-product {
	background: var(--wp--preset--color--sand);
}

/* Back link */
.somlo-back-link a {
	font-family: var(--wp--preset--font-family--body);
	color: var(--wp--preset--color--muted);
	text-decoration: none;
	transition: color 0.3s ease;
}

.somlo-back-link a:hover {
	color: var(--wp--preset--color--gold);
}

/* Tame WooCommerce empty notices wrapper spacing */
.somlo-single-product .woocommerce-notices-wrapper:empty {
	display: none;
}

.somlo-single-product .wc-block-components-notices:empty {
	display: none;
}

/* Two-column layout via WP columns */
.somlo-product-columns {
	align-items: flex-start;
}

/* Image column */
.somlo-product-col-image .woocommerce-product-gallery,
.somlo-product-col-image .wp-block-woocommerce-product-image-gallery {
	background: transparent;
}

.somlo-product-col-image img {
	width: 100%;
	height: auto;
	max-height: 700px;
	object-fit: contain;
	border-radius: 2px;
}

/* Info column — title */
.somlo-product-col-info .wp-block-post-title {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 400;
	color: var(--wp--preset--color--volcanic);
	margin: 0 0 16px 0;
}

/* Info column — price */
.somlo-product-col-info .wc-block-components-product-price,
.somlo-product-col-info .wp-block-woocommerce-product-price {
	font-family: var(--wp--preset--font-family--body);
	font-size: 22px;
	color: var(--wp--preset--color--gold);
	margin-bottom: 24px;
}

/* Info column — excerpt */
.somlo-product-col-info .wp-block-post-excerpt {
	font-size: 15px;
	line-height: 1.85;
	color: var(--wp--preset--color--muted);
}

/* Info column — add to cart */
.somlo-product-col-info .wc-block-add-to-cart-form .wc-block-components-product-add-to-cart-button button,
.somlo-product-col-info .wp-block-woocommerce-add-to-cart-form .single_add_to_cart_button,
.somlo-product-col-info .single_add_to_cart_button {
	font-family: var(--wp--preset--font-family--body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	background: var(--wp--preset--color--volcanic);
	color: var(--wp--preset--color--sand);
	border: none;
	border-radius: 1px;
	padding: 16px 40px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.somlo-product-col-info .wc-block-add-to-cart-form .wc-block-components-product-add-to-cart-button button:hover,
.somlo-product-col-info .wp-block-woocommerce-add-to-cart-form .single_add_to_cart_button:hover,
.somlo-product-col-info .single_add_to_cart_button:hover {
	background: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--volcanic);
}

/* Quantity input */
.somlo-product-col-info .quantity .qty {
	border: 1px solid rgba(184, 151, 106, 0.3);
	padding: 12px;
	font-size: 14px;
	width: 70px;
	background: transparent;
	text-align: center;
}

/* Product details section below */
.somlo-product-details-section {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid rgba(184, 151, 106, 0.15);
}

/* Responsive: stack columns on mobile */
@media (max-width: 768px) {
	.somlo-product-columns {
		flex-direction: column !important;
	}

	.somlo-product-col-image,
	.somlo-product-col-info {
		flex-basis: 100% !important;
		width: 100% !important;
	}

	.somlo-product-col-image {
		margin-bottom: 32px;
	}
}

/* ── WooCommerce Product Page — Block-Compatible Styles ── */

/* Product title */
.woocommerce div.product .product_title,
.somlo-single-product .wp-block-post-title {
	font-family: var(--wp--preset--font-family--heading);
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 400;
	color: var(--wp--preset--color--volcanic);
	margin-bottom: 16px;
}

/* Product price */
.woocommerce div.product p.price,
.somlo-single-product .wc-block-components-product-price {
	font-family: var(--wp--preset--font-family--body);
	font-size: 22px;
	color: var(--wp--preset--color--gold);
	margin-bottom: 24px;
}

/* Short description */
.woocommerce div.product .woocommerce-product-details__short-description {
	font-size: 15px;
	line-height: 1.85;
	color: var(--wp--preset--color--muted);
	margin-bottom: 32px;
}

/* Add to cart button */
.woocommerce div.product .single_add_to_cart_button {
	font-family: var(--wp--preset--font-family--body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	background: var(--wp--preset--color--volcanic);
	color: var(--wp--preset--color--sand);
	border-radius: 1px;
	padding: 16px 40px;
	transition: all 0.3s ease;
}

.woocommerce div.product .single_add_to_cart_button:hover {
	background: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--volcanic);
}

/* WC product image gallery — block-compatible */
.somlo-product-col-image .woocommerce-product-gallery,
.somlo-product-col-image .wc-block-woocommerce-product-image-gallery,
.somlo-product-col-image .wp-block-woocommerce-product-image-gallery {
	background: transparent;
	border-radius: 2px;
	padding: 0;
}

.somlo-product-col-image img,
.wc-block-woocommerce-product-image-gallery img,
.wp-block-woocommerce-product-image-gallery img {
	max-height: 700px;
	width: 100%;
	max-width: 100%;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	background: var(--wp--preset--color--sand);
	mix-blend-mode: multiply;
}

/* WC Block-based product price */
.wc-block-components-product-price,
.wp-block-woocommerce-product-price {
	font-family: var(--wp--preset--font-family--body);
	font-size: 22px;
	color: var(--wp--preset--color--gold);
	margin-bottom: 16px;
}

/* WC Block-based add to cart */
.wc-block-add-to-cart-form .wc-block-components-product-add-to-cart-button button,
.wp-block-woocommerce-add-to-cart-form .single_add_to_cart_button {
	font-family: var(--wp--preset--font-family--body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	background: var(--wp--preset--color--volcanic);
	color: var(--wp--preset--color--sand);
	border-radius: 1px;
	padding: 16px 40px;
}

.wc-block-add-to-cart-form .wc-block-components-product-add-to-cart-button button:hover,
.wp-block-woocommerce-add-to-cart-form .single_add_to_cart_button:hover {
	background: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--volcanic);
}

/* WC Block product details/tabs */
.wc-block-woocommerce-product-details,
.wp-block-woocommerce-product-details {
	margin-top: 40px;
	border-top: 1px solid rgba(184, 151, 106, 0.15);
	padding-top: 40px;
}

/* WC zoom icon & zoom effect — hidden for clean design */
.woocommerce-product-gallery .woocommerce-product-gallery__trigger,
.wc-block-woocommerce-product-image-gallery .woocommerce-product-gallery__trigger {
	display: none !important;
}

/* Disable WC zoom lens effect on product image hover */
.woocommerce-product-gallery .zoomImg,
.woocommerce-product-gallery .woocommerce-product-gallery__image img {
	transform: none !important;
}
.woocommerce-product-gallery .zoomImg {
	display: none !important;
}
.woocommerce-product-gallery--with-images .flex-viewport {
	cursor: default !important;
}

/* Quantity input */
.woocommerce div.product .quantity .qty {
	border: 1px solid rgba(184, 151, 106, 0.3);
	padding: 12px;
	font-size: 14px;
	width: 70px;
	background: transparent;
	text-align: center;
}

/* Wine category label above title */
.somlo-wine-category-label {
	font-family: var(--wp--preset--font-family--body);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--wp--preset--color--gold);
	display: block;
	margin-bottom: 8px;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
	font-family: var(--wp--preset--font-family--body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--wp--preset--color--muted);
	margin-bottom: 32px;
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--wp--preset--color--gold);
	text-decoration: none;
}

/* Product meta */
.woocommerce div.product .product_meta {
	font-size: 12px;
	color: var(--wp--preset--color--muted);
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid rgba(184, 151, 106, 0.15);
}

/* ── Wine Details (Custom Fields) ── */

.somlo-wine-details {
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid rgba(184, 151, 106, 0.15);
}

.somlo-wine-details__title {
	font-family: var(--wp--preset--font-family--body);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--wp--preset--color--gold);
	margin-bottom: 20px;
}

.somlo-wine-details__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 16px;
	margin-bottom: 24px;
}

.somlo-wine-details__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.somlo-wine-details__label {
	font-family: var(--wp--preset--font-family--body);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--wp--preset--color--muted);
}

.somlo-wine-details__value {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 18px;
	font-weight: 400;
	color: var(--wp--preset--color--volcanic);
}

.somlo-wine-details__tasting h4 {
	font-family: var(--wp--preset--font-family--body);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--wp--preset--color--gold);
	margin-bottom: 12px;
}

.somlo-wine-details__tasting p {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 16px;
	font-weight: 300;
	font-style: italic;
	line-height: 1.85;
	color: var(--wp--preset--color--muted);
}

/* ── Terroir (Dark Section) ── */

.somlo-terroir {
	background: var(--wp--preset--color--volcanic);
	position: relative;
	overflow: hidden;
}

.somlo-terroir__grain {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	pointer-events: none;
}

.somlo-terroir .somlo-label {
	color: var(--wp--preset--color--gold);
}

.somlo-terroir h2 {
	color: var(--wp--preset--color--sand);
}

.somlo-terroir p {
	color: rgba(245, 240, 232, 0.6);
}

.somlo-stats {
	display: flex;
	gap: 32px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 80px;
}

.somlo-stat {
	text-align: center;
	padding: 32px 40px;
	border-left: 1px solid rgba(184, 151, 106, 0.15);
}

.somlo-stat__number {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 36px;
	font-weight: 300;
	color: var(--wp--preset--color--gold);
	margin-bottom: 8px;
}

.somlo-stat__label {
	font-family: var(--wp--preset--font-family--body);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: rgba(245, 240, 232, 0.4);
}

/* ── WooCommerce Cart & Checkout ── */

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
	max-width: 1000px;
	margin: 0 auto;
	padding: 80px 48px;
}

.woocommerce table.shop_table {
	border: 1px solid rgba(184, 151, 106, 0.15);
	border-radius: 2px;
}

.woocommerce table.shop_table th {
	font-family: var(--wp--preset--font-family--body);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--wp--preset--color--gold);
	background: rgba(184, 151, 106, 0.05);
}

.woocommerce .checkout .form-row label {
	font-family: var(--wp--preset--font-family--body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--wp--preset--color--muted);
}

.woocommerce .checkout .form-row input,
.woocommerce .checkout .form-row textarea,
.woocommerce .checkout .form-row select {
	font-family: var(--wp--preset--font-family--body);
	border: 1px solid rgba(184, 151, 106, 0.25);
	border-radius: 1px;
	padding: 12px 16px;
	background: var(--wp--preset--color--sand);
	color: var(--wp--preset--color--volcanic);
}

.woocommerce .checkout .form-row input:focus,
.woocommerce .checkout .form-row textarea:focus {
	border-color: var(--wp--preset--color--gold);
	outline: none;
	box-shadow: 0 0 0 2px rgba(184, 151, 106, 0.1);
}

/* ── Grape Varieties Page ── */

/* Grape section text - flowing prose */
.somlo-grape-section__text {
	font-family: var(--wp--preset--font-family--body);
	font-size: 15px;
	line-height: 1.85;
	color: var(--wp--preset--color--muted);
	margin: 0 0 16px 0;
}

.somlo-grape-section__wine-text {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 16px;
	line-height: 1.75;
	color: var(--wp--preset--color--volcanic);
	margin: 0;
}

.somlo-grape-section__editor-content p {
	font-family: var(--wp--preset--font-family--body);
	font-size: 15px;
	line-height: 1.85;
	color: var(--wp--preset--color--muted);
	margin: 0 0 16px 0;
}

/* Category divider - compact */
.somlo-grape-category-divider {
	padding: 32px 0;
	text-align: center;
	margin: 24px 0;
	background: rgba(58,58,56,0.04);
}

.somlo-grape-category-divider__title {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 20px;
	font-weight: 400;
	color: var(--wp--preset--color--volcanic);
	margin: 0;
	letter-spacing: 1px;
}

/* Grape list */
.somlo-grape-list {
	display: flex;
	flex-direction: column;
	gap: clamp(48px, 6vw, 80px);
	padding: 36px clamp(16px, 4vw, 48px);
	max-width: calc(1000px + 2 * clamp(16px, 4vw, 48px));
	margin: 0 auto;
}

/* Individual grape section */
.somlo-grape-section {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	gap: clamp(20px, 3vw, 36px);
	align-items: center;
	flex-wrap: wrap;
}

.somlo-grape-section--right {
	flex-direction: row-reverse;
}

/* Image */
.somlo-grape-section__image {
	flex: 1 1 220px;
	max-width: 280px;
	min-width: 180px;
	margin: 0 auto;
}

.somlo-grape-section__image img {
	width: 100%;
	height: auto;
	border-radius: 2px;
	display: block;
}

.somlo-grape-section__placeholder {
	width: 100%;
	aspect-ratio: 3 / 4;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
}

/* Content */
.somlo-grape-section__content {
	flex: 1 1 400px;
	min-width: 280px;
}

.somlo-grape-section__label {
	font-family: var(--wp--preset--font-family--body);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.somlo-grape-section__label-line {
	display: none;
}

.somlo-grape-section__name {
	font-family: var(--wp--preset--font-family--heading);
	font-size: clamp(32px, 5vw, 44px);
	font-weight: 400;
	color: var(--wp--preset--color--volcanic);
	margin: 0 0 20px 0;
	line-height: 1.1;
	letter-spacing: -0.3px;
}

/* Responsive: grape sections stack on narrow */
@media (max-width: 480px) {
	.somlo-grape-section {
		gap: 24px;
	}
}

/* ── Event Cards ── */

.somlo-event-card {
	transition: background 0.3s ease;
}

.somlo-event-card:hover {
	background: rgba(184, 151, 106, 0.03);
}

.somlo-event-details-box {
	background: rgba(184, 151, 106, 0.04) !important;
}

/* ── Post Content Typography ── */

.somlo-post-content p {
	font-size: 16px;
	line-height: 1.9;
	color: var(--wp--preset--color--volcanic);
	margin-bottom: 1.5em;
}

.somlo-post-content h2 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 28px;
	font-weight: 400;
	margin-top: 2em;
	margin-bottom: 0.75em;
}

.somlo-post-content h3 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 22px;
	font-weight: 500;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}

.somlo-post-content blockquote {
	border-left: 2px solid var(--wp--preset--color--gold);
	padding-left: 24px;
	margin: 2em 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 20px;
	font-weight: 300;
	font-style: italic;
	color: var(--wp--preset--color--muted);
}

.somlo-post-content img {
	border-radius: 2px;
}

.somlo-post-content figcaption {
	font-size: 12px;
	color: var(--wp--preset--color--muted);
	margin-top: 8px;
}

/* ── Post Cards Hover ── */

.somlo-post-card {
	transition: all 0.4s ease;
}

.somlo-post-card:hover {
	background: rgba(184, 151, 106, 0.03);
}

/* ── Content Background Image (fixed behind content) ── */

/*
 * The background image is injected as a fixed layer (z-index: 0) behind .wp-site-blocks (z-index: 1).
 * The page body has the sand background, but the content area at the bottom
 * becomes transparent so the image "shows through" as you scroll down.
 * The footer sits on top with its own solid background.
 */

/* Remove old content-bg-image styles (replaced by fixed layer approach) */

/* ── Footer Closing Image ── */

.somlo-footer-image-wrapper {
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
	width: 100vw !important;
	margin-left: calc(-50vw + 50%) !important;
}

.somlo-footer-closing-image {
	position: relative;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	max-height: 280px;
	overflow: hidden;
}

.somlo-footer-closing-image img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.somlo-footer-closing-image__gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(to bottom, transparent 0%, #3B3C12 100%);
	pointer-events: none;
}

/* ── Footer ── */

.somlo-footer {
	background: var(--wp--preset--color--footer-green, #3B3C12) !important;
	overflow: hidden;
	align-items: center;
	text-align: center;
	width: 100vw !important;
	margin-left: calc(-50vw + 50%) !important;
	max-width: none !important;
}

.somlo-footer__contacts {
	gap: clamp(12px, 2.5vw, 28px) !important;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.somlo-footer__contact-item {
	font-family: var(--wp--preset--font-family--body) !important;
	font-size: 12px !important;
	color: var(--wp--preset--color--footer-text, #BBBD8E) !important;
	margin: 0 !important;
	white-space: nowrap;
}

.somlo-footer__contact-item a {
	color: var(--wp--preset--color--footer-text, #BBBD8E) !important;
	text-decoration: none !important;
	transition: color 0.3s ease;
}

.somlo-footer__contact-item a:hover {
	color: #D4D6A8 !important;
}

.somlo-footer__copyright {
	font-family: var(--wp--preset--font-family--body) !important;
	font-size: 11px !important;
	color: rgba(187, 189, 142, 0.6) !important;
	margin-top: 4px !important;
}

.somlo-footer .wp-block-image {
	display: flex;
	justify-content: center;
}

.somlo-footer img {
	max-width: 200px;
	height: auto;
}

.somlo-footer a {
	color: var(--wp--preset--color--footer-text, #BBBD8E);
	text-decoration: none;
	transition: color 0.3s ease;
}

.somlo-footer a:hover {
	color: #D4D6A8;
}

/* Hide WC payment method icons below footer */
.woocommerce-terms-and-conditions-wrapper,
.wc-block-components-payment-method-icons,
footer ~ div,
.wp-site-blocks > div:last-child:not(footer):not(main):not(header) {
	display: none !important;
}

/* ── Recommended Wines Section ── */

/* Hide WooCommerce default related products (we use our own) */
.related.products,
section.related.products,
.wp-block-woocommerce-related-products,
.wc-block-related-products,
section.upsells.products {
	display: none !important;
}

/* Hide empty WC product details/tabs */
.woocommerce-tabs:empty,
.somlo-product-details-section:empty,
.wp-block-woocommerce-product-details:empty,
.wc-block-product-details:empty {
	display: none !important;
}
.somlo-product-details-section,
.wp-block-woocommerce-product-details,
.wc-block-product-details {
	display: none !important;
}

/* Limit card size when only 1-2 recommended products */
.somlo-product-grid--cols-1 {
	grid-template-columns: minmax(0, 280px);
}
.somlo-product-grid--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 280px));
}

.somlo-recommended-section .somlo-product-grid {
	max-width: 1200px;
}

.somlo-recommended-section {
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid rgba(184, 151, 106, 0.15);
}

.somlo-recommended-section__label {
	font-family: var(--wp--preset--font-family--body);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--wp--preset--color--gold);
	margin-bottom: 28px;
}

/* ── Product Grid (somlokincse.hu style — white cards, hover overlay) ── */

.somlo-product-grid {
	display: grid;
	gap: 24px;
	width: 100%;
}

/* Kill WordPress wpautop parasitic <p> and <br> tags inside grid */
.somlo-product-grid > p,
.somlo-product-grid > br {
	display: none !important;
}
/* If wpautop wraps cards inside a <p>, make that <p> behave as grid items */
.somlo-product-grid > p:has(.somlo-product-card) {
	display: contents !important;
}

.somlo-product-grid--cols-4 {
	grid-template-columns: repeat(4, 1fr);
}
.somlo-product-grid--cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
	.somlo-product-grid--cols-4,
	.somlo-product-grid--cols-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.somlo-product-grid--cols-4,
	.somlo-product-grid--cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.somlo-product-grid--cols-4,
	.somlo-product-grid--cols-3 {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin: 0 auto;
	}
}

.somlo-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(184, 151, 106, 0.15);
	border-radius: 3px;
	padding: 20px 16px 24px;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: box-shadow 0.4s ease, border-color 0.3s ease;
}

.somlo-product-card:hover {
	border-color: rgba(184, 151, 106, 0.35);
	box-shadow: 0 8px 32px rgba(42, 37, 32, 0.08);
}

.somlo-product-card__image-wrap {
	width: 100%;
	aspect-ratio: 3 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 16px;
}

.somlo-product-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.somlo-product-card:hover .somlo-product-card__image-wrap img {
	transform: scale(1.03);
}

.somlo-product-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	background: rgba(184, 151, 106, 0.06);
	border-radius: 2px;
}

.somlo-product-card__name {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 18px;
	font-weight: 500;
	color: var(--wp--preset--color--volcanic);
	margin: 0 0 12px 0;
	line-height: 1.3;
}

.somlo-product-card__btn {
	font-family: var(--wp--preset--font-family--body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--wp--preset--color--volcanic);
	border: 1px solid var(--wp--preset--color--volcanic);
	padding: 8px 20px;
	border-radius: 1px;
	transition: all 0.3s ease;
}

.somlo-product-card:hover .somlo-product-card__btn {
	background: var(--wp--preset--color--volcanic);
	color: var(--wp--preset--color--sand);
}

/* Hover overlay — slides up from bottom */
.somlo-product-card__overlay {
	position: absolute;
	inset: 0;
	background: rgba(59, 60, 18, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 20px;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;
}

.somlo-product-card:hover .somlo-product-card__overlay {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.somlo-product-card__overlay-inner {
	text-align: center;
}

.somlo-product-card__overlay-title {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 20px;
	font-weight: 400;
	color: #F5F0E8;
	margin: 0 0 14px 0;
	line-height: 1.2;
}

.somlo-product-card__overlay-text {
	font-family: var(--wp--preset--font-family--body);
	font-size: 13px;
	line-height: 1.7;
	color: rgba(245, 240, 232, 0.7);
	margin: 0 0 18px 0;
}

.somlo-product-card__overlay-btn {
	font-family: var(--wp--preset--font-family--body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--wp--preset--color--gold);
	border: 1px solid rgba(184, 151, 106, 0.5);
	padding: 8px 20px;
	border-radius: 1px;
	display: inline-block;
	transition: all 0.3s ease;
}

.somlo-product-card:hover .somlo-product-card__overlay-btn:hover {
	background: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--volcanic);
}

/* ── Responsive ── */

@media (max-width: 768px) {
	.somlo-wc-wrapper {
		padding: 60px 20px;
	}

	.woocommerce ul.products li.product {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.woocommerce div.product {
		padding: 40px 20px;
	}

	.somlo-stats {
		flex-direction: column;
		align-items: center;
	}

	.somlo-stat {
		border-left: none;
		border-top: 1px solid rgba(184, 151, 106, 0.15);
	}

	.somlo-wine-details__grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ── Add to Cart Toast ── */

.somlo-cart-toast {
	position: fixed;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	opacity: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--wp--preset--color--volcanic, #3A3A38);
	color: var(--wp--preset--color--sand, #F5F0E8);
	font-family: var(--wp--preset--font-family--body, 'DM Sans', sans-serif);
	font-size: 13px;
	letter-spacing: 0.5px;
	padding: 14px 28px;
	border-radius: 2px;
	box-shadow: 0 8px 32px rgba(42, 37, 32, 0.18);
	pointer-events: none;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.somlo-cart-toast.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.somlo-cart-toast.is-leaving {
	opacity: 0;
	transform: translateX(-50%) translateY(-10px);
}

.somlo-cart-toast__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--wp--preset--color--gold, #B8976A);
	color: var(--wp--preset--color--sand, #F5F0E8);
	font-size: 12px;
	font-weight: 600;
	flex-shrink: 0;
}

.somlo-cart-toast__text {
	white-space: nowrap;
}


/* ── Grape archive: alternating image/text layout ── */
.somlo-grape-section__name a:hover {
	color: var(--wp--preset--color--gold) !important;
}

/* ── Grape Grid Cards ── */

/* Subtitle line in overlay */
.somlo-product-card__overlay-subtitle {
	font-family: var(--wp--preset--font-family--body);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: var(--wp--preset--color--gold);
	margin: 0 0 10px 0;
}

/* Grape card image: cover instead of contain (grape photos, not bottle cutouts) */
.somlo-grape-card .somlo-product-card__image-wrap img {
	object-fit: cover;
	mix-blend-mode: normal;
}

/* Mobile touch active state — mirrors :hover */
.somlo-card-touch-active .somlo-product-card__overlay {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.somlo-card-touch-active {
	border-color: rgba(184, 151, 106, 0.35);
	box-shadow: 0 8px 32px rgba(42, 37, 32, 0.08);
}
