/* assets/css/main.css - Global Overrides */
:root {
    --primary: #d48a6a;
    --primary-dark: #b56e4f;
    --secondary: #4a2c2a;
    --accent: #f3e5d8;
    --bg-light: #fffaf5;
    --text-main: #2d2d2d;
    --text-muted: #666;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Force override any bootstrap blue icons/text */
.text-primary, .btn-primary, .btn-primary i, .fa-primary, .primary-color {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

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

/* ========================================================
   PAGE LOADER
======================================================== */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fdf6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    opacity: 1;
    visibility: visible;
}

#page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.loader-logo-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    animation: loaderLogoPulse 2s ease-in-out infinite;
}

.loader-glow {
    position: absolute;
    inset: -10px;
    border-radius: 28px;
    background: radial-gradient(circle, rgba(212, 138, 106, 0.25) 0%, transparent 70%);
    animation: loaderGlowPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes loaderLogoPulse {
    0%, 100% { transform: scale(1);    opacity: 1;    }
    50%       { transform: scale(1.06); opacity: 0.9;  }
}

@keyframes loaderGlowPulse {
    0%, 100% { transform: scale(1);    opacity: 0.6; }
    50%       { transform: scale(1.15); opacity: 1;   }
}

.loader-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a2c2a;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.loader-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #d48a6a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.loader-bar-wrap {
    width: 120px;
    height: 3px;
    background: rgba(212, 138, 106, 0.15);
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, #d48a6a, #b56e4f, #d48a6a);
    background-size: 200% 100%;
    animation: loaderBarShimmer 1.4s linear infinite;
    width: 100%;
}

@keyframes loaderBarShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* ============ STICKY NAVBAR — Desktop only ============ */
@media (min-width: 993px) {
    header.main-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1100;
        padding: 0.6rem 4%;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        transition: background 0.35s ease, box-shadow 0.35s ease,
                    backdrop-filter 0.35s ease, top 0.35s ease, padding 0.3s ease;
    }

    header.main-header.scrolled {
        background: rgba(255, 252, 249, 0.92);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 4px 24px rgba(74, 44, 42, 0.08);
        padding: 0.4rem 4%;
    }

    body.page-inner header.main-header {
        background: rgba(255, 252, 249, 0.95);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 4px 24px rgba(74, 44, 42, 0.08);
    }
}

/* ============ MOBILE — hide top header entirely ============ */
@media (max-width: 992px) {
    header.main-header {
        display: none !important;
    }

    /* Notice bar scrolls naturally */
    .top-notice-bar {
        position: relative !important;
        top: auto !important;
    }
}

.navbar-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

header.main-header.scrolled .logo img {
    height: 52px;
}

/* Nav links adapt to transparent vs glass background */
.nav-menu a {
    color: var(--secondary);
}

/* On homepage, before scroll, nav links are dark (over light hero content) */
body:not(.page-inner) header.main-header:not(.scrolled) .nav-menu a {
    color: var(--secondary);
}

