﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img { max-width: 100%; display: block; }

:root {
    --primary-bg: #ffffff;
    --primary-text: #343434;
    --dark-accent: #2C332F;
    --light-gray: #E8E8E8;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.12);
    --accent-orange: #E67E22;
    --accent-pink: #F4C2C2;
    --success: #27AE60;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--primary-text);
    background-color: var(--primary-bg);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.announcement-bar {
    background-color: #ffffff;
    color: var(--primary-text);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 400;
}
.announcement-bar--light {
    background-color: #ffffff;
    color: var(--primary-text);
}

.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
}

/* ── Logo bar: collapsed; logo floats over header right side ─────────────── */
.header-logo-bar {
    position: relative;
    height: 0;
    padding: 0;
    border: none;
    overflow: visible;
}

.logo {
    position: absolute;
    left: 40px;
    top: -27px;
    z-index: 1001;
}

.logo img {
    height: 104px;
    width: auto;
}

/* ── Nav bar: search | categories | cart on one line ────────────────────── */
.header-nav-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu > li > a {
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    padding: 14px 20px;
    display: block;
}

.nav-menu > li > a:hover {
    color: #a8957a;
}

.nav-menu a {
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #a8957a;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    z-index: 1000;
}

/* Dropdowns shown/hidden via JS mouseenter/mouseleave */

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.dropdown-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-section a {
    display: block;
    color: var(--primary-text);
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.dropdown-section a:hover {
    color: #a8957a;
    padding-left: 8px;
}

/* Search bar + cart inline with nav */
.nav-search {
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.nav-search-input {
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    color: var(--primary-text);
    background: transparent;
    padding: 4px 2px;
    width: 140px;
    transition: border-color 0.2s, width 0.3s;
}

.nav-search-input::placeholder {
    color: #aaa;
    font-weight: 300;
}

.nav-search-input:focus {
    border-bottom-color: #a8957a;
    width: 200px;
}

.cart-btn {
    background: none;
    border: none;
    padding: 14px 16px;
    cursor: pointer;
    font-size: 15px;
    color: var(--primary-text);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.cart-btn:hover {
    color: #a8957a;
}

.cart-count {
    background-color: #a8957a;
    color: var(--white);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-image-contain {
    object-fit: contain;
    object-position: center;
    background: #000;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    max-width: 700px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: #a8957a;
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.cta-button:hover {
    background-color: #D35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.hero-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-dots .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Benefits Section */
.benefits-section {
    padding: 30px 0;
    background: #faf8f5;
}

.benefits-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 90px;
}

.benefits-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #a8957a;
    margin-bottom: 22px;
}

.benefits-title {
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 300;
    color: #1a1916;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.benefits-subhead {
    font-size: 14px;
    line-height: 1.9;
    color: #8a7e75;
    font-weight: 300;
    max-width: 420px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-left: 1px solid #e4ddd4;
}

.benefit-item {
    padding: 0 44px;
    border-right: 1px solid #e4ddd4;
}

.benefit-rule {
    width: 24px;
    height: 1px;
    background: #c4b49a;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1916;
    margin-bottom: 14px;
}

.benefit-item p {
    font-size: 13.5px;
    line-height: 1.9;
    color: #8a7e75;
    font-weight: 300;
}

/* Category Section */
.category-section {
    padding: 40px 0;
    background-color: var(--primary-bg);
}

.category-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-accent);
    margin-bottom: 60px;
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    background-color: var(--white);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px var(--shadow-hover);
}

.category-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: 25px;
}

.category-info h3 {
    font-size: 24px;
    color: var(--dark-accent);
    margin-bottom: 8px;
    font-weight: 600;
}

.category-info p {
    color: #666;
    font-size: 15px;
}

/* Products Section */
.products-section {
    padding: 40px 0;
    background-color: var(--white);
}

.products-section:nth-of-type(even) {
    background-color: var(--primary-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--dark-accent);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-top: -30px;
    margin-bottom: 40px;
}

.view-all {
    color: #a8957a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #D35400;
}

/* Size Filter for Lamps */
.size-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--dark-accent);
    background: var(--white);
    color: var(--dark-accent);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--dark-accent);
    color: var(--white);
}

/* Lamps Info Banner */
.lamps-info-banner {
    background-color: var(--accent-pink);
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-orange);
}

