/** Shopify CDN: Minification failed

Line 104:0 Unexpected "}"

**/


/* CSS from section stylesheet tags */
/* Custom Age Gate */
#age-gate {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
display: none;
}

.age-gate-modal {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: var(--text-color);
padding: 4rem;
width: 90%;
max-width: 600px;
text-align: center;
z-index: 10000;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.age-gate-modal h2 {
margin: 0 0 20px 0;
}
.age-gate-modal p {
margin: 0 0 20px 0;
}

.age-gate-logo {
max-width: 100px;
margin-bottom: 1rem;
}

.age-gate-buttons {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 2.5rem;
gap: 20px;
width: 263px;
max-width: 100%;
}
.age-gate-buttons button, .age-gate-buttons a { width: 100%; height: 45px; line-height: 45px; }
.age-gate-buttons a.btn--secondary.no {
    background: transparent;
}
.age-gate-buttons a.btn--secondary.no:hover { background: var(--dark-gold); }

body .age-gate-overlay {
width: 100dvw;
height: 100dvh;
position: fixed;
top: 0;
left: 0;
display: block;
}

@keyframes fadeIn {
from { opacity: 0; }
to   { opacity: 1; }
}

@keyframes fadeOut {
from { opacity: 1; }
to   { opacity: 0; }
}

#age-gate.show {
display: block;
animation: fadeIn 0.4s ease-out forwards;
}

#age-gate.hide {
animation: fadeOut 0.4s ease-in forwards;
}

.age-gate-overlay,
.age-gate-modal {
transition: opacity 0.4s ease;
}
@media screen and (max-width: 640px) {
.age-gate-modal {
        padding: 2rem;
        width: 100%;
    }
    h2 { line-height: 1.2em; }
}
}
body .shopify-section.announcements-wrapper {
  padding: 0;
margin: 0;
border: none;
background: var(--grey);
}
  .announcements {
    position: relative;
    height: 45px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    grid-column: 1 / -1;
  }

  .announcement-item {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 15px;
    background: var(--grey);
    letter-spacing: 0.05em;
    line-height: 1em;
  }
.announcement-item * { line-height: 1em; }

  .announcement-item.active {
    opacity: 1;
  }

  .announcement-link,
  .announcement-text {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
  }

  .announcement-link:hover {
    text-decoration: underline;
  }

  .announcements:hover .announcement-item {
    animation-play-state: paused;
  }

@media screen and (max-width: 767px) {
.announcement-link, .announcement-text { font-size: 12px; letter-spacing: 0.1em; }
}
.awards-wrapper {
position: fixed;
top: 0;
right: -580px;
width: 580px;
height: 100vh;
background: var(--grey);
padding: 0;
transition: right 0.3s ease-in-out;
z-index: 1000;
overflow-y: auto;
--content-margin: 0;
--content-width: 100%;
}
.awards-wrapper > div { width: 100%; }

.awards-wrapper.is-active {
right: 0;
}

.awards-list {
list-style: none;
padding: 20px 20px 20px 60px;
width: 100%;
display: flex;
flex-direction: column;
gap: 2rem;
align-items: flex-start;
justify-content: flex-start;
}

.awards-list li {
display: flex;
gap: 1rem;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
}

.year {
font-size: 18px;
min-width: 50px;
}

.award {
display: block;
font-size: 18px;
}

.description {
display: block;
font-size: 12px;
text-transform: uppercase;
color: var(--dark-grey);
letter-spacing: 0.08em;
}

@media (max-width: 767px) {
.awards-wrapper {
width: 340px;
right: -340px;
.slideout__header {
padding-left: 20px;
}
}
.year, .award {
font-size: 14px;
}
.description {
font-size: 10px;
}
.awards-list {
padding: 20px;
}
}
.slideout-cart__header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
border-bottom: 1px solid var(--light-border);
}

.slideout-cart__close {
background: none;
border: none;
padding: 0;
cursor: pointer;
color: inherit;
}

.slideout-cart__close svg {
display: block;
width: 24px;
height: 24px;
fill: currentColor;
}

