/** Shopify CDN: Minification failed

Line 1460:19 Unexpected "*"

**/
/* v4 - Extended Sections & Premium Calm Aesthetic */
:root {
    --primary-olive: #6B7A68;
    --primary-dark: #4A5548;
    --bg-cream: #FDF9F3;
    --bg-white: #ffffff;
    --text-dark: #2A3229;
    --text-muted: #788675;
    --divider: rgba(107, 122, 104, 0.1);
    
    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

/* === Dawn Override Layer === */
/* Dawn sets html font-size to 62.5% which breaks all our rem values */
html { font-size: 100% !important; }

/* Prevent Dawn's base.css from overriding our premium aesthetic */
.section-header .title, h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}
body {
    font-family: var(--font-body) !important;
    background-color: var(--bg-cream) !important;
    color: var(--text-dark) !important;
    line-height: 1.6 !important;
    overflow-x: hidden;
}

/* Override Dawn's default section padding/margin */
.shopify-section { overflow: visible; }
.content-for-layout { overflow: visible; }

/* ============================================
   PREMIUM CALM HEADER (Native Dawn Override)
   ============================================ */
.velura-site-header {
    width: 100% !important;
    max-width: 100vw !important;
}
.header-wrapper {
    background-color: var(--bg-cream);
    width: 100% !important;
}
.header {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 5rem !important;
    padding-right: 5rem !important;
    margin: 0 !important;
}

/* Force Exact Inline Desktop Layout */
@media screen and (min-width: 990px) {
    .header.header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .header__heading {
        flex: 1 1 20% !important;
        text-align: left !important;
        white-space: nowrap !important;
        margin: 0 !important;
    }
    .header__inline-menu {
        flex: 1 1 60% !important;
        display: flex !important;
        justify-content: center !important;
    }
    .header__icons {
        flex: 1 1 20% !important;
        display: flex !important;
        justify-content: flex-end !important;
        margin-left: 0 !important;
    }
    .list-menu--inline {
        display: flex !important;
        gap: 3.5rem !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
    }
}
/* Prevent logo vertical stacking */
.header__heading-link, .header__heading-link .h2, .header__heading-link span {
    white-space: nowrap !important;
    display: inline-block !important;
}

/* Header Typography & Colors */
.header__heading-link .h2 {
    font-family: var(--font-heading) !important;
    font-size: 2.2rem !important;
    font-weight: 500 !important;
    color: var(--primary-olive) !important;
    letter-spacing: 1.5px !important;
}
.header__menu-item {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--text-dark) !important;
}
.header__menu-item:hover,
.header__menu-item:hover span {
    color: var(--primary-olive) !important;
}
.header__active-menu-item {
    text-decoration: none !important;
    color: var(--primary-olive) !important;
}
.header__icons .header__icon {
    color: var(--text-dark) !important;
}
.header__icons .header__icon:hover {
    color: var(--primary-olive) !important;
}

/* Remove default Dawn underlines */
.header__menu-item span {
    text-decoration: none !important;
}
.header__menu-item:hover span {
    text-decoration: underline !important;
    text-underline-offset: 6px !important;
}

/* Transparent Header Logic */
.header-wrapper--transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
/* Ensure sticky still has background */
.shopify-section-header-sticky.scrolled-past-header .header-wrapper--transparent {
    background-color: var(--bg-cream) !important;
    position: fixed;
    animation: fadeInDown 0.3s ease-out;
}
@keyframes fadeInDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile Drawer Styles */
.menu-drawer {
    background-color: var(--bg-cream) !important;
    z-index: 1001 !important;
}
.js details[open].menu-opening > .menu-drawer {
    visibility: visible !important;
    transform: translateX(0) !important;
}
.menu-drawer__menu-item {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: var(--text-dark) !important;
}
.menu-drawer__menu-item:hover {
    color: var(--primary-olive) !important;
}
/* Ensure Shopify images render inside the parallax containers */
.product-img-wrapper {
    position: relative !important;
    background-color: #f6f4f0 !important;
    overflow: hidden !important;
    margin-bottom: 2rem;
    aspect-ratio: 4 / 5 !important;
    display: block;
}
.product-img-wrapper img {
    width: 100% !important;
    height: 115% !important;
    position: absolute !important;
    top: -7.5% !important;
    left: 0 !important;
    object-fit: cover !important;
    mix-blend-mode: multiply;
    display: block;
}

/* Hero Slider Styles */
.hero-slideshow-wrapper { position: relative; width: 100%; overflow: hidden; }
.v-slider-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.v-slider-wrapper::-webkit-scrollbar { display: none; }
.v-slide { flex: 0 0 100%; scroll-snap-align: start; position: relative; }
.hero-title-v2 em { font-style: italic; font-family: var(--font-heading); }

/* Marquee overlapping hero image */
.hero-marquee-overlap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: rgba(253, 249, 243, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Responsive helpers */
.desktop-only { display: block; }
.mobile-only { display: none; }
.cart-count { background: var(--primary-olive); color: white; font-size: 0.6rem; width: 16px; height: 16px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; position: relative; top: -6px; left: -4px; }

@media (max-width: 768px) {
    .desktop-only { display: none; }
    .mobile-only { display: inline-flex; }
    .shopify-section-group-header-group header {
        padding: 1rem 1.5rem !important;
    }
}

/* Lenis Recommended CSS */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.line { overflow: hidden; padding-bottom: 5px; }

/* Structural Utils */
.section-relative { position: relative; }

/* Common Components */
.micro-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.text-center { text-align: center; }

/* Section Headers (Titles for sections, not the site header) */
.section-header:not(.shopify-section-group-header-group):not(.velura-site-header) {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
}

.section-title-v2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}
.section-title-v2 em { font-style: italic; color: var(--primary-olive); }

