@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --terra: #C1674A;
    --terra-light: #E8A98A;
    --terra-pale: #F5E6DC;
    --umber: #5C3D2E;
    --sand: #F0E2CE;
    --sage: #7A8C6E;
    --cream: #FAF6EF;
    --charcoal: #2C2218;
    --gold: #B8860B;
    --warm-white: #FEFCF8;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--charcoal);
}

.serif {
    font-family: 'Playfair Display', Georgia, serif;
}

.mock-wrap {
    width: 100%;
    overflow-x: hidden;
    background: var(--cream);
}

/* ========== MOBILE MENU TOGGLE BUTTON ========== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1000;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--umber);
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* NAV */
/* ========== NAVIGATION - UPDATED ========== */
.nav {
    background: #2d2218;
    border-bottom: 1px solid #E8D9C8;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Sticky Header */
.nav.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    color: var(--umber);
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.nav-logo img {
    max-height: 50px;
    width: auto;
}

.nav-logo span {
    color: var(--terra);
    font-style: italic;
}

.nav-links-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links ul,
.nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
    margin-left: 20px;
}

.nav-links li:first-child {
    margin-left: 0;
}

.nav-links a {
    font-size: 12px;
    color: white;
    text-decoration: none;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: all 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--terra);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-cart {
    font-size: 12px;
    background: var(--terra);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.nav-cart:hover {
    background: var(--umber);
}

.nav-cart a {
    color: #fff;
    text-decoration: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    background: white;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--umber);
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-links-wrapper {
        flex: none;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: nowrap;
        padding: 12px 20px;
    }

    .nav-logo {
        flex: 1;
    }

    .nav-right {
        gap: 10px;
        flex-shrink: 0;
    }
    
    .free-shipping {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        margin-left: 5px;
    }
    
    .nav-links-wrapper {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: calc(100% - 60px);
        background: var(--warm-white);
        transition: left 0.3s ease;
        z-index: 998;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links-wrapper.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-links li,
    .nav-links .nav-item {
        display: block !important;
        margin: 0 !important;
        border-bottom: 1px solid #E8D9C8;
    }
    
    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 14px;
        color: rgba(32, 7, 7, 0.8);
    }
    
    .nav.header-fixed {
        position: fixed;
    }
    
    .mock-wrap {
        padding-top: 0 !important;
    }
}