body:not(.page-inner) header.main-header:not(.scrolled) .cart-icon-wrapper {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon-wrapper {
    position: relative;
    text-decoration: none;
    color: var(--secondary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Logout icon button — desktop header, next to cart */
.nav-logout-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.08);
    color: #c0544a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

.nav-logout-icon:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #b91c1c;
    transform: scale(1.1);
}

/* Tooltip on hover */
.nav-logout-icon::after {
    content: 'Sign Out';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.nav-logout-icon:hover::after {
    opacity: 1;
}


/* Hero Section */
.top-visual-banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.banner-inner {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.8;
}

/* Position header over banner */
.site-header {
    position: absolute;
    top: 35px; /* Notice Bar height */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.main-navbar {
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.main-navbar .nav-link, .main-navbar .navbar-brand {
    color: white !important;
}

.scrolled .main-navbar {
    background: var(--glass) !important;
    backdrop-filter: blur(12px);
    border-bottom: none;
    box-shadow: var(--shadow-soft);
}

.scrolled .main-navbar .nav-link, .scrolled .main-navbar .navbar-brand {
    color: var(--secondary) !important;
}

@media (max-width: 992px) {
    .top-visual-banner { height: 100vh; }
}

/* --- Top Notification Bar --- */
.top-notice-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: var(--secondary);
    color: var(--accent);
    z-index: 2000;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.notice-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    gap: 40px;
}

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

.notice-item {
    display: inline-block;
    padding-right: 20px;
}

/* --- Hero & Top Layout --- */
.top-visual-banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Banner inner fill */
.banner-inner {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.82;
}

@media (max-width: 992px) {
    .top-visual-banner { height: 100vh; }
}

.hero-wrap {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../../img/hero-bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 15px;
    text-align: center;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary);
    background: rgba(212, 138, 106, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin: 0 auto 1.5rem;
    opacity: 0;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    opacity: 0;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 0 auto 3rem;
    max-width: 650px;
    line-height: 1.8;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
}

/* Buttons */
.btn-primary-custom {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(212, 138, 106, 0.3);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 138, 106, 0.4);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: var(--secondary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--secondary);
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* Section Styling */
.section-padding {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .subtitle {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.section-header .title {
    font-size: 2.8rem;
    color: var(--secondary);
}

/* Category Filter */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.8rem;
    background: white;
    border: 1px solid #eee;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(212, 138, 106, 0.2);
}

/* Product Cards */
.product-card-wrap {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f8f1eb;
}

.product-card-wrap:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.product-img-box {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-wrap:hover .product-img-box img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-cat {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.product-name-link {
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
}

.product-name-link:hover {
    color: var(--primary);
}

.product-name {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.product-price-box {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

.add-to-cart-btn {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.add-to-cart-btn:hover {
    background: var(--primary);
    color: white;
}

/* Footer Control */
.site-footer {
    background: var(--secondary);
    color: white;
    padding: 5rem 5% 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-bg {
        width: 100%;
        right: 0;
        opacity: 0.3;
        border-radius: 0;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-left: 0;
        margin: 0 auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .section-padding {
        padding: 5rem 0;
    }
}

/* ============ MOBILE BOTTOM NAV ============ */

/* Hidden on desktop */
.mobile-bottom-nav {
    display: none;
}

/* App-grade fixed bottom navigation — mobile only */
@media (max-width: 992px) {

    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
    }

    /* Full-width, pinned to bottom — uses vw to avoid horizontal scroll issues */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        height: calc(70px + env(safe-area-inset-bottom, 0px));
        padding-bottom: env(safe-area-inset-bottom, 0px);
        padding-left: 4px;
        padding-right: 4px;
        background: rgba(255, 251, 248, 0.97);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border-top: 1px solid rgba(74, 44, 42, 0.08);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
        z-index: 9999;
        justify-content: space-around;
        align-items: center;
        /* Ensure it's not cut off by overflow:hidden on ancestors */
        transform: translateZ(0);
    }

    .bottom-nav-item {
        flex: 1;
        min-width: 0;
        padding: 0;
    }
}

.bottom-nav-item {
    text-decoration: none;
    color: rgba(74, 44, 42, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s var(--ease);
    position: relative;
}

.bottom-nav-item i {
    font-size: 1.15rem;
    transition: transform 0.3s var(--ease);
}

.bottom-nav-item span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item.active i {
    transform: translateY(-2px);
}

.bottom-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.bottom-nav-item .badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--primary);
    color: white;
    font-size: 0.6rem;
    padding: 3px 6px;
    border-radius: 50%;
    font-weight: 800;
}

/* Offcanvas Styling */
.offcanvas {
    background: var(--bg-light);
    border-left: none;
}

.offcanvas-header {
    padding: 1.5rem;
}

.offcanvas-body {
    padding: 2rem 1.5rem;
}

.offcanvas-body .nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.offcanvas-body .nav-link:hover, .offcanvas-body .nav-link.active {
    color: var(--primary);
    padding-left: 10px;
}

/* Top Notification Marquee — duplicate removed, defined above */

.notice-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    gap: 3rem;
}

.notice-marquee:hover {
    animation-play-state: paused;
}

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

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

/* Modern Bento Gallery Layout */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.insta-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insta-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.insta-item:nth-child(3) { grid-column: span 1; grid-row: span 2; }

.insta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(212, 138, 106, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: 0.4s ease;
}

.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; }

@media (max-width: 992px) {
    .instagram-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 200px;
    }
    .insta-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
    .instagram-grid { gap: 10px; }
}


/* ============ NOTICE BAR + STICKY HEADER OFFSETS — Desktop only ============ */
@media (min-width: 993px) {
    /* Notice bar pushes header down */
    body.has-notice header.main-header {
        top: 35px;
    }

    /* Inner pages — body has no extra padding; page-hero clears the fixed header via CSS */
    body.page-inner {
        padding-top: 0;
    }
}

/* =====================================================
   PREMIUM PUBLIC PAGE ENHANCEMENTS
===================================================== */

/* Improved Page Hero Banner — always clears the fixed navbar */
.page-hero {
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf6f0 0%, #f9ece2 50%, #f3e5d8 100%);
}

/* Desktop: add top padding to clear the fixed header */
@media (min-width: 993px) {
    .page-hero {
        padding-top: calc(80px + 4rem);
    }

    body.has-notice .page-hero {
        padding-top: calc(115px + 4rem);
    }
}

/* Mobile: no header to clear, just normal top padding */
@media (max-width: 992px) {
    .page-hero {
        padding-top: 3rem;
    }

    body.has-notice .page-hero {
        padding-top: 3rem;
    }

    body.page-inner {
        padding-top: 0;
    }
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,138,106,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(74,44,42,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero .page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,138,106,0.12);
    color: var(--primary-dark);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212,138,106,0.2);
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.page-hero .page-desc {
    font-size: 1.05rem;
    color: #7a6355;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 2.2rem; }
    .page-hero { padding: 5rem 0 3rem; }
}

/* Feature Highlight Pills */
.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #f0e8e0;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.feature-pill i { color: var(--primary); }
.feature-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); border-color: var(--primary); }

/* Premium Feature Box */
.feature-box-premium {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid #f0ebe5;
    box-shadow: 0 6px 30px rgba(0,0,0,0.04);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box-premium::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #e8a882);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-box-premium:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.10); }
.feature-box-premium:hover::before { transform: scaleX(1); }

.feature-box-premium .feat-icon {
    width: 64px; height: 64px;
    border-radius: 20px;
    background: rgba(212,138,106,0.1);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-box-premium:hover .feat-icon {
    background: var(--primary);
    color: white;
    transform: rotate(-8deg) scale(1.1);
}

.feature-box-premium h4 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.feature-box-premium p {
    font-size: 0.875rem;
    color: #7a7a7a;
    line-height: 1.7;
    margin: 0;
}

/* Process Steps */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-num {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(212,138,106,0.3);
}

.step-content h5 { font-size: 1rem; color: var(--secondary); margin-bottom: 0.4rem; }
.step-content p { font-size: 0.875rem; color: #7a7a7a; margin: 0; line-height: 1.6; }

/* Value Highlights */
.value-strip {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a1a18 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.value-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d48a6a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.value-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.value-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Testimonial Card Upgrade */
.testimonial-card-v2 {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 6px 30px rgba(0,0,0,0.05);
    border: 1px solid #f5ede6;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

.testimonial-card-v2 .author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-card-v2 .review-text {
    font-size: 0.92rem;
    color: #555;
    font-style: italic;
    line-height: 1.8;
    flex: 1;
    padding: 1rem 0;
    position: relative;
}

.testimonial-card-v2 .review-text::before {
    content: '"';
    position: absolute;
    top: -10px; left: -5px;
    font-size: 5rem;
    color: rgba(212,138,106,0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    pointer-events: none;
}

/* FAQ Accordion */
.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid #f0e9e2;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--primary); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    user-select: none;
}

.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta-section h2 {
    color: white;
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

.btn-white-custom {
    background: white;
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-white-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.5);
    display: inline-block;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
    transform: translateY(-3px);
}

/* About Page Specifics */
.timeline-v2 {
    position: relative;
    padding-left: 3rem;
}

.timeline-v2::before {
    content: '';
    position: absolute;
    left: 18px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 8px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(212,138,106,0.2);
}

.timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.timeline-title {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-size: 0.875rem;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* Product page filter sidebar upgrade */
.filter-sidebar-v2 {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid #f0ebe5;
    box-shadow: 0 6px 30px rgba(0,0,0,0.04);
    position: sticky;
    top: 100px;
}

.filter-sidebar-v2 h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    margin-bottom: 1rem;
}

.filter-cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 4px;
}

.filter-cat-btn:hover { background: #faf5f0; color: var(--primary); }
.filter-cat-btn.active { background: rgba(212,138,106,0.1); color: var(--primary); font-weight: 700; }

/* ========================================================
   PREMIUM FILTER SIDEBAR — Products Page
======================================================== */
.filter-sidebar-premium {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #f0ebe5;
    box-shadow: 0 6px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    position: sticky;
    top: 110px;
}

/* --- Header --- */
.fsb-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, #4a2c2a 0%, #6b3a35 100%);
    position: relative;
    overflow: hidden;
}

.fsb-header::after {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.fsb-header-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(212,138,106,0.25);
    color: #f0b99a;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.fsb-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.fsb-header-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 2px;
}

/* --- Sections --- */
.fsb-section {
    padding: 1rem 1.25rem;
}

.fsb-section-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c0b0a8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fsb-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #f0e8e2, transparent);
    margin: 0 1.25rem;
}

/* --- Category Buttons --- */
.fsb-cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: none;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: all 0.22s ease;
    margin-bottom: 3px;
}

.fsb-cat-icon {
    width: 30px; height: 30px;
    border-radius: 9px;
    background: #f5efe9;
    color: #c0a090;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.22s ease;
}

.fsb-cat-name {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #555;
    transition: color 0.22s ease;
}

.fsb-cat-count {
    font-size: 0.7rem;
    font-weight: 700;
    background: #f0ebe5;
    color: #a08070;
    padding: 2px 8px;
    border-radius: 50px;
    min-width: 24px;
    text-align: center;
    transition: all 0.22s ease;
}

.fsb-cat-btn:hover {
    background: #fdf7f3;
}

.fsb-cat-btn:hover .fsb-cat-name { color: var(--primary); }
.fsb-cat-btn:hover .fsb-cat-icon { background: rgba(212,138,106,0.15); color: var(--primary); }

.fsb-cat-btn.active {
    background: rgba(212,138,106,0.1);
}

.fsb-cat-btn.active .fsb-cat-name { color: var(--primary-dark); font-weight: 700; }
.fsb-cat-btn.active .fsb-cat-icon { background: var(--primary); color: #fff; }
.fsb-cat-btn.active .fsb-cat-count { background: var(--primary); color: #fff; }

/* --- Search --- */
.fsb-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.fsb-search-input {
    width: 100%;
    padding: 0.65rem 2.5rem 0.65rem 1rem;
    border: 1.5px solid #ede5df;
    border-radius: 12px;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    color: #4a2c2a;
    background: #fdf9f6;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fsb-search-input::placeholder { color: #c0b0a8; }
.fsb-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212,138,106,0.12);
    background: #fff;
}

.fsb-search-clear {
    position: absolute;
    right: 10px;
    color: #c0a080;
    font-size: 0.8rem;
    cursor: pointer;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.fsb-search-clear:hover { background: #f0ebe5; color: var(--primary-dark); }

/* --- CTA Card --- */
.fsb-cta-card {
    margin: 0 1.25rem 1.25rem;
    padding: 1.4rem 1.25rem;
    background: linear-gradient(135deg, #fdf0e8 0%, #fae8d8 100%);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(212,138,106,0.2);
}

.fsb-cta-icon {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
    line-height: 1;
}

.fsb-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #4a2c2a;
    margin-bottom: 0.4rem;
}

.fsb-cta-text {
    font-size: 0.78rem;
    color: #8a6555;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.fsb-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(212,138,106,0.3);
}

.fsb-cta-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,138,106,0.4);
}

/* Mobile: sidebar collapses to chip row */
@media (max-width: 992px) {
    .filter-sidebar-premium {
        position: static;
        border-radius: 18px;
    }

    .fsb-header { padding: 1.1rem 1.25rem; }
    .fsb-cta-card { margin: 0 1rem 1rem; }
}


.filter-cat-btn .cat-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ddd;
    flex-shrink: 0;
    transition: var(--transition);
}

.filter-cat-btn.active .cat-dot,
.filter-cat-btn:hover .cat-dot { background: var(--primary); }

/* Search input inside sidebar */
.search-input-v2 {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    border: 1.5px solid #eee;
    border-radius: 12px;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    transition: var(--transition);
}

.search-input-v2:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(212,138,106,0.1);
}

.search-wrap-v2 {
    position: relative;
}

.search-wrap-v2 i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 0.85rem;
}

/* Product count badge */
.product-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #f0ebe5;
    color: #888;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: auto;
}

.filter-cat-btn.active .product-count-badge {
    background: var(--primary);
    color: white;
}

/* Results bar */
.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0ebe5;
}