.lamps-info-banner p {
    margin: 0;
    color: var(--dark-accent);
    font-size: 15px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--dark-accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.best-seller {
    background-color: #a8957a;
}

.product-badge.exclusive {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-badge.eco {
    background-color: var(--success);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

/* Empty placeholder shown by shopify-hydrate.js when Shopify has no image. */
.shopify-no-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: var(--primary-bg);
}
.product-main-image .shopify-no-image {
    aspect-ratio: 1 / 1;
    min-height: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 20px;
    color: var(--dark-accent);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-details {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-details span, .coverage {
    background-color: var(--primary-bg);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: var(--primary-text);
    font-weight: 500;
}

.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.product-benefits span {
    font-size: 13px;
    color: var(--success);
    font-weight: 500;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.price {
    font-size: 26px;
    color: var(--dark-accent);
    font-weight: 700;
}

.add-to-cart {
    background-color: #a8957a;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: #D35400;
    transform: scale(1.05);
}

/* Education Section */
.education-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #F8F8F8 0%, #E8E8E8 100%);
}

.education-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-accent);
    margin-bottom: 60px;
    font-weight: 700;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.education-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.education-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.education-card h3 {
    font-size: 20px;
    color: var(--dark-accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.education-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #a8957a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #D35400;
}

/* Trust Section */
.trust-section {
    padding: 30px 0;
    background-color: var(--dark-accent);
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.trust-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #a8957a;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1916;
    letter-spacing: -0.01em;
}

.trust-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

/* Footer */
.footer-mission {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
}

.footer-mission-headline {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    opacity: 1;
}

.footer-mission p {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    opacity: 1;
}

.main-footer {
    background-color: var(--primary-text);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #a8957a;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.85;
    transition: opacity 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-column p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dropdown-content {
        min-width: 600px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 48px 0; border-left: none; }
    .benefit-item { border-right: none; border-bottom: 1px solid #e4ddd4; padding: 0 0 42px; margin-bottom: 0; }
    .benefit-item:nth-child(odd) { padding-right: 24px; border-right: 1px solid #e4ddd4; }
    .benefits-section { padding: 40px 0; }
    .benefits-header { margin-bottom: 56px; }
    .benefits-title { font-size: 2rem; }
    .category-grid, .products-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .size-filter {
        justify-content: center;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
    }

    .dropdown-content {
        min-width: 90vw;
        left: 5vw;
    }
}

@media (max-width: 480px) {
    .hero {
    margin-top: 40px;
        height: 400px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }

    .benefits-section h2, .category-section h2, .section-header h2 {
        font-size: 32px;
    }
}

/* New Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--dark-accent) 0%, var(--primary-text) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* About Page Styles */
.about-story {
    padding: 40px 0;
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow);
}

.story-content h2 {
    font-size: 36px;
    color: var(--dark-accent);
    margin-bottom: 25px;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.values-section {
    padding: 40px 0;
    background-color: var(--primary-bg);
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--dark-accent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    color: var(--dark-accent);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.why-himalayan, .quality-section {
    padding: 40px 0;
    background-color: var(--white);
}

.why-himalayan h2, .quality-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--dark-accent);
}

.himalayan-content, .quality-grid {
    max-width: 900px;
    margin: 0 auto;
}

.mineral-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.fact {
    background: var(--primary-bg);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.fact h4 {
    font-size: 20px;
    color: var(--dark-accent);
    margin-bottom: 10px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.quality-item h3 {
    font-size: 22px;
    color: var(--dark-accent);
    margin-bottom: 15px;
}

.cta-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #D35400 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-section {
    padding: 40px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-container h2, .contact-info-container h2 {
    font-size: 28px;
    color: var(--dark-accent);
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-accent);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #c7bda6;
    border-radius: 8px;
    background-color: #faf8f5;
    color: var(--primary-text);
    box-shadow: inset 0 1px 3px rgba(44,51,47,0.06);
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9a8f7a;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #a8957a;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(168,149,122,0.20);
}

.contact-method {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--light-gray);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-accent);
}

.contact-method p {
    margin-bottom: 10px;
    color: #666;
}

.contact-method a {
    color: #a8957a;
    text-decoration: none;
    font-weight: 600;
}

.social-link {
    display: inline-block;
    margin-right: 15px;
    color: #a8957a;
    text-decoration: none;
    font-weight: 500;
}

.faq-links {
    padding: 30px 0;
    background-color: var(--primary-bg);
}

.faq-links h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    color: var(--dark-accent);
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.faq-item a {
    color: #a8957a;
    text-decoration: none;
    font-weight: 600;
}

.faq-more {
    text-align: center;
    font-size: 16px;
}

/* Resources Page Styles */
.resource-section {
    padding: 30px 0;
    border-bottom: 1px solid var(--light-gray);
}

.resource-section h2 {
    font-size: 36px;
    color: var(--dark-accent);
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.guide-formula {
    background: var(--accent-pink);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-orange);
}

.guide-formula h3 {
    font-size: 24px;
    color: var(--dark-accent);
    margin-bottom: 10px;
}


.coverage-formula { background: #f9f7f4; padding: 16px 20px; margin: 0 0 28px; font-size: 15px; line-height: 1.7; color: #2b2a27; font-weight: 400; }
.coverage-formula strong { color: #1a1916; font-weight: 500; }
.coverage-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.coverage-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; }
.coverage-table th { text-align: left; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #a8957a; padding: 12px 16px; border-bottom: 2px solid #e8e8e8; white-space: nowrap; }
.coverage-table td { padding: 14px 16px; border-bottom: 1px solid #f0eeeb; color: #2b2a27; font-weight: 400; }
.coverage-table tr:hover td { background: #faf9f7; }
.coverage-table .cov-weight { font-weight: 500; color: #1a1916; white-space: nowrap; }
.coverage-table .cov-cov { white-space: nowrap; }
.coverage-table .cov-shop { color: #a8957a; text-decoration: none; white-space: nowrap; }
.coverage-table .cov-shop:hover { text-decoration: underline; }
.coverage-table .wt-link { color: #8a765b; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.coverage-table .wt-link:hover { color: #6f5e46; }


.room-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-guide-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.room-guide-card h3 {
    font-size: 22px;
    color: var(--dark-accent);
    margin-bottom: 15px;
}

.room-guide-card p {
    margin-bottom: 12px;
    color: #666;
    line-height: 1.6;
}

.guide-link {
    display: inline-block;
    margin-top: 10px;
    color: #a8957a;
    text-decoration: none;
    font-weight: 600;
}

.benefits-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-detailed {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.benefit-detailed h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-accent);
}

.benefit-detailed p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
}

.benefit-detailed ul {
    margin-left: 20px;
    color: #666;
}

.benefit-detailed li {
    margin-bottom: 8px;
}

.cooking-guide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cooking-method {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.cooking-method h3 {
    font-size: 24px;
    color: var(--dark-accent);
    margin-bottom: 20px;
}

.cooking-method p {
    margin-bottom: 20px;
    color: #666;
}

.recipe-tips {
    margin-bottom: 25px;
}

.recipe-tips h4 {
    font-size: 18px;
    color: var(--dark-accent);
    margin-bottom: 12px;
}

.recipe-tips ul {
    margin-left: 20px;
    color: #666;
}

.recipe-tips li {
    margin-bottom: 8px;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.care-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.care-card h3 {
    font-size: 22px;
    color: var(--dark-accent);
    margin-bottom: 20px;
}

.care-card ul {
    margin-left: 20px;
    color: #666;
}

.care-card li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion .faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
}

.faq-question {
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    font-size: 18px;
    color: var(--dark-accent);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-bg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

.faq-more-help {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
}

.faq-more-help a {
    color: #a8957a;
    text-decoration: none;
    font-weight: 600;
}

/* Active nav link */
.nav-menu a.active {
    color: #a8957a;
}

/* Responsive */
@media (max-width: 768px) {
    .story-grid, .values-grid, .contact-grid, .quality-grid, 
    .benefits-detailed, .cooking-guide, .care-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .mineral-facts {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 32px;
    }
}

/* Category Page Styles */
.category-intro {
    padding: 30px 0;
    background-color: var(--white);
}

.intro-content h2 {
    font-size: 32px;
    color: var(--dark-accent);
    margin-bottom: 20px;
    text-align: center;
}

.intro-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.salt-benefits-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mini-benefit {
    text-align: center;
    padding: 25px;
    background: var(--primary-bg);
    border-radius: 8px;
}

.mini-benefit strong {
    display: block;
    font-size: 16px;
    color: var(--dark-accent);
    margin-bottom: 8px;
}

.mini-benefit p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.usage-guide {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--light-gray) 100%);
}

.usage-guide h2 {
    text-align: center;
    font-size: 32px;
    color: var(--dark-accent);
    margin-bottom: 40px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.usage-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.usage-card h3 {
    font-size: 22px;
    color: var(--dark-accent);
    margin-bottom: 20px;
}

.usage-card ul {
    list-style: none;
    padding: 0;
}

.usage-card li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid var(--light-gray);
}

.usage-card li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .salt-benefits-mini, .usage-grid {
        grid-template-columns: 1fr;
    }
}

.lamps-info-banner-page {
    background: var(--accent-pink);
    padding: 30px 0;
    margin-bottom: 40px;
    border-top: 4px solid var(--accent-orange);
    border-bottom: 4px solid var(--accent-orange);
}

.lamps-info-banner-page h3 {
    font-size: 24px;
    color: var(--dark-accent);
    margin-bottom: 15px;
    text-align: center;
}

.lamps-info-banner-page p {
    text-align: center;
    color: var(--primary-text);
    margin: 8px 0;
    font-size: 16px;
}

/* Product Variation Disclaimer */
.variation-disclaimer {
    background: #FFF9E6;
    padding: 15px 0;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-orange);
}

.variation-disclaimer p {
    text-align: center;
    color: #666;
    margin: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.variation-disclaimer .icon {
    margin: 0;
}

/* Shopify Cart Modal Styles */
.shopify-cart-modal {
    position: fixed;
    inset: 0;
    background: rgba(26, 25, 22, 0);
    z-index: 10000;
    display: block;
    transition: background 0.35s ease;
}
.shopify-cart-modal.open { background: rgba(26, 25, 22, 0.45); }

.cart-modal-content {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 400px;
    max-width: 90vw;
    background: var(--white, #fff);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
    border-radius: 0;
}
.shopify-cart-modal.open .cart-modal-content { transform: translateX(0); }

.cart-header {
    padding: 25px 30px;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 28px;
    color: var(--dark-accent);
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 36px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--dark-accent);
}

.cart-items {
    padding: 20px 30px;
    overflow-y: auto;
    flex: 1;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h3 {
    font-size: 14px;
    color: var(--dark-accent);
    margin-bottom: 6px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-details p {
    font-size: 14px;
    color: #666;
    margin: 4px 0;
}

.cart-item-variant {
    font-weight: 600;
    color: var(--dark-accent) !important;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-accent);
}

.remove-item {
    align-self: center;
    background: none;
    border: 1px solid #d8cfc2;
    padding: 7px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a8957a;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.remove-item:hover {
    background: #a8957a;
    color: #fff;
    border-color: #a8957a;
}

.cart-footer {
    padding: 25px 30px;
    border-top: 2px solid var(--light-gray);
    background: var(--primary-bg);
}

.cart-total {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-button {
    display: block;
    width: 100%;
    background: var(--dark-accent);
    color: var(--white);
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkout-button:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.cart-btn {
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cart-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .cart-header {
        padding: 20px;
    }

    .cart-items {
        padding: 15px 20px;
    }

    .cart-footer {
        padding: 20px;
    }

    .cart-item {
        flex-direction: column;
    }

    .cart-item-image {
        width: 100%;
        height: 200px;
    }
}

/* Salt Cave Guide Styles */
.cave-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.cave-step {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--light-gray);
}

.cave-step h3 {
    color: var(--dark-accent);
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    background: var(--accent-orange);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.cave-step ul, .cave-step ol {
    margin: 0;
    padding-left: 20px;
}

.cave-step li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #666;
}

.cave-pricing {
    background: var(--primary-bg);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.cave-pricing h3 {
    text-align: center;
    color: var(--dark-accent);
    font-size: 28px;
    margin-bottom: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.pricing-option {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--accent-orange);
}

.pricing-option h4 {
    color: var(--dark-accent);
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-option ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-option li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    color: #666;
}

.pricing-option li:last-child {
    border-bottom: none;
}

.pricing-option .total {
    text-align: center;
    font-size: 24px;
    color: #a8957a;
    margin: 0;
    padding-top: 15px;
    border-top: 3px solid var(--accent-orange);
}

.pricing-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.cave-cta {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--dark-accent) 0%, #8B4513 100%);
    border-radius: 12px;
    color: var(--white);
}

.cave-cta h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
}

.cave-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

@media (max-width: 968px) {
    .cave-guide-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}


/* ── Global section eyebrow ──────────────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a8957a;
  margin-bottom: 16px;
}

.section-title-lg {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: #1a1916;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 50px;
}

/* ── Category section header refinement ─────────────────────────────────── */
.category-section .container > .section-eyebrow,
.education-section .container > .section-eyebrow {
  text-align: center;
}
.category-section .container > .section-title-lg,
.education-section .container > .section-title-lg {
  text-align: center;
}

/* ── Heritage Section ────────────────────────────────────────────────────── */
.heritage-section {
  background: #1a1916;
  overflow: hidden;
}

.heritage-inner {
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  min-height: 580px;
}

.heritage-text {
  padding: 100px 80px 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}

.heritage-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c4b49a;
  margin-bottom: 28px;
}

.heritage-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #f5f0ea;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.heritage-body {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(245, 240, 234, 0.58);
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 430px;
}

.heritage-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4b49a;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 180, 154, 0.38);
  padding-bottom: 4px;
  transition: border-color 0.3s;
}

.heritage-link:hover {
  border-color: #c4b49a;
}

.heritage-image-wrap {
  overflow: hidden;
}

.heritage-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.82;
}

/* ── Origin / Provenance Section ─────────────────────────────────────────── */
.origin-section {
  padding: 30px 0;
  background: #faf8f5;
}

.origin-header {
  text-align: center;
  margin-bottom: 80px;
}

.origin-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 300;
  color: #1a1916;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.origin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid #e4ddd4;
}

.origin-item {
  padding: 0 52px;
  border-right: 1px solid #e4ddd4;
}

.origin-rule {
  width: 24px;
  height: 1px;
  background: #c4b49a;
  margin-bottom: 20px;
}

.origin-label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1916;
  margin-bottom: 16px;
}

.origin-item p {
  font-size: 14px;
  line-height: 1.9;
  color: #8a7e75;
  font-weight: 300;
}

/* ── Testimonials Section ────────────────────────────────────────────────── */
.testimonials-section {
  padding: 30px 0;
  background: #fff;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-title {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #1a1916;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid #e4ddd4;
}

.testimonial-item {
  padding: 52px;
  border-right: 1px solid #e4ddd4;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.85;
  color: #1a1916;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-author {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8957a;
}

/* ── Newsletter Section ──────────────────────────────────────────────────── */
.newsletter-section {
  padding: 50px 0;
  background: #1a1916;
}

.newsletter-inner {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #f5f0ea;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 18px;
}

.newsletter-sub {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(245, 240, 234, 0.52);
  font-weight: 300;
  margin-bottom: 42px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(196, 180, 154, 0.35);
}

.newsletter-input {
  flex: 1;
  padding: 16px 22px;
  background: transparent;
  border: none;
  color: #f5f0ea;
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(245, 240, 234, 0.32);
}

.newsletter-btn {
  padding: 16px 28px;
  background: #c4b49a;
  border: none;
  color: #1a1916;
  font-family: 'Noto Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-btn:hover {
  background: #b5a48a;
}

.newsletter-note {
  margin-top: 18px;
  font-size: 11px;
  color: rgba(245, 240, 234, 0.28);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ── Responsive: stack heritage + origin + testimonials on mobile ─────────── */
@media (max-width: 768px) {
  .heritage-inner {
    grid-template-columns: 1fr;
  }
  .heritage-text {
    padding: 70px 30px;
  }
  .heritage-image-wrap {
    aspect-ratio: 1 / 1;
  }
  .origin-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }
  .origin-item,
  .testimonial-item {
    padding: 40px 0;
    border-right: none;
    border-bottom: 1px solid #e4ddd4;
  }
}


/* ── Variant selector (size dropdown on product cards) ───────────────────── */
.products-grid--single {
  grid-template-columns: minmax(0, 420px);
  justify-content: start;
}

.product-card--variant {
  max-width: 420px;
}

.variant-selector {
  margin: 16px 0 0;
}

.variant-label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7e75;
  margin-bottom: 8px;
}

.size-select {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid #e4ddd4;
  background: #fff;
  color: #1a1916;
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8957a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.size-select:focus {
  border-color: #c4b49a;
}

.add-to-cart--disabled {
  opacity: 0.42;
  cursor: default;
}


/* ── Simple dropdown (matching real store's per-category dropdowns) ──────── */
.dropdown-content--simple {
  display: none;
  min-width: 180px;
  flex-direction: column;
  gap: 0;
  padding: 16px 0;
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 4px;
}

/* .dropdown-content--simple shown via JS */
.dropdown-content--simple a {
  padding: 9px 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-text);
  text-decoration: none;
  display: block;
  white-space: nowrap;
  transition: background 0.15s;
}
.dropdown-content--simple a:hover {
  background: #f5f5f5;
  color: var(--primary-text);
}

/* ── Featured Collections grid (4-card, matching real site) ─────────────── */
.collections-section {
  padding: 30px 0;
  background: #ffffff;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.collection-card {
  display: block;
  text-decoration: none;
  color: var(--primary-text);
  transition: opacity 0.2s;
}

.collection-card:hover {
  opacity: 0.88;
}

.collection-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 12px;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.03);
}