@media (max-width: 480px) {
    .nav-cart {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .nav-logo img {
        max-height: 40px;
    }
}

/* ========== PREMIUM PRODUCT CARDS ========== */
/* ========== PREMIUM PRODUCT CARDS - UPDATED ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--warm-white);
    border-radius: 24px;
    border: 1px solid #EAD9C8;
    overflow: hidden;
    transition: all 0.38s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    box-shadow: 0 2px 12px rgba(92, 61, 46, 0.06);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 40px -16px rgba(92, 61, 46, 0.18);
    border-color: var(--terra-light);
}

/* Product Image Link */
.product-img-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

.product-img {
    height: 220px;
    background: var(--terra-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.product-img-thumb {
    max-width: 85%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-thumb {
    transform: scale(1.08);
}

/* Quick View Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 61, 46, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-overlay span {
    background: var(--terra);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-overlay span {
    transform: translateY(0);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--terra);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 25px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-badge.sale {
    background: var(--sage);
}

/* Product Info */
.product-info {
    padding: 18px 18px 22px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--umber);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-name a {
    color: var(--umber);
    text-decoration: none;
    transition: color 0.2s;
}

.product-name a:hover {
    color: var(--terra);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: var(--terra);
    font-size: 12px;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 11px;
    color: #8C7260;
}

.product-price {
    margin-bottom: 16px;
}

.product-price .amount {
    font-size: 20px;
    font-weight: 600;
    color: var(--terra);
    font-family: 'Playfair Display', Georgia, serif;
}

.product-price del .amount {
    font-size: 14px;
    color: #B8A090;
    font-weight: 400;
}

.product-price ins {
    text-decoration: none;
}

.add-btn {
    width: 100%;
    background: linear-gradient(135deg, #5C3D2E 0%, #7A4F3A 100%);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 13px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(92, 61, 46, 0.22);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
}

.add-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.13);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.add-btn:hover {
    background: linear-gradient(135deg, #C1674A 0%, #d4795c 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(193, 103, 74, 0.35);
    color: #fff;
}

.add-btn:hover::after {
    left: 130%;
}

/* Shop All Button */
.shop-all-wrap {
    text-align: center;
    margin-top: 48px;
}

.shop-all-btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--terra);
    color: var(--terra);
    padding: 12px 36px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-all-btn:hover {
    background: var(--terra);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 103, 74, 0.25);
}

/* Desktop Premium View */
@media (min-width: 1200px) {
    .product-grid {
        gap: 35px;
    }
    
    .product-img {
        height: 260px;
    }
    
    .product-img-thumb {
        max-height: 190px;
    }
}

/* Tablet View */
@media (max-width: 992px) and (min-width: 769px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .product-img {
        height: 200px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-img {
        height: 160px;
    }
    
    .product-img-thumb {
        max-height: 110px;
    }
    
    .product-info {
        padding: 12px 12px 16px;
    }
    
    .product-name {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .product-price .amount {
        font-size: 16px;
    }
    
    .add-btn {
        padding: 8px;
        font-size: 11px;
    }
    
    .product-overlay {
        display: none;
    }
}



/* ========== RESPONSIVE FIXES ========== */

/* Tablet */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .frag-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 36px;
    }
}

/* Mobile Menu & Layout */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 75%;
        height: calc(100% - 60px);
        background: var(--warm-white);
        flex-direction: column;
        padding: 30px 24px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        z-index: 998;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li,
    .nav-links .nav-item {
        display: block !important;
        margin: 0 0 20px 0 !important;
    }
    
    .nav-links a {
        font-size: 14px;
        display: block;
        padding: 8px 0;
    }
    
    .nav-right {
        margin-left: auto;
    }
    
    /* Products - 2 columns on mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    .product-img {
        height: 150px;
    }
    
    .product-name {
        font-size: 12px;
    }
    
    .price-now {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px;
    }
    
    .story-visual {
        grid-template-columns: 1fr;
    }
    
    .howto-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .testi-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    
    .nl-form {
        flex-direction: column;
        margin: 0 16px;
    }
    
    .nl-btn {
        border-radius: 0 0 8px 8px;
    }
    
    .nl-input {
        border-radius: 8px 8px 0 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .trust-bar {
        grid-template-columns: 1fr;
    }
    
    .howto-steps {
        grid-template-columns: 1fr;
    }
    
    .frag-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .nav {
        flex-wrap: nowrap;
    }

    .nav-right {
        flex-shrink: 0;
    }
}

/* ========== REMAINING STYLES (HERO, TRUST, ETC.) ========== */
/* (Your existing styles for hero, trust bar, story, etc. go here) */
/* I'm keeping them as they were in your original file */

.hero {
    background: var(--umber);
    padding: 64px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    top: -80px;
    right: -80px;
}

.hero-bg-circle2 {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    bottom: -60px;
    left: 160px;
}

.hero-badge {
    display: inline-block;
    background: rgba(193, 103, 74, 0.25);
    border: 1px solid rgba(193, 103, 74, 0.4);
    color: var(--terra-light);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    color: #FEFCF8;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero h1 em {
    color: var(--terra-light);
    font-style: italic;
}

.hero-sub {
    font-size: 14px;
    color: rgba(254, 252, 248, 0.65);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 380px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-primary {
    background: var(--terra);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #a8533a;
    transform: translateY(-2px);
}

.btn-ghost {
    color: rgba(254, 252, 248, 0.8);
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(254, 252, 248, 0.3);
    padding-bottom: 2px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    color: #FEFCF8;
}

.stat-label {
    font-size: 11px;
    color: rgba(254, 252, 248, 0.5);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img-frame {
    width: 280px;
    height: 320px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.smoke-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
}

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

.burner-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(193, 103, 74, 0.2);
    border: 1px solid rgba(193, 103, 74, 0.3);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burner-icon {
    font-size: 36px;
}

.burner-label {
    font-size: 11px;
    color: rgba(254, 252, 248, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-tag {
    position: absolute;
    background: var(--terra);
    color: #fff;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    right: -16px;
    top: 40px;
    letter-spacing: 0.3px;
}

.hero-tag2 {
    position: absolute;
    background: var(--warm-white);
    color: var(--umber);
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    left: -16px;
    bottom: 60px;
    letter-spacing: 0.3px;
    border: 1px solid #E8D9C8;
}

/* SCENT STRIP */
.scent-strip {
    background: var(--terra);
    padding: 14px 32px;
    overflow: hidden;
}

.scent-ticker {
    display: flex;
    gap: 32px;
    align-items: center;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scent-item {
    font-size: 12px;
    color: rgba(254, 252, 248, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scent-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(254, 252, 248, 0.4);
}

/* TRUST BAR */
.trust-bar {
    background: var(--warm-white);
    border-bottom: 1px solid #E8D9C8;
    padding: 16px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--terra-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--umber);
}

.trust-text span {
    font-size: 11px;
    color: #8C7260;
}

/* STORY SECTION */
.story {
    background: var(--sand);
    padding: 64px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 12px;
}

.story h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--umber);
    line-height: 1.3;
    margin-bottom: 16px;
}

.story h2 em {
    color: var(--terra);
    font-style: italic;
}

.story p {
    font-size: 14px;
    color: #6B5040;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-quote {
    border-left: 2px solid var(--terra);
    padding-left: 16px;
    margin: 24px 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-style: italic;
    color: var(--umber);
}

.story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.story-card {
    border-radius: 10px;
    padding: 20px;
    background: var(--warm-white);
    border: 1px solid #E8D9C8;
}

.story-card-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: var(--terra);
    font-weight: 400;
}

.story-card-label {
    font-size: 12px;
    color: #8C7260;
    margin-top: 4px;
    line-height: 1.4;
}

.story-card.full {
    grid-column: 1/-1;
    background: var(--terra);
    color: #fff;
}

.story-card.full .story-card-num {
    color: rgba(255, 255, 255, 0.9);
}

.story-card.full .story-card-label {
    color: rgba(255, 255, 255, 0.7);
}

/* PRODUCTS */
.products {
    padding: 64px 32px;
    background: var(--cream);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--umber);
}

.view-all {
    font-size: 12px;
    color: var(--terra);
    text-decoration: none;
    border-bottom: 1px solid var(--terra-light);
    padding-bottom: 2px;
    letter-spacing: 0.5px;
}

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

/* FRAGRANCES */
.fragrances {
    background: var(--umber);
    padding: 64px 32px;
}

.fragrances .section-label {
    color: var(--terra-light);
}

.fragrances .section-title {
    color: var(--warm-white);
}

.frag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 36px;
}

.frag-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px 14px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.frag-card:hover {
    background: rgba(193, 103, 74, 0.15);
    border-color: rgba(193, 103, 74, 0.3);
    transform: translateY(-3px);
}

.frag-name {
    font-size: 13px;
    color: rgba(254, 252, 248, 0.9);
    font-weight: 500;
    margin-bottom: 4px;
}

.frag-mood {
    font-size: 11px;
    color: rgba(254, 252, 248, 0.45);
    font-style: italic;
}

.frag-dot-row {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.frag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terra);
}

.frag-dot.half {
    background: rgba(193, 103, 74, 0.4);
}

/* HOW TO USE */
.howto {
    background: var(--terra-pale);
    padding: 64px 32px;
}

.howto-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.howto-step {
    text-align: center;
    padding: 24px 16px;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--terra);
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--umber);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 12px;
    color: #8C7260;
    line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials {
    background: var(--warm-white);
    padding: 64px 32px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.testi-card {
    background: var(--cream);
    border: 1px solid #E8D9C8;
    border-radius: 12px;
    padding: 20px;
}

.testi-stars {
    color: var(--terra);
    font-size: 12px;
    margin-bottom: 10px;
}

.testi-text {
    font-size: 13px;
    color: #6B5040;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
    font-family: 'Playfair Display', Georgia, serif;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--terra-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--terra);
}

.testi-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--umber);
}