.offscreen-cart {
position: fixed;
top: 0;
right: 0;
width: var(--cart-width, 400px);
height: 100vh;
background: var(--grey);
transform: translateX(100%);
transition: transform 0.3s ease-in-out;
z-index: 1000;
box-shadow: -2px 0 12px rgba(0,0,0,0.1);
overflow-y: auto;
grid-template-columns: 1fr;
}
.offscreen-cart > * {
grid-column: 1;
}

.slideout-cart__title {
margin: 0;
font-size: 16px;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.slideout-cart__content {
padding: 0 0 20px 0;
height: calc(100vh - 80px);
overflow-y: auto;
}

body.cart-open {
overflow-x: hidden;
}

body.cart-open .offscreen-cart {
transform: translateX(0);
}

body.cart-open main {
transform: translateX(calc(-1 * var(--cart-width, 400px)));
}

:root {
--cart-width: 400px;
}

.cart-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease-in-out;
z-index: 999;
}

body.cart-open .cart-overlay {
opacity: 1;
visibility: visible;
}

/* Cart Items */
.cart-items {
margin-bottom: 20px;
}

.cart-item {
display: flex;
gap: 15px;
padding: 20px 50px 20px 40px;
border-bottom: 1px solid var(--light-border);
position: relative;
}

.cart-item__image .image > img {
width: 80px;
height: 80px;
object-fit: contain;
border-radius: 4px;
}

.cart-item__details {
flex: 1;
}

.cart-form {
display: flex;
flex-direction: column;
height: 100%;
justify-content: space-between;
}

.cart-item__title {
margin: 0 0 5px 0;
font-size: 0.9em;
text-transform: none;
}

.cart-item__variant {
font-size: 0.8em;
color: #666;
margin-bottom: 5px;
}

.cart-item__price {
margin-bottom: 10px;
}

.cart-item__quantity {
display: flex;
align-items: center;
gap: 5px;
}

.quantity-btn {
background: var(--input-bg);
border: none;
width: 30px;
height: 30px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
border-radius: 0;
line-height: 30px;
}

.quantity-input {
width: 50px;
height: 30px;
text-align: center;
border: none;
background: var(--input-bg);
border-radius: 0;
-moz-appearance: textfield;
line-height: 30px;
padding-top: 5px;
}
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
a { color: var(--text-color); text-decoration: none; }

.cart-item__remove {
position: absolute;
top: 10px;
right: 20px;
}

.cart-item__remove-btn {
background: none;
border: none;
cursor: pointer;
color: #999;
padding: 5px;
}

/* Cart Footer */
.cart-footer {
border-top: 1px solid var(--light-border);
padding: 20px 40px 0 40px;
margin-top: 20px;
}

.cart-subtotal {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
font-weight: 400;
font-size: 1.1em;
}

.cart-update-btn,
.cart-view-btn,
.cart-checkout-btn {
width: 100%;
padding: 12px;
margin-bottom: 10px;
text-align: center;
text-decoration: none;
border-radius: 4px;
cursor: pointer;
font-weight: 400;
}

.cart-update-btn {
background: #f5f5f5;
border: 1px solid #ddd;
color: #333;
}

.cart-view-btn {
background: #fff;
border: 1px solid #333;
color: #333;
display: block;
}

.cart-checkout-btn {
background: #333;
border: 1px solid #333;
color: #fff;
}

.cart-empty {
text-align: center;
padding: 20px 60px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
gap: 50px;
}