.section-desc-v2 {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-primary-v2 {
    background-color: var(--primary-olive);
    color: white;
    padding: 16px 36px;
    border-radius: 2px;
}
.btn-primary-v2:hover {
    background-color: var(--text-dark); /* darker hover for elegance */
    transform: translateY(-3px);
}

.btn-text-v2 {
    color: var(--text-dark);
    border-bottom: 1px solid var(--divider);
    padding: 6px 0;
    margin-left: 2rem;
}
.btn-text-v2:hover {
    color: var(--primary-olive);
    border-color: var(--primary-olive);
    padding-left: 8px; padding-right: 8px;
}

/* Core spacing */

/* Hero V2 */
.hero-v2 { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; align-items: center; background-color: var(--bg-cream); }
.hero-image-side { height: 100vh; width: 100%; position: relative; overflow: hidden; background-color: #EFECE6; }
.img-reveal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--bg-cream); z-index: 2; transform-origin: top; }
.hero-img-v2 { width: 100%; height: 120%; object-fit: cover; position: absolute; top: -10%; left: 0; }
.hero-content-side { padding: 0 4rem 0 8rem; max-width: 700px; }
.hero-title-v2 { font-family: var(--font-heading); font-size: 5rem; font-weight: 400; line-height: 0.95; margin-bottom: 2rem; letter-spacing: -2px; }
.hero-desc-v2 { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 3.5rem; font-weight: 300; max-width: 450px; }

/* 🌟 Marquee Section */
.marquee-section {
    padding: 3rem 0;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    background-color: var(--bg-cream);
    overflow: hidden;
    display: flex;
}
.marquee-wrapper {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}
.marquee-content {
    display: inline-block;
    animation: marquee-scroll 25s linear infinite;
}
.marquee-content span {
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding: 0 3rem;
    text-transform: uppercase;
}
@keyframes marquee-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); } /* Requires content duplication */
}

/* Philosophy Section */
.philosophy { padding: 10rem 4rem 12rem 4rem; background-color: var(--bg-white); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6rem; max-width: 1400px; margin: 0 auto; }
.p-num { font-family: var(--font-heading); font-size: 3rem; color: var(--divider); margin-bottom: 1.5rem; display: block; border-bottom: 1px solid var(--divider); padding-bottom: 10px; }
.p-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 400; margin-bottom: 1rem; }
.p-text { color: var(--text-muted); font-size: 1rem; font-weight: 300; line-height: 1.7; }

/* 🌟 Rotating Badge */
.rotating-badge-wrapper {
    position: absolute;
    top: -80px;
    right: 15%;
    z-index: 10;
    pointer-events: none; /* Let clicks pass through if needed */
}
.rotating-badge {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rotating-badge svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.badge-center-icon {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-style: italic;
    color: var(--primary-olive);
}

/* Featured Products (Shop Grid) */
.shop-grid { padding: 10rem 4rem; background-color: var(--bg-cream); }
.products-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; max-width: 1400px; margin: 0 auto; }
.product-item { cursor: pointer; }
.product-img-wrapper { position: relative; background-color: #f6f4f0; overflow: hidden; margin-bottom: 2rem; aspect-ratio: 4 / 5; }
.product-img-wrapper img { width: 100%; height: 115%; position: absolute; top: -7.5%; left: 0; object-fit: cover; mix-blend-mode: multiply; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.product-item:hover .product-img-wrapper img { transform: scale(1.03) translateY(-2%); }
.product-badges { position: absolute; bottom: 20px; left: 20px; z-index: 2; }
.product-badges span { background-color: var(--bg-white); color: var(--text-dark); font-size: 0.65rem; padding: 6px 14px; border-radius: 40px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.product-details { padding-left: 5px; }
.p-cat { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.p-name { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 400; margin-bottom: 8px; }
.p-price { font-size: 1rem; color: var(--text-muted); }

/* 🌟 Categories Section */
.categories-section {
    padding: 2rem 4rem;
    background-color: var(--bg-white);
}
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}
.category-block {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    text-decoration: none;
    background-color: #ECEAE4;
    border-radius: 2px;
}
.cat-img {
    width: 100%;
    height: 115%;
    position: absolute;
    top: -7.5%;
    left: 0;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: brightness(0.9);
}
.category-block:hover .cat-img {
    transform: scale(1.05); /* Parallax handles Y, this handles pure zoom */
    filter: brightness(1);
}
.cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    color: white;
}
.cat-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.cat-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cat-link i {
    transition: transform 0.4s ease;
}
.category-block:hover .cat-link i {
    transform: translateX(10px);
}

/* Texture Spotlight V2 */
.spotlight-v2 { display: grid; grid-template-columns: 1fr 1fr; max-width: 1400px; margin: 8rem auto 10rem auto; background-color: var(--primary-olive); color: white; border-radius: 2px; overflow: hidden; align-items: center; }
.spotlight-content-v2 { padding: 8rem 6rem; }
.spotlight-v2 .section-title-v2 { color: white; }
.spotlight-v2 .section-desc-v2 { color: rgba(255,255,255,0.8); margin-bottom: 3rem; }
.spotlight-list { list-style: none; margin-bottom: 3rem; }
.spotlight-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 1.05rem; color: rgba(255,255,255,0.9); font-weight: 300; }
.spotlight-image-v2 { height: 100%; overflow: hidden; position: relative; }
.spotlight-image-v2 img { width: 100%; height: 120%; position: absolute; top: -10%; left: 0; object-fit: cover; }

/* 🌟 Testimonials Section */
.testimonials-section {
    padding: 8rem 4rem 12rem 4rem;
    background-color: var(--bg-cream);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testi-card {
    background: var(--bg-white);
    padding: 4rem 3rem;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}
.testi-stars {
    color: var(--primary-olive);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}
.testi-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.testi-author {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* 🌟 Video Community Section */
.video-community-section {
    padding: 6rem 4rem 10rem 4rem;
    background-color: var(--bg-cream);
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}
.v-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s ease;
    cursor: pointer;
}
.v-card:hover {
    transform: translateY(-5px);
}
.v-media-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
    background-color: #E6E4DD;
}
.v-media-wrap img {
    width: 100%;
    height: 115%;
    position: absolute;
    top: -7.5%;
    left: 0;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.v-card:hover .v-media-wrap img {
    transform: scale(1.04) translateY(-2%);
}
.v-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-olive);
    color: white;
    font-size: 0.65rem;
    padding: 4px 12px;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    z-index: 2;
}
.v-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.3s ease;
}
.v-card:hover .v-play-btn {
    background-color: rgba(255,255,255,0.9);
    color: var(--primary-olive);
    transform: translate(-50%, -50%) scale(1.1);
}
.v-product-box {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 12px;
}
.v-prod-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #f6f4f0;
    flex-shrink: 0;
}
.v-prod-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.v-prod-name {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.2;
}
.v-prod-price {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.v-add-btn {
    background-color: var(--text-dark);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.v-add-btn:hover {
    background-color: var(--primary-olive);
}

/* 🌟 IG Gallery Section */
.ig-gallery-section {
    width: 100%;
    margin: 4rem 0 0 0;
    position: relative;
    background-color: var(--bg-cream);
}
.ig-header {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ig-handle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}
.ig-handle:hover {
    opacity: 0.7;
}
.ig-grid-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.ig-grid {
    display: flex;
    width: 100%;
}
.ig-item {
    flex: 1;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ig-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 2rem;
}
.ig-item:hover img {
    transform: scale(1.05);
}
.ig-item:hover .ig-overlay {
    opacity: 1;
}
.ig-arrow-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.4);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background-color 0.3s ease;
}
.ig-arrow-btn:hover {
    background-color: rgba(0,0,0,0.7);
}