.results-count {
    font-size: 0.875rem;
    color: #888;
}

.results-count strong { color: var(--secondary); }

/* Contact Form Style Upgrades */
.contact-info-v2 {
    background: linear-gradient(135deg, var(--secondary) 0%, #3d2220 100%);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info-v2::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(212,138,106,0.1);
    border-radius: 50%;
}

.contact-info-v2 h3 { color: white; font-size: 1.6rem; margin-bottom: 0.5rem; }
.contact-info-v2 .c-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 2.5rem; }

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-icon-wrap {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(212,138,106,0.2);
    color: #e8a882;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 3px;
}

.contact-detail-val {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.contact-social-v2 a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-right: 8px;
}

.contact-social-v2 a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid #f0ebe5;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-form-card .form-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212,138,106,0.12);
}

/* Section divider ornament */
.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.ornament-line {
    height: 1.5px;
    width: 50px;
    background: linear-gradient(90deg, transparent, var(--primary));
}

.ornament-line.right {
    background: linear-gradient(90deg, var(--primary), transparent);
}

.ornament-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(212,138,106,0.12);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #aaa;
    justify-content: center;
    margin-top: 1rem;
}

.page-breadcrumb a { color: var(--primary); text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-breadcrumb .sep { color: #ccc; }

/* =====================================================
   NAVBAR PREMIUM COMPONENTS
===================================================== */

/* Order Now pill button */
.nav-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white !important;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(212, 138, 106, 0.35);
    white-space: nowrap;
}

.nav-order-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 138, 106, 0.45);
    color: white !important;
}