.testi-loc {
    font-size: 11px;
    color: #B8A090;
}

/* NEWSLETTER */
.newsletter {
    background: var(--terra);
    padding: 64px 32px;
    text-align: center;
}

.newsletter h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #FEFCF8;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 14px;
    color: rgba(254, 252, 248, 0.75);
    margin-bottom: 28px;
}

.nl-form {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nl-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 13px 16px;
    font-size: 13px;
    color: #fff;
    outline: none;
}

.nl-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.nl-btn {
    background: var(--umber);
    color: #fff;
    border: none;
    padding: 13px 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
}

.nl-note {
    font-size: 11px;
    color: rgba(254, 252, 248, 0.45);
    margin-top: 12px;
}

/* FOOTER */
.footer {
    background: var(--charcoal);
    padding: 40px 32px 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    color: #FEFCF8;
    margin-bottom: 10px;
}

.footer-brand span {
    color: var(--terra-light);
    font-style: italic;
}

.footer-tagline {
    font-size: 12px;
    color: rgba(254, 252, 248, 0.4);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(254, 252, 248, 0.5);
    transition: all 0.3s;
    cursor: pointer;
}

.social-btn:hover {
    background: var(--terra);
    color: #fff;
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(254, 252, 248, 0.4);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 12px;
    color: rgba(254, 252, 248, 0.6);
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--terra-light);
}

.footer-bottom {
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 11px;
    color: rgba(254, 252, 248, 0.3);
}

.footer-pay {
    display: flex;
    gap: 6px;
    align-items: center;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 10px;
    color: rgba(254, 252, 248, 0.4);
    letter-spacing: 0.5px;
}

/* PALETTE SECTION */
.palette-section {
    background: var(--warm-white);
    padding: 32px;
    border-top: 1px solid #E8D9C8;
}

.palette-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.palette-chip {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chip-color {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.chip-label {
    font-size: 11px;
    color: var(--charcoal);
}

.chip-hex {
    font-size: 10px;
    color: #8C7260;
}

/* Shop Page */
/* ========== SHOP PAGE - FIXED SIDEBAR + MOBILE ========== */

.shop-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.shop-sidebar {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
}

.widget {
    background: var(--warm-white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #E8D9C8;
    margin-bottom: 28px;
}

.widget h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--umber);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--terra);
}

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

.widget ul li {
    margin-bottom: 12px;
}

.widget ul li a {
    color: #6B5040;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    display: inline-block;
}

.widget ul li a:hover {
    color: var(--terra);
    transform: translateX(5px);
}

.widget ul li.active a {
    color: var(--terra);
    font-weight: 500;
}

/* Price Filter Slider */
.price_slider_wrapper .price_slider {
    background: #E8D9C8;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.price_slider_wrapper .ui-slider-range {
    background: var(--terra);
    height: 4px;
}

.price_slider_wrapper .ui-slider-handle {
    background: var(--terra);
    border: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
}

.price_slider_amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.price_slider_amount .button {
    background: var(--umber);
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    cursor: pointer;
}

.price_slider_amount .price_label {
    font-size: 12px;
    color: #8C7260;
}

.shop-products {
    flex: 3;
    min-width: 0;
}

/* Mobile Responsive - Shop Page */
@media (max-width: 992px) {
    .shop-layout {
        gap: 30px;
    }
    
    .shop-sidebar {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .shop-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .shop-sidebar {
        max-width: 100%;
        width: 100%;
        order: 2;
    }
    
    .shop-products {
        order: 1;
    }
    
    .widget {
        padding: 18px;
    }
    
    .widget ul li {
        display: inline-block;
        margin-right: 15px;
        margin-bottom: 10px;
    }
    
    .widget ul li a {
        font-size: 12px;
        background: var(--terra-pale);
        padding: 5px 12px;
        border-radius: 20px;
    }
    
    .widget ul li a:hover {
        transform: none;
    }
    
    .widget h3:after {
        width: 30px;
    }
}

@media (max-width: 550px) {
    .shop-page {
        padding: 30px 16px !important;
    }
    
    .shop-header h1 {
        font-size: 28px !important;
    }
    
    .widget ul li {
        margin-right: 8px;
        margin-bottom: 8px;
    }
    
    .widget ul li a {
        font-size: 11px;
        padding: 4px 10px;
    }
}

.woocommerce-ordering select {
    background: var(--warm-white);
    border: 1px solid #E8D9C8;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--umber);
}

.woocommerce-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    background: var(--warm-white);
    border: 1px solid #E8D9C8;
    border-radius: 6px;
    color: var(--umber);
    text-decoration: none;
    font-size: 13px;
}

.woocommerce-pagination .page-numbers.current {
    background: var(--terra);
    color: #fff;
    border-color: var(--terra);
}

/* Single Product */
.single-product-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-content {
    animation: fadeIn 0.3s ease;
}

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

.quantity-wrapper button:hover {
    background: var(--terra-pale);
}

.quantity-wrapper input::-webkit-inner-spin-button,
.quantity-wrapper input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

/* Cart Page */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    background: var(--cream);
}

.woocommerce-cart h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--umber);
    text-align: center;
    margin-bottom: 40px;
}

.woocommerce-cart-form {
    background: var(--warm-white);
    border-radius: 16px;
    border: 1px solid #E8D9C8;
    overflow-x: auto;
    margin-bottom: 32px;
}

.shop_table.cart {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.shop_table.cart th {
    background: var(--terra-pale);
    padding: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--umber);
    text-align: left;
    border-bottom: 1px solid #E8D9C8;
}

.shop_table.cart td {
    padding: 20px 16px;
    border-bottom: 1px solid #E8D9C8;
    vertical-align: middle;
}