/* Footer V2 */
.footer-v2 { background-color: #20241E; color: #dedede; padding: 8rem 4rem 3rem 4rem; }
.footer-grid-v2 { display: flex; justify-content: space-between; max-width: 1400px; margin: 0 auto 6rem auto; }
.footer-brand .logo { color: white; margin-bottom: 1.5rem; }
.footer-brand p { color: #8A9A86; max-width: 250px; font-size: 0.95rem; }
.footer-nav { display: flex; gap: 6rem; }
.footer-col h5 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 2rem; color: white; font-weight: 400; }
.footer-col { display: flex; flex-direction: column; gap: 15px; }
.footer-col a { color: #8A9A86; text-decoration: none; font-size: 0.95rem; transition: color 0.4s ease; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); max-width: 1400px; margin: 0 auto; padding-top: 3rem; font-size: 0.85rem; color: #6a7667; text-align: center; }

/* ============================================
   PRODUCT PAGE - Premium Calm Aesthetic
   ============================================ */

/* Page background */
.product-info, .product-info .gradient {
    background-color: var(--bg-cream) !important;
}

/* Product layout */
.product {
    max-width: 1400px !important;
    margin: 0 auto;
    gap: 6rem !important;
}

/* Gallery */
.product__media-wrapper {
    background-color: #f6f4f0 !important;
    border-radius: 2px;
}
.product__media-wrapper img {
    mix-blend-mode: multiply;
}
.product__media-list .product__media-item {
    background-color: #f6f4f0;
    border-radius: 2px;
    overflow: hidden;
}
.thumbnail-list button,
.thumbnail-list .thumbnail {
    border-radius: 2px !important;
    border-color: var(--divider) !important;
}
.thumbnail-list .thumbnail.active,
.thumbnail-list button[aria-current="true"] {
    border-color: var(--primary-olive) !important;
}

/* Product Title */
.product__title h1,
.product__title .h1 {
    font-family: var(--font-heading) !important;
    font-size: 3rem !important;
    font-weight: 400 !important;
    letter-spacing: -1px !important;
    line-height: 1.1 !important;
    color: var(--text-dark) !important;
}

/* Vendor / Subtitle text */
.product__text.caption-with-letter-spacing {
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: var(--text-muted) !important;
    margin-bottom: 0.5rem !important;
}
.product__text.subtitle {
    font-family: var(--font-body) !important;
    color: var(--text-muted) !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
}

/* Price */
.price--large .price-item {
    font-family: var(--font-heading) !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    color: var(--text-dark) !important;
}
.price .price-item--sale {
    color: var(--primary-olive) !important;
}

/* Variant Picker */
.product-form__input label {
    font-family: var(--font-body) !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--text-dark) !important;
}
fieldset.product-form__input .variant-input__label {
    border-radius: 2px !important;
    border-color: var(--divider) !important;
    font-family: var(--font-body) !important;
    transition: all 0.3s ease !important;
}
fieldset.product-form__input .variant-input__label:hover,
fieldset.product-form__input .variant-input__label.active,
fieldset.product-form__input input:checked + .variant-input__label {
    border-color: var(--primary-olive) !important;
    color: var(--primary-olive) !important;
}

/* Add to Cart / Buy Button */
.product-form__submit {
    background-color: var(--primary-olive) !important;
    color: white !important;
    border: none !important;
    border-radius: 2px !important;
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-weight: 500 !important;
    padding: 18px 36px !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    min-height: 56px !important;
}
.product-form__submit:hover {
    background-color: var(--text-dark) !important;
    transform: translateY(-2px) !important;
}
.product-form__submit[disabled] {
    background-color: #c0c5be !important;
    opacity: 0.7 !important;
}
/* Dynamic checkout / Shop Pay button */
.shopify-payment-button .shopify-payment-button__button {
    border-radius: 2px !important;
    min-height: 50px !important;
}

/* Quantity Selector */
.quantity__input {
    font-family: var(--font-body) !important;
    border-radius: 0 !important;
    border-color: var(--divider) !important;
}
.quantity__button {
    border-color: var(--divider) !important;
    color: var(--text-dark) !important;
    transition: color 0.3s ease !important;
}
.quantity__button:hover {
    color: var(--primary-olive) !important;
}

/* Collapsible Tabs / Accordion */
.product__accordion .accordion__title {
    font-family: var(--font-heading) !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    color: var(--text-dark) !important;
}
.product__accordion summary {
    border-bottom: 1px solid var(--divider) !important;
    padding: 1.5rem 0 !important;
}
.product__accordion .accordion__content {
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    font-weight: 300 !important;
    color: var(--text-muted) !important;
    line-height: 1.7 !important;
    padding: 1.5rem 0 !important;
}
.product__accordion .icon-accordion {
    color: var(--primary-olive) !important;
}

/* Description */
.product__description {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
    color: var(--text-dark) !important;
    line-height: 1.8 !important;
    border-top: 1px solid var(--divider);
    padding-top: 2rem;
    margin-top: 1rem;
}

/* Share Button */
.product-form__buttons + .share-button {
    margin-top: 1.5rem;
}
.share-button__button {
    font-family: var(--font-body) !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--text-muted) !important;
}
.share-button__button:hover {
    color: var(--primary-olive) !important;
}