/* Keep it visible on transparent (pre-scroll) header */
header.main-header:not(.scrolled) .nav-order-btn {
    background: rgba(212, 138, 106, 0.92);
}

/* Animated Hamburger Button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(74, 44, 42, 0.07);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.hamburger-btn:hover {
    background: rgba(212, 138, 106, 0.15);
}

.hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.hamburger-btn span:nth-child(2) {
    width: 13px;
    align-self: flex-start;
    margin-left: 3px; /* slight indent to create a layered effect */
}

/* Mobile Offcanvas Upgrade */
.offcanvas {
    background: var(--bg-light);
    border-left: none;
    max-width: 300px;
}

.offcanvas-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0ebe5 !important;
}

.offcanvas-body {
    padding: 1.5rem;
}

/* Mobile nav links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-links .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.mobile-nav-links .nav-link::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
    background: rgba(212, 138, 106, 0.1);
    color: var(--primary);
    padding-left: 1.25rem;
}

.mobile-nav-links .nav-link:hover::before,
.mobile-nav-links .nav-link.active::before {
    background: var(--primary);
}

/* Mobile Order Now button in offcanvas */
.mobile-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.9rem 1.5rem;
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    box-shadow: 0 6px 20px rgba(212, 138, 106, 0.35);
}

.mobile-order-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