.collection-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-text);
  text-align: center;
  padding: 4px 0 8px;
}

/* ── Heritage section: light variant ───────────────────────────────────────── */
.heritage-section--light {
  background: #f7f7f7;
}
.heritage-section--light .heritage-title {
  color: #1a1916;
}
.heritage-section--light .heritage-eyebrow {
  color: #a8957a;
}
.heritage-section--light .heritage-body {
  color: #666;
}
.heritage-section--light .heritage-link {
  color: #a8957a;
  border-bottom-color: rgba(168, 149, 122, 0.4);
}
.heritage-section--light .heritage-image-wrap img {
  opacity: 1;
}

/* ── Newsletter section: light variant ──────────────────────────────────────── */
.newsletter-section--light {
  background: #f7f7f7;
}
.newsletter-section--light .newsletter-title {
  color: #1a1916;
}
.newsletter-section--light .newsletter-sub {
  color: #888;
}
.newsletter-section--light .newsletter-form {
  border-color: #ddd;
}
.newsletter-section--light .newsletter-input {
  color: #1a1916;
  background: #fff;
}
.newsletter-section--light .newsletter-input::placeholder {
  color: #aaa;
}
.newsletter-section--light .newsletter-note {
  color: #aaa;
}

/* ── Section backgrounds: white instead of cream ─────────────────────────── */
.benefits-section,
.origin-section,
.testimonials-section {
  background: #ffffff;
}

/* ── Origin grid & testimonial borders: lighter ──────────────────────────── */
.origin-grid,
.testimonials-grid {
  border-left-color: #e8e8e8;
}
.origin-item,
.testimonial-item {
  border-right-color: #e8e8e8;
}
.origin-rule,
.benefit-rule {
  background: #c4b49a;
}

/* ── Trust section: white background ────────────────────────────────────── */
.trust-section {
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  color: #1a1916;
}

/* ── Responsive collections ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ── 3-column variant grid (Fine / Coarse / Chunk) ─────────────────────── */
.products-grid--three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.products-grid--three .product-card--variant {
  max-width: 100%;
}

@media (max-width: 900px) {
  .products-grid--three {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* Quantity stepper — collection pages */
.product-footer { flex-wrap: wrap; gap: 8px; }
.product-footer .qty-stepper { display: flex; align-items: center; border: 1px solid #d8d8d8; border-radius: 4px; overflow: hidden; }
.product-footer .qty-btn { width: 30px; height: 38px; background: #f5f5f5; border: none; font-size: 16px; cursor: pointer; color: #1a1916; font-family: inherit; line-height: 1; }
.product-footer .qty-btn:hover { background: #e8e8e8; }
.product-footer .qty-input { width: 36px; height: 38px; border: none; border-left: 1px solid #d8d8d8; border-right: 1px solid #d8d8d8; text-align: center; font-family: inherit; font-size: 13px; color: #1a1916; -moz-appearance: textfield; }
.product-footer .qty-input::-webkit-outer-spin-button,
.product-footer .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ===== PRODUCT PAGE ENHANCEMENTS v12 ===== */
.pdp-social{display:flex;align-items:center;gap:16px;margin-bottom:32px}
.pdp-social-label{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:#999;font-weight:400}
.pdp-social-link{font-size:12px;color:#555;text-decoration:none;letter-spacing:.06em;border-bottom:1px solid #d0d0d0;padding-bottom:1px;transition:color .2s,border-color .2s;font-weight:300}
.pdp-social-link:hover{color:#a8957a;border-color:#a8957a}
.pdp-tabs-section{background:#fff;border-top:1px solid #e8e8e8;padding:0 0 72px}
.pdp-tabs-container{max-width:1160px;margin:0 auto;padding:0 32px}
.pdp-tabs-nav{display:flex;border-bottom:1px solid #e8e8e8;margin-bottom:36px}
.pdp-tab-btn{padding:20px 28px;background:none;border:none;border-bottom:2px solid transparent;font-family:inherit;font-size:12px;font-weight:400;letter-spacing:.14em;text-transform:uppercase;color:#aaa;cursor:pointer;margin-bottom:-1px;transition:color .2s,border-color .2s}
.pdp-tab-btn:hover{color:#1a1916}
.pdp-tab-btn--active{color:#1a1916;border-bottom-color:#1a1916}
.pdp-tab-panel{display:none}
.pdp-tab-panel--active{display:block}
.pdp-tab-panel .pdp-description{border-bottom:none!important;padding-bottom:0!important;margin-bottom:32px!important}
.pdp-tab-panel .pdp-features{border-top:none!important;padding-top:0!important}
.pdp-info-table{width:100%;border-collapse:collapse;font-size:14px}
.pdp-info-table tr{border-bottom:1px solid #f0f0f0}
.pdp-info-table tr:last-child{border-bottom:none}
.pdp-info-table td{padding:14px 16px;color:#555;font-weight:300;line-height:1.5;vertical-align:top}
.pdp-info-table td:first-child{font-weight:400;color:#1a1916;width:36%;padding-left:0}
.pdp-reviews-list{display:flex;flex-direction:column;gap:28px;max-width:720px}
.pdp-review-item{padding-bottom:28px;border-bottom:1px solid #f0f0f0}
.pdp-review-item:last-child{border-bottom:none;padding-bottom:0}
.pdp-review-stars{color:#a8957a;font-size:14px;margin-bottom:10px;letter-spacing:.04em}
.pdp-review-text{font-size:14px;line-height:1.8;color:#555;font-weight:300;margin-bottom:10px}
.pdp-review-author{font-size:12px;color:#999;letter-spacing:.06em}
.pdp-related{padding:80px 0;background:#fafaf8;border-top:1px solid #e8e8e8}
.pdp-related-inner{max-width:1160px;margin:0 auto;padding:0 32px}
.pdp-related-header{text-align:center;margin-bottom:48px}
.pdp-related-eyebrow{font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:#a8957a;display:block;margin-bottom:12px}
.pdp-related-title{font-size:clamp(1.4rem,2.5vw,1.9rem);font-weight:300;color:#1a1916;letter-spacing:-.01em;margin:0}
.pdp-related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.pdp-related-card{text-decoration:none;color:inherit;display:block}
.pdp-related-card-img{aspect-ratio:1/1;overflow:hidden;background:#f0f0ee;margin-bottom:14px}
.pdp-related-card-img img{width:100%;height:100%;object-fit: contain;transition:transform .4s ease}
.pdp-related-card:hover .pdp-related-card-img img{transform:scale(1.04)}
.pdp-related-card-title{font-size:13px;font-weight:400;color:#1a1916;letter-spacing:.02em;margin-bottom:4px;line-height:1.4}
.pdp-related-card-price{font-size:13px;font-weight:300;color:#777}
@media(max-width:900px){.pdp-related-grid{grid-template-columns:repeat(2,1fr);gap:16px}}
@media(max-width:768px){.pdp-tabs-nav{overflow-x:auto;white-space:nowrap;-webkit-overflow-scrolling:touch}.pdp-tab-btn{padding:16px 18px;font-size:11px}.pdp-tabs-container,.pdp-related-inner{padding:0 20px}.pdp-social{gap:12px}}


/* page-banner: rectangular page header used on all pages except index.html */
.page-banner { background: #f9f7f4; padding: 80px 32px; text-align: center; border-bottom: 1px solid #e8e8e8; }
.page-banner h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 300; color: #1a1916; letter-spacing: -0.02em; margin-bottom: 16px; }
.page-banner h1:last-child { margin-bottom: 0; }
.page-banner p { font-size: 16px; font-weight: 300; color: #777; max-width: 900px; margin: 0 auto; line-height: 1.7; }


/* --- listing-card star ratings (added 2026-05-21) --- */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0 10px;
    font-size: 0.95rem;
    line-height: 1;
}
.product-rating .stars {
    color: #f5a623;
    letter-spacing: 1px;
    font-size: 1rem;
}
.product-rating .rating-value {
    font-weight: 600;
    color: #2c2c2c;
}
.product-rating .rating-count {
    color: #7a7a7a;
    font-size: 0.85rem;
}

/* ===== Site search dropdown ===== */
.nav-search-results {
    position: absolute;
    z-index: 9999;
    background: #ffffff;
    border: 1px solid #e5e0d8;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 70vh;
    overflow-y: auto;
    font-family: inherit;
    padding: 4px 0;
}

.nav-search-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--primary-text, #1a1916);
    border-bottom: 1px solid #f3efe8;
}

.nav-search-row:last-child {
    border-bottom: none;
}

.nav-search-row:hover,
.nav-search-row.is-highlighted {
    background-color: #faf7f1;
}

.nav-search-thumb {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 2px;
    background-color: #f3efe8;
}

.nav-search-thumb--blank {
    display: inline-block;
}

.nav-search-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.nav-search-title {
    font-size: 13px;
    font-weight: 500;
    color: #1a1916;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-search-sub {
    font-size: 11px;
    color: #8a7e75;
    display: flex;
    gap: 8px;
}

.nav-search-cat {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-search-price {
    color: #a8957a;
    font-weight: 600;
}

.nav-search-empty {
    padding: 14px 16px;
    font-size: 12px;
    color: #8a7e75;
}

@media (max-width: 600px) {
    .nav-search-results {
        max-width: calc(100vw - 24px);
    }
    .nav-search-input:focus {
        width: 160px;
    }
}

.page-keywords {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    font-size: 1px;
    color: transparent;
}


/* Footer social media logos */
.main-footer .social-icons {
    flex-direction: row;
    gap: 16px;
    align-items: center;
}
.main-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.85;
    padding-left: 0;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.main-footer .social-icons a:hover {
    opacity: 1;
    color: #a8957a;
    padding-left: 0;
    transform: translateY(-2px);
}
.main-footer .social-icons svg {
    width: 24px;
    height: 24px;
    display: block;
}


/* General social icon layout (footer + contact body) */
.social-icons {
    flex-direction: row;
    gap: 16px;
    align-items: center;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-icons svg {
    width: 24px;
    height: 24px;
    display: block;
}


/* ===== Added: mobile nav, phone icon, serif headings ===== */

/* Mobile hamburger nav */
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    line-height: 0;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (max-width: 768px) {
    .header-nav-bar {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 14px 18px;
    }
    .nav-toggle { display: inline-flex; order: 1; }
    .nav-search { order: 2; flex: 1 1 auto; }
    .cart-btn { order: 3; }
    .nav-menu {
        order: 4;
        width: 100%;
        display: none;
        flex-direction: column;
        gap: 0;
        margin-top: 6px;
        border-top: 1px solid #eee;
    }
    .header-nav-bar.nav-open .nav-menu { display: flex; }
    .nav-menu > li { width: 100%; border-bottom: 1px solid #f0ece4; }
    .nav-menu > li > a { display: block; padding: 14px 4px; font-size: 15px; }
    .nav-menu .dropdown-content {
        position: static;
        min-width: 0;
        box-shadow: none;
        background: transparent;
        padding: 0 0 8px 16px;
    }
    .header-nav-bar.nav-open .nav-menu .dropdown-content { display: block !important; }
    .nav-menu .dropdown-content a { padding: 9px 0; font-size: 14px; }
    .header-nav-bar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .header-nav-bar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .header-nav-bar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Phone icon (SVG) */
svg.ico-phone {
    width: 1em;
    height: 1em;
    vertical-align: -0.12em;
    margin-right: 7px;
    flex-shrink: 0;
}

/* Serif display headings */
:root { --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; }
.hero-content h1,
.benefits-title,
.heritage-title,
.origin-title,
.section-title-lg,
.testimonials-title,
.newsletter-title,
.page-banner h1,
.page-hero h1,
.pdp-title,
.pdp-features-title {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0;
}


/* ===== Remaining SVG icons ===== */

/* Inline section/heading icons (e.g. resources benefits) */
svg.ico-h {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.18em;
    margin-right: 9px;
    color: #a8957a;
    flex-shrink: 0;
}
/* Checklist icons */
svg.ico-check {
    width: 1em;
    height: 1em;
    vertical-align: -0.12em;
    margin-right: 9px;
    color: #a8957a;
    flex-shrink: 0;
}
/* Trust-badge large icons */
svg.ico-badge {
    width: 40px;
    height: 40px;
    color: #a8957a;
    display: block;
    margin: 0 auto 12px;
}

/* Room Size Guide — colorful treatment */
#guide { position: relative; overflow: hidden; background: linear-gradient(180deg, #fdfbf7 0%, #f3eee5 100%); }
#guide::before { content: ""; position: absolute; top: -220px; left: 50%; transform: translateX(-50%); width: 1300px; height: 640px; background: radial-gradient(ellipse at center, rgba(201,143,82,0.17), rgba(201,143,82,0.04) 55%, transparent 72%); pointer-events: none; }
#guide::after { content: ""; position: absolute; right: -90px; bottom: -70px; width: 600px; height: 600px; background: url('https://cdn.shopify.com/s/files/1/1155/0248/files/himalayan-salt-lamp-as-a-lifestyle-image-natural-shaped.png') no-repeat center center / contain; opacity: 0.09; pointer-events: none; }
#guide .container { position: relative; z-index: 1; }
#guide h2::after { content: ""; display: block; width: 64px; height: 3px; background: linear-gradient(90deg, #a9762f, #d9a86f); margin-top: 14px; border-radius: 2px; }
#guide .coverage-formula { background: rgba(255,255,255,0.62); }
#guide .coverage-table-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 16px 46px rgba(120,90,50,0.13); background: rgba(255,255,255,0.55); }
#guide .coverage-table thead tr { background: linear-gradient(90deg, #7d6540 0%, #a9762f 100%); }
#guide .coverage-table th { color: #fff; border-bottom: none; padding: 20px 16px; }
#guide .coverage-table tbody tr:nth-child(odd) { background: rgba(255,255,255,0.5); }
#guide .coverage-table tbody tr:nth-child(even) { background: rgba(201,143,82,0.09); }
#guide .coverage-table tbody tr:hover { background: rgba(201,143,82,0.18); }
#guide .coverage-table td { border-bottom: 1px solid rgba(168,149,122,0.22); }
#guide .coverage-table .cov-weight .wt-link { color: #a2701f; }

#guide .guide-figure { display: block; max-width: 1000px; margin: 0 auto; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 50px rgba(120,88,48,0.18); }
#guide .guide-figure img { width: 100%; height: auto; display: block; }
#guide .guide-cta { text-align: center; margin-top: 26px; }
#guide .guide-cta a { color: #a2701f; font-weight: 600; text-decoration: none; letter-spacing: 0.02em; font-size: 16px; }
#guide .guide-cta a:hover { text-decoration: underline; }

/* Resources hub */
.res-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1120px; margin: 0 auto; padding: 0 32px 40px; }
.res-card { display: block; text-decoration: none; color: inherit; background: #fff; border: 1px solid #ece6dc; border-radius: 12px; padding: 34px 32px; transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.res-card:hover { box-shadow: 0 16px 40px rgba(120,90,50,0.12); transform: translateY(-3px); border-color: #d8cdb9; }
.res-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: 27px; color: #1a1916; margin-bottom: 12px; letter-spacing: 0.01em; }
.res-card p { font-size: 15px; line-height: 1.6; color: #5f5a52; font-weight: 300; margin-bottom: 16px; }
.res-card .go { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: #a2701f; font-weight: 600; }
@media (max-width: 900px) { .res-hub-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .res-hub-grid { grid-template-columns: 1fr; } }

/* Salt block recipe pages */
.recipe-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 32px; }
.recipe-tag { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: #8a6f45; background: rgba(168,149,122,0.14); border: 1px solid rgba(168,149,122,0.3); border-radius: 999px; padding: 7px 16px; }
.recipe-ing { margin: 0 0 8px; }
.recipe-steps { margin: 0 0 8px; padding-left: 22px; }
.recipe-steps li { margin-bottom: 14px; line-height: 1.7; }
.recipe-tip { background: linear-gradient(180deg, #fbf7f0, #f6efe4); border-left: 3px solid #a9762f; border-radius: 8px; padding: 20px 24px; margin: 30px 0; }
.recipe-tip strong { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #a9762f; margin-bottom: 8px; }
.recipe-tip p { margin: 0; }
.recipe-list { columns: 2; column-gap: 40px; margin: 8px 0 28px; }
.recipe-list li { break-inside: avoid; margin-bottom: 10px; }
.recipe-list a { color: #a2701f; text-decoration: none; font-weight: 500; }
.recipe-list a:hover { text-decoration: underline; }
@media (max-width: 640px) { .recipe-list { columns: 1; } }


/* Cart pulse when items > 0 (added 2026-07-19) */
@keyframes cart-pulse {
  0%   { transform: scale(1); }
  15%  { transform: scale(1.18); }
  30%  { transform: scale(1); }
  100% { transform: scale(1); }
}
@keyframes cart-badge-pulse {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(168,149,122,0.55); }
  40%  { transform: scale(1.25); box-shadow: 0 0 0 7px rgba(168,149,122,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(168,149,122,0); }
}
.cart-btn.has-items { animation: cart-pulse 1.6s ease-in-out infinite; transform-origin: center; }
.cart-btn.has-items .cart-count { animation: cart-badge-pulse 1.6s ease-in-out infinite; transform-origin: center; }
@media (prefers-reduced-motion: reduce) {
  .cart-btn.has-items, .cart-btn.has-items .cart-count { animation: none; }
}


/* Cart drawer refinements (2026-07-19) */
.shopify-cart-modal .cart-items { flex: 1 1 auto; overflow-y: auto; }
.shopify-cart-modal .cart-footer { flex: 0 0 auto; }
.shopify-cart-modal .cart-header h2 { font-weight: 300; letter-spacing: 0.01em; }
@media (max-width: 480px) { .cart-modal-content { width: 100%; max-width: 100%; } }

.cart-empty-msg { padding: 48px 30px; text-align: center; color: #999; font-weight: 300; font-size: 15px; }



@media (max-width: 768px) {
    .logo { left: 20px; top: -18px; }
    .logo img { height: 66px; }
}
@media (max-width: 480px) {
    .logo { left: 16px; top: -14px; }
    .logo img { height: 54px; }
}


/* Mobile header layout fix (2026-07-20): logo in-flow, centered, above nav */
@media (max-width: 768px) {
    .header-logo-bar {
        height: auto;
        padding: 14px 0 8px;
        text-align: center;
        overflow: visible;
    }
    .logo {
        position: static;
        left: auto;
        top: auto;
        display: inline-block;
    }
    .logo img { height: 60px; }
    .header-nav-bar { padding: 10px 16px; }
}
@media (max-width: 480px) {
    .logo img { height: 50px; }
    .header-logo-bar { padding: 12px 0 6px; }
}

.newsletter-success { margin-top:16px; font-size:15px; color:#a8957a; font-weight:400; letter-spacing:0.02em; }


/* Free-shipping progress nudge in cart drawer (2026-07-20) */
.ship-nudge { font-size:13px; color:#3a3a3a; text-align:center; margin:0 0 8px; letter-spacing:0.01em; }
.ship-nudge strong { color:#1a1916; }
.ship-nudge--met { color:#5a7d4f; }
.ship-nudge--met strong { color:#5a7d4f; }
.ship-nudge-icon { display:inline-block; width:16px; height:16px; line-height:16px; text-align:center; background:#5a7d4f; color:#fff; border-radius:50%; font-size:10px; margin-right:4px; }
.ship-bar { height:6px; background:#eae4da; border-radius:999px; overflow:hidden; margin:0 0 16px; }
.ship-bar-fill { height:100%; background:#a8957a; border-radius:999px; transition:width 0.4s ease; }
.ship-nudge--met + .ship-bar .ship-bar-fill { background:#5a7d4f; }