/* Tax / Shipping note */
.product__tax {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
}
.product__tax a {
    color: var(--primary-olive) !important;
}

/* Related Products */
.related-products {
    background-color: var(--bg-cream) !important;
    padding: 6rem 0 !important;
}
.related-products .section-header__title,
.related-products h2 {
    font-family: var(--font-heading) !important;
    font-size: 2.5rem !important;
    font-weight: 400 !important;
    color: var(--text-dark) !important;
    text-align: center !important;
}
.related-products .card {
    background-color: var(--bg-cream) !important;
    border: none !important;
    box-shadow: none !important;
}
.related-products .card__heading {
    font-family: var(--font-heading) !important;
    font-weight: 400 !important;
}
.related-products .card__information .price {
    font-family: var(--font-body) !important;
    color: var(--text-muted) !important;
}
.related-products .card__media {
    background-color: #f6f4f0 !important;
    border-radius: 2px !important;
    overflow: hidden !important;
}
.related-products .card__media img {
    mix-blend-mode: multiply;
}

/* View Full Details Link */
.product__view-details {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--primary-olive) !important;
}
.product__view-details:hover {
    color: var(--text-dark) !important;
}


/* ============================================
   COLLECTION PAGE - Premium Calm Aesthetic
   ============================================ */

/* Collection Banner */
.collection-banner,
.collection-hero {
    background-color: var(--bg-cream) !important;
}
.collection-banner__box h1,
.collection-hero__title {
    font-family: var(--font-heading) !important;
    font-size: 3.5rem !important;
    font-weight: 400 !important;
    letter-spacing: -1px !important;
    color: var(--text-dark) !important;
}
.collection-banner__text,
.collection-hero__description {
    font-family: var(--font-body) !important;
    color: var(--text-muted) !important;
    font-weight: 300 !important;
    font-size: 1.05rem !important;
}

/* Collection Product Grid */
.collection .collection-product-list,
.collection .grid {
    gap: 3rem !important;
}