/* Mobile social links */
.mobile-social-links {
    display: flex;
    gap: 10px;
}

.mobile-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(74, 44, 42, 0.07);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-social-links a:hover {
    background: var(--primary);
    color: white;
}

/* Navbar height consistency — ensures content never jumps */
.navbar-custom {
    min-height: 56px;
}

/* Cart badge pulse on item add */
@keyframes badgePulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.cart-count-badge.pulse {
    animation: badgePulse 0.4s ease;
}

/* Header transition border bottom */
header.main-header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,138,106,0.2), transparent);
}

/* ========================================================
   COMPREHENSIVE MOBILE SPACING SYSTEM
   Applies to all screen sizes ≤ 768px
======================================================== */
@media (max-width: 768px) {

    /* ── Global Container padding ── */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* ── Section vertical rhythm ── */
    .section-padding {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header .title {
        font-size: 2rem;
        line-height: 1.25;
    }

    /* ── Hero section ── */
    .hero-wrap {
        min-height: auto;
        height: auto;
        padding: 3.5rem 0 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-btns a {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-pills {
        gap: 0.5rem !important;
        margin-top: 2rem !important;
    }

    .feature-pill {
        font-size: 0.78rem;
        padding: 7px 14px;
    }

    /* ── Hero Banner Slider ── */
    .top-visual-banner {
        height: 60vw;
        min-height: 220px;
        max-height: 320px;
    }

    /* ── Value Strip ── */
    .value-strip .value-item {
        padding: 1rem 0.5rem;
    }

    .value-strip .value-num {
        font-size: 1.75rem;
    }

    .value-strip .value-label {
        font-size: 0.7rem;
    }

    /* ── Product Cards ── */
    .product-img-box {
        height: 200px;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .price-tag {
        font-size: 1.05rem;
    }

    /* ── Feature Boxes ── */
    .feature-box-premium {
        padding: 1.75rem 1.25rem;
    }

    .feature-box-premium h4 {
        font-size: 1.1rem;
    }

    .feature-box-premium p {
        font-size: 0.875rem;
    }

    /* ── How it Works section ── */
    .timeline-v2 {
        padding-left: 1.25rem !important;
    }

    /* ── Story Parallax ── */
    section[style*="background-attachment:fixed"],
    section[style*="background:linear-gradient(rgba(0,0,0"] {
        background-attachment: scroll !important;
        padding: 3.5rem 0;
    }

    section[style*="background:linear-gradient(rgba(0,0,0"] h2 {
        font-size: 2rem !important;
    }

    section[style*="background:linear-gradient(rgba(0,0,0"] p.lead {
        font-size: 0.9rem;
    }

    /* ── CTA Section ── */
    .cta-section {
        padding: 3.5rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.85rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .cta-section .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .cta-section .btn-white-custom,
    .cta-section .btn-outline-white {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* ── FAQ ── */
    .faq-item {
        padding: 1rem 1.1rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    /* ── Testimonials ── */
    .testimonial-card-v2 {
        padding: 1.5rem 1.25rem;
    }

    /* ── Page Hero (inner pages) ── */
    .page-hero h1 {
        font-size: 1.9rem;
    }

    .page-hero .page-desc {
        font-size: 0.9rem;
    }

    /* ── Filter Buttons ── */
    .filter-container {
        gap: 0.6rem;
        margin-bottom: 1.75rem;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    /* ── Gallery Grid ── */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }

    .insta-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* ── Footer ── */
    .site-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-top {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }

    /* ── Buttons ── */
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.85rem 1.75rem;
        font-size: 0.875rem;
    }

    /* ── Card spacing ── */
    .row.g-4 {
        --bs-gutter-y: 1.25rem;
        --bs-gutter-x: 1rem;
    }

    /* ── Toast position (above bottom nav) ── */
    #jp-toast {
        bottom: 90px !important;
    }
}

/* ========================================================
   TABLET SPACING (768px – 992px)
   Fills the gap between mobile and desktop
======================================================== */
@media (min-width: 769px) and (max-width: 992px) {

    .section-padding { padding: 5rem 0; }

    .hero-title { font-size: 3.2rem; }

    .top-visual-banner {
        height: 55vw;
        max-height: 480px;
    }

    .value-strip { padding: 2.5rem 0; }

    .product-img-box { height: 240px; }

    .section-header .title { font-size: 2.4rem; }

    .page-hero h1 { font-size: 2.8rem; }
}

/* ========================================================
   INNER PAGE MOBILE FIXES
   Products, Cart, About, Contact pages
======================================================== */
@media (max-width: 992px) {

    /* Products page — filter sidebar becomes horizontal scroll row */
    .filter-sidebar-v2 {
        position: static !important;
        top: auto !important;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 1rem;
        margin-bottom: 1.25rem;
        border-radius: 14px;
    }

    .filter-sidebar-v2 h5 {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .filter-cat-btn {
        flex: 0 0 auto;
        width: auto;
        padding: 0.45rem 1rem;
        border-radius: 50px;
        font-size: 0.8rem;
        border: 1px solid #f0ebe5;
    }

    /* Value strip — tighten on tablet */
    .value-strip {
        padding: 2rem 0;
    }

    .value-num { font-size: 2.2rem; }
    .value-label { font-size: 0.72rem; }

    /* Cart and checkout — full width on mobile */
    .cart-page-wrapper,
    .checkout-wrapper {
        padding: 1rem;
    }

    /* Section ornament — tighten */
    .section-ornament {
        margin-bottom: 0.75rem;
    }

    /* Contact and form pages */
    .contact-form-wrap {
        padding: 1.5rem 1.25rem;
    }

    /* About page timeline */
    .timeline-v2 {
        padding-left: 2rem;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }

    /* CTA buttons stack properly */
    .cta-section .d-flex.gap-3 {
        gap: 0.75rem !important;
    }
}