.shop_table.cart .product-thumbnail img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.shop_table.cart .product-name a {
    color: var(--umber);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.shop_table.cart .product-price,
.shop_table.cart .product-subtotal {
    font-size: 15px;
    font-weight: 500;
    color: var(--terra);
}

.shop_table.cart .product-remove a {
    color: #B8A090;
    font-size: 20px;
    text-decoration: none;
}

.cart-collaterals {
    background: var(--warm-white);
    border-radius: 16px;
    border: 1px solid #E8D9C8;
    padding: 24px;
    max-width: 400px;
    margin-left: auto;
}

.cart_totals h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--umber);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E8D9C8;
}

.checkout-button {
    display: block;
    width: 100%;
    background: var(--terra);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.checkout-button:hover {
    background: var(--umber);
}

/* Breadcrumbs */
.woocommerce-breadcrumb,
.breadcrumbs {
    padding: 12px 0;
    margin-bottom: 24px;
    font-size: 12px;
    border-bottom: 1px solid #E8D9C8;
}

.woocommerce-breadcrumb a,
.breadcrumbs a {
    color: #8C7260;
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover,
.breadcrumbs a:hover {
    color: var(--terra);
}

.woocommerce-breadcrumb .current,
.breadcrumbs .current {
    color: var(--terra);
    font-weight: 500;
    background: rgba(193, 103, 74, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Tablet & Desktop Responsive Fixes */
@media (max-width: 992px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .frag-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .story {
        grid-template-columns: 1fr;
    }
    
    .frag-grid {
        grid-template-columns: 1fr;
    }
    
    .howto-steps {
        grid-template-columns: 1fr;
    }
    
    .testi-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-row {
        grid-template-columns: 1fr !important;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-layout {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .trust-bar {
        grid-template-columns: 1fr;
    }
}





/* PREMIUM HERO SECTION */
.premium-hero {
    position: relative;
    background: url('https://demo.kiyanshinnovations.com/wp-content/uploads/2026/05/ChatGPT-Image-May-8-2026-10_28_01-AM.png') center top/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 32px;
    background-color: var(--umber);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    background: rgba(193, 103, 74, 0.9);
    display: inline-block;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 400;
    color: #FEFCF8;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--terra);
    color: #fff;
    border: 1px solid var(--terra);
}
.btn-primary:hover {
    background: transparent;
    color: var(--terra);
    border-color: var(--terra);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.btn-secondary:hover {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .premium-hero {
        min-height: 70vh;
        padding: 60px 20px;
        background-position: 70% top;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero-tagline {
        font-size: 20px;
    }
    .hero-desc {
        font-size: 14px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
}


/* ========== MOBILE BOTTOM NAVIGATION - PREMIUM (DARK + WHITE ICONS) ========== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2218;
    backdrop-filter: blur(25px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 20px 22px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(232, 217, 200, 0.6);
    z-index: 999;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    flex: 1;
    padding: 8px 0 6px;
    border-radius: 40px;
    letter-spacing: 0.3px;
}

.bottom-nav-item .nav-icon {
    font-size: 24px;
    transition: all 0.25s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.bottom-nav-item .nav-label {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.85;
}

/* Hover Effect */
.bottom-nav-item:hover {
    color: #E8A98A;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

/* Active Page - Premium Glow */
.bottom-nav-item.active {
    color: #E8A98A;
    background: linear-gradient(135deg, rgba(232, 169, 138, 0.15), rgba(193, 103, 74, 0.1));
}

.bottom-nav-item.active .nav-icon {
    transform: translateY(-4px);
    filter: drop-shadow(0 4px 8px rgba(232, 169, 138, 0.4));
}

.bottom-nav-item.active .nav-label {
    opacity: 1;
    font-weight: 600;
}

/* Cart Badge with Pulse */
.cart-nav {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: 18%;
    background: #E8A98A;
    color: #2d2218;
    font-size: 9px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 0 0 2px #2d2218, 0 2px 8px rgba(0,0,0,0.2);
    animation: pulse-gentle 1.8s infinite;
}

@keyframes pulse-gentle {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* Desktop Hidden */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* Mobile Bottom Nav Only */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 75px;
    }
}

@media (max-width: 480px) {
    .mobile-bottom-nav {
        padding: 6px 12px 18px;
    }
    
    .bottom-nav-item .nav-icon {
        font-size: 22px;
    }
    
    .bottom-nav-item .nav-label {
        font-size: 9px;
    }
    
    .cart-badge {
        top: -7px;
        right: 15%;
        min-width: 16px;
        height: 16px;
        font-size: 8px;
    }
}


/* Footer Logo Styling */
.footer-brand img {
    max-height: 45px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .footer-brand {
        align-items: center;
    }
    .footer-brand img {
        margin: 0 auto 12px;
    }
}