/* Product Cards (Collection & Related) */
.card-wrapper {
    transition: transform 0.4s ease !important;
}
.card-wrapper:hover {
    transform: translateY(-4px) !important;
}
.card {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 2px !important;
}
.card__media {
    background-color: #f6f4f0 !important;
    border-radius: 2px !important;
    overflow: hidden !important;
}
.card__media img {
    mix-blend-mode: multiply;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.card-wrapper:hover .card__media img {
    transform: scale(1.03) !important;
}
.card__heading {
    font-family: var(--font-heading) !important;
    font-weight: 400 !important;
    font-size: 1.4rem !important;
    color: var(--text-dark) !important;
}
.card__heading a {
    text-decoration: none !important;
    color: var(--text-dark) !important;
}
.card__heading a:hover {
    color: var(--primary-olive) !important;
}
.card-information .price {
    font-family: var(--font-body) !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
}
.card-information .badge {
    background-color: var(--primary-olive) !important;
    color: white !important;
    border-radius: 2px !important;
    font-size: 0.65rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Filters / Facets */
.facets-wrapper {
    border-color: var(--divider) !important;
}
.facets__heading {
    font-family: var(--font-heading) !important;
    font-weight: 400 !important;
    color: var(--text-dark) !important;
}
.facets__label,
.facets__summary span {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    color: var(--text-dark) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
.facet-checkbox input:checked + .icon-checkmark {
    color: var(--primary-olive) !important;
}
.active-facets__button {
    background-color: var(--primary-olive) !important;
    color: white !important;
    border-radius: 2px !important;
}
/* Sort Dropdown */
.collection-filters__sort select,
.facet-filters__sort select {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    border-radius: 2px !important;
    border-color: var(--divider) !important;
    color: var(--text-dark) !important;
}

/* Pagination */
.pagination__list {
    gap: 0.5rem;
}
.pagination__item a,
.pagination__item span {
    font-family: var(--font-body) !important;
    color: var(--text-dark) !important;
    border-radius: 2px !important;
    min-width: 40px;
    min-height: 40px;
}
.pagination__item--current {
    background-color: var(--primary-olive) !important;
    color: white !important;
    border-radius: 2px !important;
}

/* ============================================
   CART - Premium Calm Aesthetic
   ============================================ */

/* Cart Drawer */
.cart-drawer {
    background-color: var(--bg-cream) !important;
    font-family: var(--font-body) !important;
}
.drawer__header {
    border-bottom: 1px solid var(--divider) !important;
    padding: 2rem !important;
}
.drawer__heading {
    font-family: var(--font-heading) !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    color: var(--text-dark) !important;
}
.drawer__close {
    color: var(--text-dark) !important;
}
.drawer__close:hover {
    color: var(--primary-olive) !important;
}

/* Cart Items */
.cart-item {
    border-bottom: 1px solid var(--divider) !important;
    padding: 1.5rem 0 !important;
}
.cart-item__name {
    font-family: var(--font-heading) !important;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    color: var(--text-dark) !important;
    text-decoration: none !important;
}
.cart-item__name:hover {
    color: var(--primary-olive) !important;
}
.cart-item .price {
    font-family: var(--font-body) !important;
    color: var(--text-dark) !important;
}
.cart-item__image-container {
    background-color: #f6f4f0 !important;
    border-radius: 2px !important;
    overflow: hidden !important;
}
.cart-item__image-container img {
    mix-blend-mode: multiply;
}
.cart-item__details .product-option {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
}
.cart-item .quantity__button {
    border-color: var(--divider) !important;
    color: var(--text-dark) !important;
}
.cart-item .quantity__input {
    border-color: var(--divider) !important;
    font-family: var(--font-body) !important;
}

/* Cart Totals / Footer */
.cart-drawer__footer,
.cart__footer {
    border-top: 1px solid var(--divider) !important;
    background-color: var(--bg-cream) !important;
    padding: 2rem !important;
}
.totals__subtotal {
    font-family: var(--font-heading) !important;
    font-size: 1.2rem !important;
    color: var(--text-dark) !important;
}
.totals__subtotal-value {
    font-family: var(--font-heading) !important;
    font-size: 1.4rem !important;
    color: var(--text-dark) !important;
}
.tax-note {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
}

/* Cart Checkout Button */
.cart__checkout-button,
#CartDrawer-Checkout {
    background-color: var(--primary-olive) !important;
    color: white !important;
    border: none !important;
    border-radius: 2px !important;
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-weight: 500 !important;
    padding: 16px 36px !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    min-height: 54px !important;
}
.cart__checkout-button:hover,
#CartDrawer-Checkout:hover {
    background-color: var(--text-dark) !important;
    transform: translateY(-2px) !important;
}

/* Empty Cart */
.cart__empty-text,
.cart-drawer__empty-text {
    font-family: var(--font-heading) !important;
    font-size: 1.4rem !important;
    color: var(--text-muted) !important;
}
.cart__continue-shopping,
.cart-drawer .button--secondary {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--primary-olive) !important;
    border-color: var(--primary-olive) !important;
    border-radius: 2px !important;
}
.cart__continue-shopping:hover,
.cart-drawer .button--secondary:hover {
    background-color: var(--primary-olive) !important;
    color: white !important;
}

/* Cart Page (non-drawer) */
.cart__contents {
    background-color: var(--bg-cream) !important;
}
.cart-items th {
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--text-muted) !important;
    border-bottom: 1px solid var(--divider) !important;
}

/* ============================================
   404 PAGE - Premium Calm Aesthetic
   ============================================ */
.template-404 {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    background-color: var(--bg-cream);
}
.template-404 .title {
    font-family: var(--font-heading) !important;
    font-size: 6rem !important;
    font-weight: 400 !important;
    color: var(--text-dark) !important;
    letter-spacing: -2px !important;
    margin-bottom: 1.5rem;
}
.template-404 p {
    font-family: var(--font-body) !important;
    color: var(--text-muted) !important;
    font-size: 1.1rem !important;
    font-weight: 300 !important;
    margin-bottom: 1rem;
    order: -1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem !important;
}
.template-404 .button {
    background-color: var(--primary-olive) !important;
    color: white !important;
    border: none !important;
    border-radius: 2px !important;
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-weight: 500 !important;
    padding: 16px 40px !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    margin-top: 1.5rem;
}
.template-404 .button:hover {
    background-color: var(--text-dark) !important;
    transform: translateY(-2px) !important;
}

/* ============================================
   ANNOUNCEMENT BAR - Premium Calm Aesthetic
   ============================================ */
.announcement-bar {
    background-color: var(--text-dark) !important;
    border: none !important;
}
.announcement-bar__message,
.announcement-bar__link {
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: var(--bg-cream) !important;
    font-weight: 400 !important;
}
.announcement-bar__link:hover {
    opacity: 0.8;
}

/* ============================================
   BREADCRUMBS - Premium Calm Aesthetic
   ============================================ */
.breadcrumbs {
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--text-muted) !important;
    padding: 1.5rem 0 !important;
}
.breadcrumbs a {
    color: var(--text-muted) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}
.breadcrumbs a:hover {
    color: var(--primary-olive) !important;
}
.breadcrumbs .breadcrumbs__separator {
    margin: 0 0.5rem;
    color: var(--divider);
}

/* ============================================
   SEARCH PAGE - Premium Calm Aesthetic
   ============================================ */
.template-search .search__heading {
    font-family: var(--font-heading) !important;
    font-size: 2.5rem !important;
    font-weight: 400 !important;
    color: var(--text-dark) !important;
}
.template-search .search__input {
    font-family: var(--font-body) !important;
    border-radius: 2px !important;
    border-color: var(--divider) !important;
    padding: 14px 20px !important;
}
.template-search .search__input:focus {
    border-color: var(--primary-olive) !important;
    box-shadow: 0 0 0 1px var(--primary-olive) !important;
}
.template-search .search__button {
    background-color: var(--primary-olive) !important;
    color: white !important;
    border-radius: 2px !important;
}

/* ============================================
   GLOBAL SHOPIFY OVERRIDES
   ============================================ */

/* Remove Dawn's default button styles globally */
.button:not(.shopify-payment-button__button) {
    font-family: var(--font-body) !important;
    border-radius: 2px !important;
    letter-spacing: 0.5px !important;
}

/* Form inputs global */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
    font-family: var(--font-body) !important;
    border-radius: 2px !important;
    border-color: var(--divider) !important;
    transition: border-color 0.3s ease !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    border-color: var(--primary-olive) !important;
    box-shadow: 0 0 0 1px var(--primary-olive) !important;
    outline: none !important;
}

/* Links global */
a:not(.btn):not(.nav-link):not(.card__heading a) {
    transition: color 0.3s ease;
}

/* Section padding normalizer */
.section-template--*-padding {
    background-color: var(--bg-cream);
}


/* ============================================
   RESPONSIVE OVERRIDES - Fluid Mobile Experience
   ============================================ */

/* ---- TABLET (≤ 1024px) ---- */
@media (max-width: 1024px) {
    /* Header */
    .header-container { padding: 0 2rem; }

    /* Hero */
    .hero-v2 { grid-template-columns: 1fr; min-height: auto; }
    .hero-image-side { height: 55vh; }
    .hero-content-side { padding: 4rem 3rem; max-width: 100%; }
    .hero-title-v2 { font-size: 3.8rem; }
    .hero-desc-v2 { font-size: 1.05rem; margin-bottom: 2.5rem; }

    /* Section Titles */
    .section-title-v2 { font-size: 3rem; }
    .section-desc-v2 { font-size: 1.05rem; }
    .section-header { margin: 0 auto 4rem auto; }

    /* Philosophy */
    .philosophy { padding: 6rem 3rem 8rem 3rem; }
    .philosophy-grid { grid-template-columns: 1fr; gap: 4rem; }

    /* Products */
    .shop-grid { padding: 6rem 3rem; }
    .products-container { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .rotating-badge-wrapper { right: 5%; top: -40px; transform: scale(0.7); }

    /* Categories */
    .categories-section { padding: 2rem 3rem; }
    .categories-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .category-block { aspect-ratio: 16/9; }
    .cat-title { font-size: 2.4rem; }

    /* Texture Spotlight */
    .spotlight-v2 { grid-template-columns: 1fr; margin: 5rem 2rem 6rem 2rem; }
    .spotlight-content-v2 { padding: 4rem 3rem; }
    .spotlight-image-v2 { height: 50vh; }

    /* Video Community */
    .video-community-section { padding: 5rem 3rem; }
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    /* Testimonials */
    .testimonials-section { padding: 6rem 3rem 8rem 3rem; }
    .testi-grid { grid-template-columns: 1fr; gap: 2.5rem; max-width: 600px; }

    /* Header */
    .header { padding-left: 2rem !important; padding-right: 2rem !important; }

    /* Footer */
    .footer-v2 { padding: 5rem 3rem 3rem 3rem; }
    .footer-grid-v2 { flex-direction: column; gap: 3rem; }
    .footer-nav { gap: 3rem; }

    /* Product Page */
    .product { gap: 4rem !important; }
    .product__title h1, .product__title .h1 { font-size: 2.4rem !important; }
    .price--large .price-item { font-size: 1.5rem !important; }
    .related-products h2 { font-size: 2rem !important; }

    /* Collection Page */
    .collection-banner__box h1, .collection-hero__title { font-size: 2.8rem !important; }
    .card__heading { font-size: 1.2rem !important; }

    /* 404 Page */
    .template-404 .title { font-size: 4rem !important; }
}

/* ---- MOBILE (≤ 768px) ---- */
@media (max-width: 768px) {
    /* Hero */
    .hero-v2 { min-height: auto; }
    .hero-image-side { height: 45vh; }
    .hero-content-side { padding: 3rem 2rem; }
    .hero-title-v2 { font-size: 2.8rem; letter-spacing: -1px; margin-bottom: 1.5rem; }
    .hero-desc-v2 { font-size: 0.95rem; margin-bottom: 2rem; max-width: 100%; }
    .hero-actions-v2 { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
    .btn-text-v2 { margin-left: 0; }
    .btn-primary-v2 { padding: 14px 28px; font-size: 0.9rem; }

    /* Marquee */
    .marquee-section { padding: 2rem 0; }
    .marquee-content span { font-size: 0.75rem; padding: 0 2rem; letter-spacing: 1.5px; }
    .hero-marquee-overlap { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

    /* Section Titles */
    .section-title-v2 { font-size: 2.2rem; letter-spacing: -1px; }
    .section-desc-v2 { font-size: 0.95rem; }
    .section-header { margin: 0 auto 3rem auto; padding: 0 1rem; }
    .micro-tag { font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 1rem; }

    /* Philosophy */
    .philosophy { padding: 4rem 2rem 5rem 2rem; }
    .philosophy-grid { gap: 3rem; }
    .p-num { font-size: 2.2rem; }
    .p-title { font-size: 1.6rem; }
    .p-text { font-size: 0.9rem; }

    /* Products */
    .shop-grid { padding: 4rem 2rem; }
    .products-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .p-name { font-size: 1.3rem; }
    .p-price { font-size: 0.9rem; }
    .p-cat { font-size: 0.65rem; }
    .rotating-badge-wrapper { display: none; }

    /* Categories */
    .categories-section { padding: 1rem 1.5rem; }
    .categories-grid { gap: 1rem; }
    .category-block { aspect-ratio: 4/3; }
    .cat-title { font-size: 1.8rem; }
    .cat-content { padding: 2rem; }
    .cat-link { font-size: 0.8rem; }

    /* Texture Spotlight */
    .spotlight-v2 { margin: 3rem 1.5rem 4rem 1.5rem; border-radius: 4px; }
    .spotlight-content-v2 { padding: 3rem 2rem; }
    .spotlight-v2 .section-title-v2 { font-size: 2rem; }
    .spotlight-list li { font-size: 0.95rem; gap: 10px; margin-bottom: 12px; }
    .spotlight-image-v2 { height: 40vh; }

    /* Video Community */
    .video-community-section { padding: 4rem 1.5rem; }
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .v-badge { font-size: 0.6rem; padding: 3px 10px; top: 10px; left: 10px; }
    .v-play-btn { width: 40px; height: 40px; font-size: 1rem; }
    .v-prod-name { font-size: 0.75rem; }
    .v-prod-price { font-size: 0.7rem; }
    .v-add-btn { padding: 6px 12px; font-size: 0.7rem; }

    /* Testimonials */
    .testimonials-section { padding: 4rem 2rem 6rem 2rem; }
    .testi-grid { grid-template-columns: 1fr; gap: 2rem; }
    .testi-card { padding: 3rem 2rem; }
    .testi-quote { font-size: 1.2rem; margin-bottom: 2rem; }
    .testi-stars { font-size: 1rem; margin-bottom: 1.5rem; }
    .testi-author { font-size: 0.8rem; }

    /* IG Gallery */
    .ig-gallery-section { margin-top: 2rem; }
    .ig-handle { font-size: 1.4rem; }
    .ig-grid { flex-wrap: wrap; }
    .ig-item { flex: 0 0 50%; }

    /* Header */
    .header { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }

    /* Footer */
    .footer-v2 { padding: 4rem 2rem 2rem 2rem; }
    .footer-grid-v2 { margin-bottom: 3rem; }
    .footer-nav { flex-direction: column; gap: 2rem; }
    .footer-col h5 { font-size: 1rem; margin-bottom: 1.2rem; }
    .footer-col a { font-size: 0.85rem; }
    .footer-brand p { font-size: 0.85rem; }
    .footer-bottom { font-size: 0.75rem; padding-top: 2rem; }

    /* Product Page */
    .product { gap: 2rem !important; }
    .product__title h1, .product__title .h1 { font-size: 2rem !important; }
    .price--large .price-item { font-size: 1.4rem !important; }
    .product-form__submit { padding: 16px 24px !important; font-size: 0.85rem !important; }
    .product__accordion .accordion__title { font-size: 1rem !important; }
    .product__accordion summary { padding: 1.2rem 0 !important; }
    .product__description { font-size: 0.9rem !important; }
    .related-products h2 { font-size: 1.6rem !important; }

    /* Collection Page */
    .collection-banner__box h1, .collection-hero__title { font-size: 2rem !important; }
    .card__heading { font-size: 1.1rem !important; }
    .collection .grid { gap: 2rem !important; }

    /* Cart */
    .drawer__heading { font-size: 1.4rem !important; }
    .cart__checkout-button, #CartDrawer-Checkout { padding: 14px 24px !important; font-size: 0.85rem !important; }

    /* 404 Page */
    .template-404 .title { font-size: 3rem !important; }
    .template-404 { padding: 4rem 1.5rem; }
    .template-404 .button { width: 100%; text-align: center; }
}

/* ---- SMALL PHONE (≤ 480px) ---- */
@media (max-width: 480px) {
    /* Hero */
    .hero-image-side { height: 40vh; }
    .hero-content-side { padding: 2.5rem 1.5rem; }
    .hero-title-v2 { font-size: 2.2rem; line-height: 1.05; }
    .hero-desc-v2 { font-size: 0.9rem; }
    .btn-primary-v2 { padding: 12px 24px; font-size: 0.85rem; width: 100%; justify-content: center; }
    .btn-text-v2 { width: 100%; text-align: center; padding: 10px 0; }

    /* Section Titles */
    .section-title-v2 { font-size: 1.8rem; }
    .section-desc-v2 { font-size: 0.85rem; }

    /* Products - single column on very small screens */
    .products-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .product-img-wrapper { aspect-ratio: 1 / 1 !important; }
    .p-name { font-size: 1.5rem; }

    /* Categories */
    .category-block { aspect-ratio: 16/9; }
    .cat-title { font-size: 1.5rem; }
    .cat-content { padding: 1.5rem; }

    /* Texture */
    .spotlight-v2 { margin: 2rem 1rem 3rem 1rem; }
    .spotlight-content-v2 { padding: 2.5rem 1.5rem; }
    .spotlight-v2 .section-title-v2 { font-size: 1.6rem; }
    .spotlight-image-v2 { height: 35vh; }

    /* Video - single column */
    .video-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .v-media-wrap { aspect-ratio: 9/14; }

    /* Testimonials */
    .testi-card { padding: 2.5rem 1.5rem; }
    .testi-quote { font-size: 1.1rem; }

    /* IG Gallery */
    .ig-grid { flex-wrap: wrap; }
    .ig-item { flex: 0 0 100%; }
    .ig-handle { font-size: 1.2rem; }

    /* Header */
    .header { padding-left: 1rem !important; padding-right: 1rem !important; }

    /* Footer */
    .footer-v2 { padding: 3rem 1.5rem 2rem 1.5rem; }
    .footer-brand .logo { font-size: 1.8rem; }

    /* Product Page */
    .product__title h1, .product__title .h1 { font-size: 1.6rem !important; }
    .price--large .price-item { font-size: 1.2rem !important; }
    .product-form__submit { width: 100% !important; min-height: 50px !important; }

    /* Collection Page */
    .collection-banner__box h1, .collection-hero__title { font-size: 1.6rem !important; }
    .card__heading { font-size: 1rem !important; }

    /* 404 Page */
    .template-404 .title { font-size: 2.2rem !important; letter-spacing: -1px !important; }
}

@media screen and (min-width: 990px) {
    .product {
        display: grid !important;
        grid-template-columns: 6fr 4fr !important;
        gap: 5rem !important;
        align-items: flex-start !important;
        max-width: 1400px !important;
        margin: 4rem auto !important;
    }
    .product__media-wrapper, .product__info-wrapper {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* 🌟 Contact Form - 2-Column Desktop */
.contact__layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

@media screen and (min-width: 900px) {
    .contact__layout-grid {
        grid-template-columns: 5.5fr 4.5fr;
        gap: 6rem;
        padding: 8rem 4rem;
    }
}

.contact__form-wrapper {
    background-color: transparent; /* Sin fondo de caja, integrado en la web */
    padding: 0;
}

.contact__fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Nombre y Email juntos en Desktop */
@media screen and (min-width: 750px) {
    .contact__fields {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.contact__form-wrapper .field {
    margin-bottom: 1.5rem !important;
}

.contact__form-wrapper .contact__fields .field {
    margin-bottom: 0 !important; /* El margen lo maneja el gap del grid */
}

/* Cajas cuadradas con border 1px */
.contact__form-wrapper .field__input {
    background-color: transparent !important;
    border: 1px solid #8e8e8e !important;
    border-radius: 2px !important;
    padding: 2.2rem 1.5rem 0.8rem 1.5rem !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    color: var(--text-dark) !important;
    transition: border-color 0.3s ease !important;
    box-shadow: none !important;
}

.contact__form-wrapper .field__input:focus {
    border-color: var(--primary-olive) !important;
    outline: none !important;
}

.contact__form-wrapper .field__label {
    left: 1.5rem !important;
    top: 1.5rem !important;
    font-size: 0.95rem !important;
    color: #7a7a7a !important;
    transition: all 0.3s ease !important;
    padding-left: 0 !important;
}

.contact__form-wrapper .field__input:focus ~ .field__label,
.contact__form-wrapper .field__input:not(:placeholder-shown) ~ .field__label {
    top: -0.5rem !important;
    font-size: 0.75rem !important;
    color: var(--text-dark) !important;
}

.contact__button {
    margin-top: 2rem !important;
    text-align: left !important;
}

/* Botón con borde y fondo arena mate */
.contact__button .button {
    background-color: #B39E8E !important; 
    color: white !important;
    padding: 1.4rem 4rem !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    letter-spacing: 1px !important;
    border: 1px solid #4a4a4a !important; 
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: inline-block !important;
}

.contact__button .button:hover {
    background-color: #A08874 !important;
    transform: translateY(-2px) !important;
}

/* Info Columna Derecha */
.contact__info-wrapper { padding-top: 1rem; }
@media screen and (min-width: 900px) {
    .contact__info-wrapper { padding-top: 2rem; }
}

.contact__info-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 4rem;
    line-height: 1.4;
}

.contact__info-item {
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
}

.contact__info-label {
    display: block;
    font-size: 0.95rem;
    color: #7a7a7a;
    margin-bottom: 0.5rem;
}

.contact__info-text {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact__info-text p { margin: 0; }
.contact__info-text strong { font-weight: 500; }

/* Contact Form (Mobile Responsiveness) */
@media screen and (max-width: 749px) {
    .contact__layout-grid { padding: 4rem 2rem; }
    .contact__info-title { font-size: 1.8rem; margin-bottom: 2rem; }
    .contact__button .button { width: 100% !important; padding: 1.4rem !important; text-align: center !important; }
}
@media screen and (max-width: 480px) {
    .contact__layout-grid { padding: 3rem 1.5rem; }
    .contact__info-title { font-size: 1.6rem; }
}