@media (max-width: 768px) {
:root {
--cart-width: 100vw;
}

body.cart-open main {
transform: translateX(-100vw);
}
}
.small-text { font-size: 12px; }
table.cart-table {
width: 100%;
text-align: left;
tr {
th {
text-transform: uppercase;
font-size: 12px;
padding: 0 20px 10px 0;
border-bottom: 1px solid var(--light-border);
}
td {
padding: 10px 20px 10px 0;

&.cart-img {
width: 80px;
}
&.cart-remove {
min-width: 40px;
text-align: right;
padding-right: 0;
a { text-align: right; }
svg { width: 18px; display: inline-block; }
}
border-bottom: 1px solid var(--light-border);
}
}
.quantity-input {
width: 80px;
height: 38px;
border: 1px solid var(--light-border);
font-size: 16px;
color: var(--dark-grey);
margin-right: 10px;
}
}
table.cart-table-summary {
text-align: left;
width: 100%;
tr {
td, th {
    padding: 6px 20px 6px 0;
}
th {
text-transform: uppercase;
font-size: 12px;
width: 100px;
}
}
tbody {
tr:last-of-type {
th, td {
padding-bottom: 20px;
}
}
}
tfoot {
tr {
th, td {
padding-top: 20px;
border-top: 1px solid var(--light-border);
}
}
}
}
.order-summary {
max-width: 500px;
width: 100%;
.btn--primary {
width: 100%;
}
}
@media screen and (max-width: 767px) {
    .cart-container {
        .pl-7 {
            padding-left: 0;
        }
        .cart-img { padding: 0; }
        .pr-7 { padding-right: 0; }
        .border-r-1 { border-right: 0; }

    }
    .cart-img img { display: none; }
    .order-summary {
    width: 100%;
    max-width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .cart-table {
        tbody{
            tr {
                td.cart-img {
                    width: 0 !important;
                    padding: 0 !important;
                }
                td.cart-qty {
                    .flex {
                        flex-direction: column;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 768px) {
.single-collection .container .collection-products.pl-5 {
padding-left: 0;
}
}
.collection-header {
width: 100%;
margin-top: 2rem;
}

.collection-header__image {
width: 100%;
height: auto;
object-fit: contain;
display: block;
}
.collections-list .container {
padding-top: 2rem;
padding-bottom: 2rem;
}
.collections-list .container:last-of-type {
padding-bottom: 0;
}
.collections-list .separator:not(:last-of-type) {
content: '';
display: block;
width: 100%;
height: 1px;
background: var(--light-border);
grid-column: 1/-1;
}

.collection-title {
margin-bottom: 1rem;
}

.collection-description {
margin-bottom: 1rem;
line-height: 1.6;
}

.collection-products {
/* No grid styles here since you removed them for desktop */
}

.collection-slider {
overflow: hidden;
}

.collection-slider__track {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
transition: transform 0.3s ease;
}

.collection-slider__slide {
min-width: 0;
}

.collection-slider__arrows {
display: none;
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
pointer-events: none;
z-index: 10;
}

.collection-slider__arrow {
position: absolute;
background: rgba(255, 255, 255, 0.9);
border: 1px solid #ddd;
border-radius: 50%;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
pointer-events: all;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: all 0.2s ease;
}

.collection-slider__arrow:hover {
background: white;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.collection-slider__arrow--prev {
left: -22px;
}

.collection-slider__arrow--next {
right: -22px;
}

.collection-slider__arrow:disabled {
opacity: 0.3;
cursor: not-allowed;
}

/* Tablet - 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
.collection-slider__track {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
}

/* Mobile - Slider */
@media (max-width: 767px) {
.collections-list .container {
display: block;
gap: 20px;
}

.collections-list .container > div {
width: 100%;
margin-bottom: 20px;
}

.collections-list .pr-5,
.collections-list .pl-5 {
padding-left: 0;
padding-right: 0;
}

.collections-list .border-l-1,
.collections-list .border-r-1 {
border: none;
}

.collection-title {
font-size: 24px;
}

.collection-slider-wrapper {
overflow: hidden;
width: 100%;
}

.collection-slider {
overflow: visible;
width: 100%;
padding: 0;
}

.collection-slider__track {
display: flex;
gap: 1rem;
transition: transform 0.3s ease-out;
grid-template-columns: none;
width: 100%;
}

.collection-slider__slide {
flex: 0 0 calc((100vw - 1rem - 1rem) / 1.1);
max-width: calc((100vw - 1rem - 1rem) / 1.1);
min-width: 0;
}

.collection-slider__arrows {
display: block;
}

.collection-slider__arrow--prev {
left: 5px;
}

.collection-slider__arrow--next {
right: 5px;
}
}
.image-banner-container {
position: relative;
aspect-ratio: 21 / 8;
overflow: hidden;
z-index: 0;
}
.image-banner-container .overlay {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.image-banner-container .container {
height: 100%;
z-index: 2;
color: #fff;
}

.image-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
header {
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 1rem;
padding: 0;
align-items: center;
transition: all 0.3s ease;
}

.dropdown-menu {
position: relative;
z-index: 1000;
}
.dropdown {
list-style: none;
position: absolute;
top: 100%;
left: -40px;
right: auto;
background: var(--grey-50);
padding: 0;
display: none;
width: 200px;
z-index: 10000;
overflow: hidden;
height: 0;
transition: height 0.3s;
}
@media screen and (max-width: 1200px) {
.dropdown {
left: auto;
right: 0;
}
}
.dropdown-menu:hover .dropdown {
display: block;
height: auto;
}
.dropdown li {
border-bottom: 1px solid var(--light-border);
width: 100%;
padding: 0.6rem 2rem;
}
.dropdown li.header{
padding: 1.2rem 2rem;
}
.dropdown li.header h5 {
margin: 0;
font-size: 16px;
font-weight: 400;
letter-spacing: .05em;
text-transform: uppercase;
}
.dropdown li:last-child {
border-bottom: none;
}
.dropdown li a { display: block; }
.dropdown li a:hover {
text-decoration: none;
color: var(--gold);
}


/* Sticky header styles */
.site-header.sticky {
position: sticky;
top: 0;
left: 0;
right: 0;
z-index: 9999;
background: var(--grey-50);
}

.site-header:not(.sticky) .compact {
display: none;
}
.site-header.sticky .standard {
display: none;
}
.site-header.sticky .compact {
display: block;
}

.site-header.sticky header {
padding: 0.5rem 0;
margin: 0;
}

/* Hide announcements when sticky */
.site-header.sticky .shopify-section:not([id*="header"]) {
display: none;
}

/* Placeholder to maintain layout */
.header-placeholder {
width: 100%;
}

header .header__menu {
justify-self: start;
width: 25px;
}
header .header__logo {
justify-self: center;
}
header .header__right {
justify-self: end;
}
header a {
position: relative;
text-decoration: none;
color: var(--color-foreground);
}
header a sup {
left: 100%;
overflow: hidden;
max-width: var(--page-margin);
font-size: inherit;
vertical-align: baseline;
}
header svg {
width: 2rem;
}
header .header__menu,
header .header__icons {
display: flex;
gap: 1rem;
}
@media screen and (max-width: 767px) {
body .site-header .header header { height: 80px; }
.site-header.sticky header { padding-left: 0; padding-right: 0; height: 60px; }
header .header__logo img { max-width: 90px; }
header svg { width: 25px; }
}
.image-banner-container {
position: relative;
aspect-ratio: 21 / 8;
overflow: hidden;
z-index: 0;
}
.image-banner-container .overlay {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.image-banner-container .container {
height: 100%;
z-index: 2;
color: #fff;
}

.image-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

@media screen and (max-width: 767px) {
    .image-banner {
        .container {
            max-width: 100%;
            grid-column: 1 / -1;
        }
    }
}
.join-wine-club {
.pr-5 {
padding-right: 0;
}
.pl-5 {
padding-left: 0;
}
.border-l-1, .border-r-1 {
border: none;
}
}
.menu {
list-style: none;
padding: 0;
margin: 0;
}

.menu__item {
position: relative;
}

.menu__link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 0;
color: inherit;
text-decoration: none;
font-weight: 500;
border-bottom: 1px solid rgba(0,0,0,0.1);
transition: color 0.2s ease;
}

.menu__link:hover {
color: #666;
}

.menu__link--current {
font-weight: 400;
color: var(--gold);
}

.menu__arrow {
transition: transform 0.2s ease;
flex-shrink: 0;
}

.menu__item--has-children .menu__link:hover .menu__arrow {
transform: translateX(2px);
}

/* Submenu Styles */
.submenu {
padding-left: 20px;
margin-top: 5px;
border-left: 2px solid #f0f0f0;
}

.submenu__list {
list-style: none;
padding: 0;
margin: 0;
}

.submenu__item {
position: relative;
}

.submenu__link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 0;
color: #666;
text-decoration: none;
font-size: 0.9em;
transition: color 0.2s ease;
border-bottom: 1px solid rgba(0,0,0,0.05);
}

.submenu__link:hover {
color: #333;
}

.submenu__link--current {
color: var(--gold);
}

.submenu__arrow {
transition: transform 0.2s ease;
flex-shrink: 0;
}

.submenu__item--has-children .submenu__link:hover .submenu__arrow {
transform: translateX(2px);
}

/* Third level submenu */
.submenu--depth-3 {
padding-left: 15px;
border-left: 1px solid #f5f5f5;
}

.submenu--depth-3 .submenu__link {
font-size: 0.85em;
padding: 6px 0;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
.menu__link {
padding: 15px 0;
font-size: 1.1em;
}

.submenu {
padding-left: 15px;
}

.submenu__link {
padding: 12px 0;
font-size: 1em;
}
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
.menu__arrow,
.submenu__arrow {
transition: none;
}

.menu__link,
.submenu__link {
transition: none;
}
}

/* Focus styles */
.menu__link:focus,
.submenu__link:focus {
outline: 2px solid #005fcc;
outline-offset: 2px;
}
.newsletter-signup {
    .app-block {
        width: 370px;
        max-width: 100%;
    }
    .form-desc {
        width: 349px;
        max-width: 100%;
    }
    .video-background {
        min-width: calc(100% - 2rem);
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        height: 100%;
        margin-left: 2rem;
    }
    .right-col {
        position: relative;
    }
}
@media screen and (max-width: 767px) {
    .newsletter-signup {
        .video-background {
            min-width: 100%;
            position: relative;
            object-fit: contain;
            height: auto;
            margin-left: 0;
        }
    }
    .newsletter-signup.py-5 {
        padding-top: 0;
        .pr-5 {
            padding-right: 0;
        }
        .pl-5 {
            padding-left: 0;
        }
        .px-5 {
            padding-left: 0;
            padding-right: 0;
        }
        .border-l-1, .border-r-1 {
            border: none;
        }
        .app-block, .form-desc {
            width: 100%;
        }
        .left-col {
            order: 2;
            padding-left: 20px;
            padding-right: 20px;
        }
        .mid-col {
            order: 3;
            padding-left: 20px;
            padding-right: 20px;
        }
        .right-col {
            order: 1;
            margin-bottom: 1rem;
        }
        .container {
            grid-column: 1 / -1;
        }
    }
}
ul.product-selector__product-list {
list-style: none;
padding: 0;
}
ul.product-selector__product-list li { display: block; }
.product-selector__product-list li a {
font-size: 30px;
line-height: 29px;
text-transform: uppercase;
color: var(--color-text);
position: relative;
margin-left: 0;
transition: all 0.3s ease;
text-decoration: none;
}
.product-selector__product-list li a:hover {
color: var(--gold);
margin-left: 40px;
}
.selector-text {
width: 338px;
}
@media screen and (max-width: 767px) {
    .product-selector {
        .container {
            gap: 20px;
            .image-wrapper {
                width: unset !important;
            }
        }
        .pr-5 {
            padding-right: 0;
        }
        .pl-5 {
            padding-left: 0;
        }
        .border-l-1, .border-r-1 {
            border: none;
        }
        .flex-row {
            &.align-end {
                align-items: flex-start;
            }
        }
        .product-selector__product-list {
            li {
                a {
                    font-size: 25px;
                    line-height: 24px;
                }
            }
        }
    }
}
.product-images {
position: relative;
}

.main-image-container {
width: 100%;
overflow: hidden;
position: relative;
}

.main-product-image {
width: 100%;
height: auto;
transition: transform 0.3s ease;
}

.main-product-image.image > img {
width: 392px;
height: auto;
}

.product-thumbnails {
display: flex;
gap: 1rem;
margin-top: 1rem;
overflow-x: auto;
justify-content: center;
}

.thumbnail-btn {
border: 0.5px solid var(--dark-border);
background: none;
padding: 0;
cursor: pointer;
opacity: 0.5;
transition: opacity 0.3s ease;
}

.thumbnail-btn.active {
opacity: 1;
}

.product-thumbnails .thumbnail-image.image {
width: 80px;
height: 80px;
object-fit: cover;
}
.product-thumbnails .thumbnail-image.image img {
height: 100%;
object-fit: contain;
object-position: center center;
width: 100%;
}

.mobile-product-header {
display: none;
}

.desktop-product-header {
display: block;
}

.product-details {
h4 {
text-transform: uppercase;
font-size: 16px;
color: var(--gold);
letter-spacing: 0.1em;
margin-bottom: 10px;
}
h1 {
text-transform: unset;
margin-bottom: 20px;
}
.price-wrapper {
font-size: 20px;
color: #494948;
margin-bottom: 20px;
.sep {
color: var(--gold);
}
}
.atc-wrapper {
display: flex;
gap: 10px;
align-items: center;
.quantity-input {
width: 110px;
height: 46px;
border: 1px solid var(--dark-border);
font-size: 16px;
color: var(--dark-grey);
margin-right: 10px;
}
.btn--primary {
height: 46px;
}
}
}
.two-column-layout .description {
text-transform: unset;
font-size: 18px;
letter-spacing: 0;
line-height: 1.6em;
}
table.product-data {
text-align: left;
color: var(--black);
th {
text-transform: uppercase;
font-size: 12px;
width: 120px;
font-weight: 400;
letter-spacing: 0.15em;
}
td {
font-size: 16px;
}
th, td { padding: 5px 10px 0 0; vertical-align: top; }
}
.additional-info {
div { padding-bottom: 18px; }
h5 { margin-bottom: 7px; letter-spacing: 0.15em; }
}

/* Mobile Layout */
@media (max-width: 767px) {
.container {
display: flex;
flex-direction: column;
padding-left: 0;
padding-right: 0;
}

.product-images.pr-5 {
padding-right: 0;
}

.main-image-container {
display: flex;
justify-content: center;
align-items: center;
}

.main-image-container img {
max-width: 180px;
height: auto;
}
.mobile-product-header {
display: flex;
flex-direction: column;
order: 1;
padding: 0;
margin-bottom: 20px;
align-items: center;
text-align: center;

h1 { line-height: 1.1em; max-width: 80%; }
}

.mobile-product-header h4 {
text-transform: uppercase;
font-size: 16px;
color: var(--gold);
letter-spacing: 0.1em;
margin-bottom: 10px;
}

.mobile-product-header h1 {
text-transform: unset;
margin-bottom: 20px;
}

.desktop-product-header {
display: none;
}

.product-images {
order: 2;
margin-bottom: 30px;
padding: 0;
}

.product-images .pr-5 {
padding-right: 0;
}

.product-content {
order: 3;
}

.product-details {
padding: 0;
margin-bottom: 30px;
border-bottom: 1px solid var(--light-border);
}

.product-details .pb-6 {
padding-bottom: 0;
}

.product-details .atc-wrapper .quantity-input, .product-details .atc-wrapper button {
width: 50%;
}

.two-column-layout {
display: block;
padding: 0;
}

.two-column-layout > div {
padding: 0;
border: none;
margin-bottom: 30px;
}

.two-column-layout .pr-5,
.two-column-layout .pl-5 {
padding: 0;
}

.two-column-layout .border-r-1 {
border: none;
}

.single-product .container.pt-7 { padding-top: 2rem; }
.single-product .container.pb-5 { padding-bottom: 0; }
}
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* Slider Wrapper */
.three-col-slider-wrapper {
position: relative;
overflow: hidden;
width: 100%;
}
.three-col-slider-wrapper .three-col-slider {
display: grid;
grid-template-columns: repeat(3, 1fr);
}

/* Navigation Arrows */
.three-col-slider__arrows {
display: none;
}

@media (max-width: 767px) {
/* Slider */
.three-col-slider-wrapper .three-col-slider {
display: flex;
transition: transform 0.3s ease-in-out;
.three-col-slider__slide .border-l-1 {
border-left: none;
}
.three-col-slider__slide .px-5 {
padding-left: 2.5rem;
padding-right: 2.5rem;
}
}

/* Slides */
.three-col-slider__slide {
min-width: 100%;
flex-shrink: 1;
padding-top: 5px;
}
.three-col-slider {
flex-wrap: nowrap;
transform: none; /* Disable slide behavior on desktop */
}
/* Navigation Arrows */
.three-col-slider__arrows {
display: block;
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 105%;
display: flex;
justify-content: space-between;
left: -2.5%;
}
.three-col-slider__arrow {
background: rgba(255, 255, 255, 0.9);
border: 1px solid #ddd;
border-radius: 50%;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
pointer-events: all;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: all 0.2s ease;
}
}
.two-col-content .image-natural {
width: 100%;
height: auto;
}

.two-col-content .image-square {
aspect-ratio: 1;
object-fit: cover;
width: 100%;
}

.two-col-content .image-left {
.col-span-1 {
order: 2;
}
.col-span-2 {
order: 1;
}
}
.two-col-content .image-right {
.col-span-1 {
order: 1;
}
.col-span-2 {
order: 2;
}
}
.two-col-content .text-wrapper {
max-width: 100%;
width: 330px;
}
.two-col-content .btn-wrapper:not(:last-child) {
margin-bottom: 0.8rem;
}
.two-col-content .text-wrapper:not(:last-child) {
margin-bottom: 1.8rem;
}
.two-col-content h1, .two-col-content h2, .two-col-content h3, .two-col-content h4 {
margin-bottom: 0.5rem;
max-width: 100%;
width: 310px;
}

@media screen and (max-width: 767px) {
    .two-col-content {
        .pr-5 {
            padding-right: 0;
        }
        .pl-5 {
            padding-left: 0;
        }
        .border-l-1, .border-r-1 {
            border: none;
        }
        .content-with-image {
            order: 1 !important;
        }
        .content-with-text {
            order: 2 !important;
            .text-wrapper {
                width: 100%;
            }
        }
    }
}
.image-natural {
width: 100%;
height: auto;
}

.image-square {
aspect-ratio: 1;
object-fit: cover;
width: 100%;
}

.large-left {
.col-span-1 {
order: 2;
}
.col-span-3 {
order: 1;
}
}
.small-left {
.col-span-1 {
order: 1;
}
.col-span-3 {
order: 2;
}
}
.two-col-text-content .btn-wrapper:not(:last-child) {
margin-bottom: 0.8rem;
}
.two-col-text-content .text-wrapper:not(:last-child) {
margin-bottom: 1.8rem;
}
.two-col-text-content h1, .two-col-text-content h2, .two-col-text-content h3, .two-col-text-content h4 {
margin-bottom: 0.5rem;
max-width: 100%;
width: 310px;
}
.image-natural {
width: 100%;
height: auto;
}

.image-square {
aspect-ratio: 1;
object-fit: cover;
width: 100%;
}

.large-left {
.col-span-1 {
order: 2;
}
.col-span-2 {
order: 1;
}
}
.small-left {
.col-span-1 {
order: 1;
}
.col-span-2 {
order: 2;
}
}
.two-col-text-content .btn-wrapper:not(:last-child) {
margin-bottom: 0.8rem;
}
.two-col-text-content .text-wrapper:not(:last-child) {
margin-bottom: 1.4rem;
}
.two-col-text-content .text-wrapper {
h2, h3, h4 {
text-transform: none;
}
}
.two-col-text-content .btn-wrapper:not(:last-child) {
margin-bottom: 1.8rem;
}
.two-col-text-content h1, .two-col-text-content h2, .two-col-text-content h3, .two-col-text-content h4 {
margin-bottom: 0.5rem;
max-width: 100%;
width: 310px;
}


@media (max-width: 767px) {
body {
    .two-col-text-content {
        .pr-5 {
            padding-right: 0;
        }
        .pl-5 {
            padding-left: 0;
        }
        .border-l-1, .border-r-1 {
            border: none;
        }
        .btn-wrapper:not(:last-child) {
            margin-bottom: 0.9em;
        }
    }
}
}

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }