/* ==========================================================================
   AURA SEBERANG - RASA • TRADISI • NUSANTARA
   Master Design System & Mobile App Stylesheet
   ========================================================================== */

:root {
    --dark-espresso: #231812;
    --darker-espresso: #1A110B;
    --accent-brown: #3F2B20;
    --warm-brown: #5C4033;
    
    --gold-primary: #C5A059;
    --gold-light: #DFCA9E;
    --gold-dark: #A4813D;
    
    --bg-page: #FDFBF8;
    --bg-warm-card: #FAF6F0;
    --bg-cream: #F5EFEB;
    --bg-white: #FFFFFF;
    
    --text-primary: #2B2118;
    --text-secondary: #63574D;
    --text-muted: #8E8276;
    --text-light: #DDD3C7;
    
    --border-warm: #EBE3D7;
    --border-light: #F2ECE1;
    --border-dark: #3A2A20;
    
    --badge-red: #8B1E10;
    --badge-hot: #C0392B;
    --badge-green: #27AE60;
    --star-gold: #F39C12;
    --whatsapp-green: #25D366;
    
    --shadow-sm: 0 2px 6px rgba(35, 24, 18, 0.04);
    --shadow-md: 0 6px 16px rgba(35, 24, 18, 0.07);
    --shadow-lg: 0 12px 28px rgba(35, 24, 18, 0.12);
    --shadow-glow: 0 4px 15px rgba(197, 160, 89, 0.3);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-pill: 9999px;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-brand: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-ui: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --bottom-nav-height: 64px;
}

/* Base Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font-ui);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.drawer-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
    background-color: var(--darker-espresso);
    color: var(--text-light);
    font-size: 0.78rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    font-size: 0.85rem;
    color: var(--gold-primary);
}

.top-bar-item .flag-icon {
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.top-bar-item strong {
    color: #FFFFFF;
    font-weight: 700;
}

/* ==========================================================================
   2. MAIN HEADER (DESKTOP)
   ========================================================================== */
.main-header {
    background: var(--bg-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-warm);
    position: relative;
    z-index: 100;
}

.main-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Brand Logo */
.logo-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--dark-espresso);
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 3.5px;
    color: var(--dark-espresso);
    margin-top: -3px;
}

.logo-tagline {
    font-size: 0.58rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Search Bar */
.search-container {
    flex: 1;
    max-width: 500px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form input {
    width: 100%;
    padding: 10px 48px 10px 22px;
    background: #F6F3EE;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    color: var(--text-primary);
    outline: none;
    transition: all 0.25s ease;
}

.search-form input::placeholder {
    color: #9C9286;
    font-size: 0.82rem;
}

.search-form input:focus {
    background: #FFFFFF;
    border-color: var(--dark-espresso);
    box-shadow: 0 0 0 3px rgba(35, 24, 18, 0.08);
}

.search-form button {
    position: absolute;
    right: 4px;
    width: 34px;
    height: 34px;
    background: var(--dark-espresso);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.search-form button:hover {
    background: var(--accent-brown);
    transform: scale(1.04);
}

/* Header Action Icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-primary);
    gap: 3px;
    position: relative;
    cursor: pointer;
}

.header-action-item:hover {
    color: var(--gold-dark);
}

.action-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-icon-wrapper i,
.header-action-item i {
    font-size: 1.25rem;
    color: var(--dark-espresso);
}

.badge-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--dark-espresso);
    color: #FFFFFF;
    font-size: 0.62rem;
    font-weight: 800;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
}

.badge-bounce {
    animation: badgeBounce 0.4s ease;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.35); }
}

/* ==========================================================================
   3. CATEGORY NAVIGATION (DESKTOP)
   ========================================================================== */
.category-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-warm);
    padding: 10px 0;
}

.category-nav-container {
    display: flex;
    align-items: center;
    gap: 28px;
}

.btn-kategori {
    background: var(--dark-espresso);
    color: #FFFFFF;
    border: none;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-kategori:hover {
    background: var(--accent-brown);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark-espresso);
    padding: 4px 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold-dark);
}

.nav-links a.promo-link {
    color: #C0392B;
}

/* Mobile Header (Hidden on Desktop) */
.mobile-app-header {
    display: none;
}

/* ==========================================================================
   4. HERO BANNER SECTION (BACKGROUND IMAGE SLIDER)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    height: 480px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35,24,18,0.85) 0%, rgba(35,24,18,0.5) 50%, rgba(35,24,18,0.15) 100%);
    z-index: 1;
}

.hero-slider-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slider-content {
    max-width: 600px;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.flag-pair {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 6px;
    vertical-align: middle;
}

.hero-flag-img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 24px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-primary);
    color: #FFFFFF;
    padding: 13px 30px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(197,160,89,0.4);
    transition: all 0.25s ease;
}

.btn-hero-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197,160,89,0.5);
}

.hero-check-badges {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.check-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.check-item i {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

/* Hero Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #FFFFFF;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-left { left: 20px; }
.hero-arrow-right { right: 20px; }

/* Hero Dots */
.hero-dots-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dot {
    width: 28px;
    height: 4px;
    background: rgba(255,255,255,0.35);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--gold-primary);
    width: 40px;
}

/* ==========================================================================
   5. POPULAR CATEGORIES (8 CIRCLES)
   ========================================================================== */
.section-popular-categories {
    margin-bottom: 45px;
}

.section-title-centered {
    text-align: center;
    position: relative;
    margin-bottom: 24px;
}

.section-title-centered .title-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--dark-espresso);
    text-transform: uppercase;
}

.title-diamond-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}

.title-diamond-divider .line {
    width: 40px;
    height: 1px;
    background: #D9CFC4;
}

.title-diamond-divider .diamond {
    color: var(--gold-primary);
    font-size: 0.75rem;
}

.section-title-centered .link-view-all {
    position: absolute;
    right: 0;
    top: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.section-title-centered .link-view-all:hover {
    color: var(--dark-espresso);
}

.categories-circle-tray {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.category-circle-item:hover {
    transform: translateY(-4px);
}

.circle-avatar-box {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    background: #FAF7F2;
    border: 2px solid var(--border-warm);
    box-shadow: 0 3px 8px rgba(35, 24, 18, 0.05);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-circle-item:hover .circle-avatar-box {
    border-color: var(--gold-primary);
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.3);
    transform: scale(1.05);
}

.circle-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

.cat-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--dark-espresso);
    line-height: 1.2;
}

/* ==========================================================================
   6. PRODUCT SHOWCASE & CARDS (MATCH MOCKUP)
   ========================================================================== */
.section-product-showcase {
    margin-bottom: 45px;
}

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

.title-text-serif {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--dark-espresso);
    text-transform: uppercase;
}

.link-view-all {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.link-view-all:hover {
    color: var(--dark-espresso);
}

.products-grid-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.product-item-card {
    background: var(--bg-white);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(35, 24, 18, 0.03);
}

.product-item-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #D8C7B5;
    transform: translateY(-2px);
}

.product-tag-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    color: #FFFFFF;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 2px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-tag-badge.best-badge {
    background: var(--badge-red);
}

.product-tag-badge.hot-badge {
    background: var(--badge-hot);
}

.product-image-container {
    width: 100%;
    height: 110px;
    background: #FAF7F2;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.3s ease;
}

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

.product-details-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-item-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark-espresso);
    line-height: 1.25;
    height: 2.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 2px;
}

.product-item-brand {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.product-item-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.72rem;
    margin-bottom: 8px;
}

.star-filled {
    color: var(--star-gold);
    font-size: 0.7rem;
}

.rating-num {
    font-weight: 700;
    color: var(--text-primary);
}

.reviews-count {
    color: var(--text-muted);
    font-size: 0.68rem;
}

.product-item-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark-espresso);
    margin-top: auto;
    margin-bottom: 10px;
}

.price-before-rating {
    margin-top: 2px;
    margin-bottom: 4px;
}

.product-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-add-cart {
    flex: 1;
}

.btn-action-cart {
    width: 100%;
    background: var(--dark-espresso);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-sm);
    padding: 7px 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.btn-action-cart:hover {
    background: var(--accent-brown);
}

.btn-action-cart.btn-success-flash {
    background: var(--badge-green) !important;
}

.btn-action-wishlist {
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.btn-action-wishlist:hover,
.btn-action-wishlist.active {
    color: #C0392B;
    border-color: #C0392B;
    background: #FDF2F2;
}

/* ==========================================================================
   7. PROMO MINGGU INI BANNER
   ========================================================================== */
.section-promo-week {
    margin-bottom: 45px;
}

.promo-banner-container {
    background: linear-gradient(90deg, #FBF6EE 0%, #F5ECDD 60%, #EFE1CC 100%);
    border: 1px solid #E6D8C5;
    border-radius: var(--radius-md);
    padding: 22px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.promo-content-left {
    z-index: 2;
}

.promo-pretitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--dark-espresso);
    text-transform: uppercase;
}

.promo-headline {
    font-size: 1.15rem;
    color: var(--dark-espresso);
    margin: 4px 0 10px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.promo-percent {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #8B1E10;
    font-weight: 900;
    line-height: 1;
}

.btn-shop-now-cta {
    display: inline-block;
    background: var(--dark-espresso);
    color: #FFFFFF;
    padding: 8px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.btn-shop-now-cta:hover {
    background: var(--accent-brown);
}

.promo-content-right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.promo-badge-circle-red {
    width: 62px;
    height: 62px;
    background: #8B1E10;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 4px 10px rgba(139, 30, 16, 0.3);
}

.promo-pack-photo {
    max-height: 100px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

/* ==========================================================================
   8. 6 TRUST GUARANTEES GRID
   ========================================================================== */
.section-trust-guarantees {
    margin-bottom: 45px;
}

.guarantees-grid-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.guarantee-box-item {
    background: var(--bg-white);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 16px 10px;
    text-align: center;
    transition: all 0.2s ease;
}

.guarantee-box-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.guarantee-box-item .icon-wrap {
    font-size: 1.4rem;
    color: var(--dark-espresso);
    margin-bottom: 6px;
}

.guarantee-heading {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark-espresso);
    margin-bottom: 3px;
    line-height: 1.25;
}

.guarantee-text {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ==========================================================================
   9. TRENDING SLIDER CONTROLS
   ========================================================================== */
.section-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-arrows-box {
    display: flex;
    gap: 6px;
}

.btn-slider-arrow {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-warm);
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--dark-espresso);
    transition: all 0.2s ease;
}

.btn-slider-arrow:hover {
    background: var(--dark-espresso);
    color: #FFFFFF;
}

/* ==========================================================================
   10. TESTIMONIALS & INSTAGRAM
   ========================================================================== */
.section-customer-testimonials {
    margin-bottom: 45px;
}

.section-title-center-serif {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--dark-espresso);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.testimonials-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-item-card {
    background: #FAF7F2;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.testimonial-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.customer-avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-warm);
}

.customer-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-espresso);
}

.customer-stars {
    color: var(--star-gold);
    font-size: 0.7rem;
}

.testimonial-quote {
    font-size: 0.8rem;
    color: var(--text-primary);
    line-height: 1.45;
    margin-bottom: 12px;
    flex: 1;
}

.testimonial-timestamp {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* Instagram Section */
.section-instagram-banner {
    margin-bottom: 45px;
}

.instagram-banner-box {
    background: #FAF6F0;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.insta-profile-block {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 280px;
}

.insta-icon-gradient {
    font-size: 2.4rem;
    color: #E1306C;
}

.insta-info-txt h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-espresso);
}

.insta-handle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-espresso);
}

.insta-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.insta-gallery-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    flex: 1;
}

.insta-photo-card {
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #E8E0D5;
}

.insta-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insta-photo-card:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   11. SITE FOOTER (MATCH MOCKUP)
   ========================================================================== */
.site-footer {
    background: var(--dark-espresso);
    color: var(--text-light);
    padding: 48px 0 20px;
    font-size: 0.8rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 28px;
    margin-bottom: 36px;
}

.footer-brand-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.footer-brand-logo .f-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.footer-brand-logo .f-sub {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 3.5px;
    color: #FFFFFF;
    margin-top: -3px;
}

.footer-brand-logo .f-tag {
    font-size: 0.55rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-top: 3px;
}

.footer-desc {
    font-size: 0.78rem;
    color: #BFB4A6;
    line-height: 1.5;
    margin-bottom: 16px;
}

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

.footer-social-icons a {
    color: #D9D0C5;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.footer-social-icons a:hover {
    color: var(--gold-primary);
}

.footer-col-title {
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #B8ADA0;
    font-size: 0.78rem;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #B8ADA0;
    font-size: 0.78rem;
}

.icon-gold {
    color: var(--gold-primary);
    margin-top: 3px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.74rem;
    color: #9C8E7E;
}

.payment-accept-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-badges {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pay-badge {
    background: #FFFFFF;
    color: #1A110B;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.pay-badge.visa { color: #1A1F71; }
.pay-badge.mastercard { color: #EB001B; }
.pay-badge.fpx { background: #0082C8; color: #FFFFFF; }
.pay-badge.grab { background: #00B14F; color: #FFFFFF; }
.pay-badge.boost { background: #ED1C24; color: #FFFFFF; }

.ssl-secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFFFFF;
    font-weight: 700;
}

.ssl-secure-badge i {
    color: var(--gold-primary);
}

/* ==========================================================================
   12. FLOATING WHATSAPP BUTTON (PULSE ANIMATION)
   ========================================================================== */
.btn-whatsapp-floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--whatsapp-green);
    color: #FFFFFF;
    border-radius: var(--radius-pill);
    padding: 8px 16px 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.25s ease;
}

.btn-whatsapp-floating:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.wa-icon-pulse {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wa-text-pill {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* App Toast Notification */
.app-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--dark-espresso);
    color: #FFFFFF;
    border: 1px solid var(--gold-primary);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 2000;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.app-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
}

.toast-icon {
    color: #2ECC71;
    font-size: 1rem;
}

/* Category Drawer / Offcanvas */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.category-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #FFFFFF;
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.category-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    background: var(--dark-espresso);
    color: #FFFFFF;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 1.5px;
}

.drawer-brand p {
    font-size: 0.7rem;
    color: var(--gold-light);
}

.btn-close-drawer {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #FFFFFF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.drawer-section-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 6px;
}

.drawer-categories-list {
    list-style: none;
    margin-bottom: 20px;
}

.drawer-categories-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 8px;
    border-radius: var(--radius-sm);
    color: var(--dark-espresso);
    font-weight: 700;
    font-size: 0.85rem;
}

.drawer-categories-list li a:hover {
    background: var(--bg-warm-card);
}

.cat-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: #FAF6F0;
    border: 1px solid var(--border-warm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-badge-circle {
    background: #8B1E10;
    color: #FFFFFF;
}

.arrow-icon {
    margin-left: auto;
    font-size: 0.75rem;
    color: #CCC;
}

.drawer-contact-card {
    background: var(--bg-warm-card);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
}

.drawer-contact-row strong {
    color: var(--dark-espresso);
}

.drawer-contact-row p {
    color: var(--text-muted);
}

.mobile-app-bottom-bar {
    display: none;
}

/* ==========================================================================
   13. RESPONSIVE DESIGN & MOBILE APP TRANSFORMATION (< 768px)
   ========================================================================== */
@media (max-width: 1024px) {
    .categories-circle-tray { grid-template-columns: repeat(4, 1fr); }
    .products-grid-layout { grid-template-columns: repeat(3, 1fr); }
    .guarantees-grid-layout { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    body {
        padding-bottom: calc(var(--bottom-nav-height) + 16px);
    }

    /* Hide Desktop-Only Components */
    .top-bar,
    .main-header,
    .category-nav,
    .hero-dots-indicator {
        display: none !important;
    }

    /* MOBILE APP TOP HEADER */
    .mobile-app-header {
        display: block;
        background: #FFFFFF;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(35, 24, 18, 0.06);
        padding: 10px 14px;
        border-bottom: 1px solid var(--border-warm);
    }

    .mobile-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .mobile-menu-btn {
        background: transparent;
        border: none;
        font-size: 1.25rem;
        color: var(--dark-espresso);
        cursor: pointer;
        padding: 4px;
    }

    .mobile-app-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1;
    }

    .mobile-app-logo .m-title {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 900;
        letter-spacing: 1.5px;
        color: var(--dark-espresso);
    }

    .mobile-app-logo .m-sub {
        font-family: var(--font-heading);
        font-size: 0.95rem;
        font-weight: 800;
        letter-spacing: 2.5px;
        color: var(--dark-espresso);
        margin-top: -2px;
    }

    .mobile-app-logo .m-tag {
        font-size: 0.48rem;
        letter-spacing: 1.5px;
        color: var(--gold-dark);
        font-weight: 700;
        margin-top: 2px;
    }

    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .mobile-h-action {
        position: relative;
        font-size: 1.2rem;
        color: var(--dark-espresso);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .m-badge-dot {
        position: absolute;
        top: 0;
        right: -2px;
        width: 8px;
        height: 8px;
        background: #C0392B;
        border-radius: 50%;
        border: 1.5px solid #FFFFFF;
    }

    .m-badge-num {
        position: absolute;
        top: -6px;
        right: -8px;
        background: #C0392B;
        color: #FFFFFF;
        font-size: 0.58rem;
        font-weight: 800;
        min-width: 16px;
        height: 16px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 3px;
        border: 1.5px solid #FFFFFF;
    }

    /* Mobile Search Box */
    .mobile-search-box {
        margin-top: 8px;
    }

    .mobile-search-form {
        position: relative;
        display: flex;
        align-items: center;
    }

    .mobile-search-form .search-icon {
        position: absolute;
        left: 12px;
        font-size: 0.85rem;
        color: #9C9286;
    }

    .mobile-search-form input {
        width: 100%;
        padding: 8px 12px 8px 34px;
        background: #F6F3EE;
        border: 1px solid var(--border-warm);
        border-radius: var(--radius-pill);
        font-size: 0.8rem;
        color: var(--text-primary);
        outline: none;
    }

    .clear-search {
        position: absolute;
        right: 12px;
        color: #999;
        font-size: 0.85rem;
    }

    /* MOBILE APP BOTTOM NAVIGATION BAR (FIXED NATIVE FEEL) */
    .mobile-app-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: var(--bottom-nav-height);
        background: var(--dark-espresso);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(16px);
        justify-content: space-around;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-tab-btn {
        background: transparent;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #B3A495;
        font-size: 0.68rem;
        font-weight: 600;
        gap: 2px;
        flex: 1;
        height: 100%;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .tab-icon-box {
        position: relative;
        font-size: 1.15rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .m-tab-badge {
        position: absolute;
        top: -6px;
        right: -10px;
        background: #C0392B;
        color: #FFFFFF;
        font-size: 0.58rem;
        font-weight: 800;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1.5px solid var(--dark-espresso);
    }

    .mobile-tab-btn.active {
        color: var(--gold-primary);
        font-weight: 800;
    }

    .mobile-tab-btn.active i {
        color: var(--gold-primary);
        transform: translateY(-1px);
    }

    /* Floating WhatsApp on Mobile */
    .btn-whatsapp-floating {
        bottom: calc(var(--bottom-nav-height) + 14px);
        right: 14px;
        padding: 7px 12px;
        font-size: 0.75rem;
    }

    .wa-text-pill {
        display: none; /* Icon only for cleaner mobile UI */
    }

    /* ==========================================
       PREMIUM MOBILE ADD-TO-CART BOTTOM BAR
       ========================================== */
    .mobile-cart-bar-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: linear-gradient(175deg, #2A1D14 0%, #1A110A 100%);
        border-top: 1px solid rgba(184, 142, 74, 0.25);
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45), 0 -1px 0 rgba(184,142,74,0.15);
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        display: flex;
        flex-direction: column;
        gap: 9px;
        transform: translateY(110%);
        transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-cart-bar-wrapper.mcb-visible {
        transform: translateY(0);
    }

    /* Top Row */
    .mcb-top-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mcb-back-btn {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        color: #E0D5C8;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        flex-shrink: 0;
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .mcb-back-btn:active {
        background: rgba(255,255,255,0.18);
    }

    .mcb-price-block {
        flex: 1;
        display: flex;
        align-items: baseline;
        gap: 7px;
        flex-wrap: wrap;
    }

    .mcb-price-label {
        font-size: 0.65rem;
        color: rgba(255,255,255,0.4);
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        flex-basis: 100%;
        margin-bottom: -4px;
        line-height: 1;
    }

    .mcb-price-value {
        font-size: 1.3rem;
        font-weight: 900;
        color: var(--gold-primary);
        line-height: 1;
        font-family: var(--font-heading);
        letter-spacing: -0.5px;
    }

    .mcb-price-ori {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.3);
        text-decoration: line-through;
        font-weight: 500;
    }

    .mcb-action-pills {
        display: flex;
        gap: 6px;
        flex-shrink: 0;
    }

    .mcb-pill-btn {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.12);
        color: #C8B89A;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mcb-pill-btn:active {
        background: rgba(184,142,74,0.25);
        color: var(--gold-primary);
        border-color: rgba(184,142,74,0.4);
    }

    /* Bottom Row */
    .mcb-bottom-row {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    /* Quantity Pill */
    .mcb-qty-pill {
        display: flex;
        align-items: center;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 14px;
        overflow: hidden;
        flex-shrink: 0;
        height: 48px;
    }

    .mcb-qty-btn {
        width: 40px;
        height: 48px;
        border: none;
        background: transparent;
        color: #C8B89A;
        font-size: 0.75rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.15s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mcb-qty-btn:active {
        background: rgba(184,142,74,0.2);
        color: var(--gold-primary);
    }

    .mcb-qty-display {
        min-width: 30px;
        text-align: center;
        font-size: 1rem;
        font-weight: 800;
        color: #FFFFFF;
        display: block;
        line-height: 1;
    }

    @keyframes qtyBounce {
        0%   { transform: scale(1); }
        40%  { transform: scale(1.4); }
        70%  { transform: scale(0.9); }
        100% { transform: scale(1); }
    }

    .mcb-qty-display.qty-bounce {
        animation: qtyBounce 0.32s ease forwards;
    }

    /* CTA Button */
    .mcb-cta-btn {
        flex: 1;
        height: 48px;
        border: none;
        border-radius: 14px;
        background: linear-gradient(135deg, #C9A05A 0%, #B8893A 50%, #9A6E24 100%);
        color: #FFFFFF;
        font-size: 0.92rem;
        font-weight: 800;
        letter-spacing: 0.4px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        -webkit-tap-highlight-color: transparent;
        box-shadow:
            0 4px 20px rgba(184, 142, 74, 0.5),
            0 1px 0 rgba(255,255,255,0.15) inset;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .mcb-cta-btn:active {
        transform: scale(0.97);
        box-shadow: 0 2px 10px rgba(184, 142, 74, 0.3);
    }

    .mcb-cta-inner {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        pointer-events: none;
    }

    .mcb-cta-inner i {
        font-size: 1rem;
    }

    .mcb-cta-text {
        font-size: 0.9rem;
        font-weight: 800;
    }

    /* Ripple */
    .mcb-cta-ripple {
        position: absolute;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        transform: translate(-50%, -50%) scale(0);
        pointer-events: none;
        z-index: 1;
    }

    @keyframes rippleGo {
        to {
            transform: translate(-50%, -50%) scale(5);
            opacity: 0;
        }
    }

    .mcb-cta-ripple.ripple-go {
        animation: rippleGo 0.5s ease-out forwards;
    }

    /* Glow pulse on CTA */
    @keyframes ctaGlow {
        0%, 100% { box-shadow: 0 4px 20px rgba(184,142,74,0.5), 0 1px 0 rgba(255,255,255,0.15) inset; }
        50%       { box-shadow: 0 6px 30px rgba(184,142,74,0.75), 0 1px 0 rgba(255,255,255,0.15) inset; }
    }

    .mcb-cta-btn {
        animation: ctaGlow 2.5s ease-in-out infinite;
    }

    .mcb-cta-btn:active {
        animation: none;
    }

    /* MOBILE HERO SLIDER */
    .hero-slider-section {
        height: 380px;
    }

    .hero-main-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .hero-check-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-top: 18px;
        font-size: 0.72rem;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .hero-arrow-left { left: 10px; }
    .hero-arrow-right { right: 10px; }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(35,24,18,0.9) 0%, rgba(35,24,18,0.4) 60%, rgba(35,24,18,0.1) 100%);
    }

    /* MOBILE CATEGORY SWIPE TRAY (STORY / APP STYLE) */
    .categories-circle-tray {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 4px 4px 12px;
        scrollbar-width: none;
    }

    .categories-circle-tray::-webkit-scrollbar {
        display: none;
    }

    .category-circle-item {
        flex: 0 0 74px;
        scroll-snap-align: start;
    }

    .circle-avatar-box {
        width: 72px;
        height: 72px;
    }

    .cat-label {
        font-size: 0.72rem;
    }

    /* MOBILE 2-COLUMN PRODUCT GRID */
    .products-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-item-card {
        padding: 10px;
        border-radius: var(--radius-sm);
    }

    .product-image-container {
        height: 145px;
    }

    .product-item-title {
        font-size: 0.78rem;
    }

    .product-item-price {
        font-size: 0.92rem;
    }

    .btn-action-cart {
        font-size: 0.68rem;
        padding: 6px 0;
    }

    /* MOBILE PROMO BANNER */
    .promo-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 22px 16px;
        gap: 16px;
    }

    .promo-headline {
        justify-content: center;
        font-size: 0.95rem;
    }

    .promo-percent {
        font-size: 2.4rem;
    }

    .promo-content-right {
        flex-direction: column;
    }

    /* MOBILE GUARANTEES */
    .guarantees-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .guarantee-box-item {
        padding: 14px 10px;
    }

    .guarantee-heading {
        font-size: 0.75rem;
    }

    .guarantee-text {
        font-size: 0.65rem;
    }

    /* MOBILE TESTIMONIALS & INSTAGRAM */
    .testimonials-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .instagram-banner-box {
        flex-direction: column;
        padding: 20px 16px;
        gap: 18px;
    }

    .insta-profile-block {
        min-width: 100%;
    }

    .insta-gallery-row {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        width: 100%;
    }

    .insta-photo-card {
        height: 75px;
    }

    /* MOBILE FOOTER */
    .site-footer {
        padding: 32px 0 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .payment-accept-box {
        flex-direction: column;
        gap: 6px;
    }
}

/* ==========================================================================
   14. PRODUCT DETAIL PAGE (product.php?id=) - DESKTOP & MOBILE
   ========================================================================== */

/* On desktop, override pd-hide-nav so the nav is never hidden */
@media (min-width: 769px) {
    .mobile-app-bottom-bar.pd-hide-nav {
        display: none !important;
    }
    .pd-body-pad {
        padding-bottom: 0 !important;
    }
}

/* Breadcrumb */
.pd-breadcrumb {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pd-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.pd-breadcrumb a:hover {
    color: var(--dark-espresso);
}

.pd-breadcrumb .bc-sep {
    color: #CCC;
    font-size: 0.72rem;
}

.pd-breadcrumb .bc-current {
    color: var(--dark-espresso);
    font-weight: 700;
}

/* Main Product Detail Card */
.pd-main-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    background: var(--bg-white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-warm);
    box-shadow: var(--shadow-md);
    margin-bottom: 48px;
    transition: box-shadow 0.3s ease;
}

.pd-main-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Image Showcase */
.pd-image-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-image-showcase {
    background: var(--bg-warm-card);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.pd-image-showcase:hover {
    transform: scale(1.01);
}

.pd-image-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.4s ease;
}

.pd-image-showcase:hover img {
    transform: scale(1.03);
}

.pd-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.72rem;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    z-index: 2;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: var(--badge-red);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(139,30,16,0.3);
}

/* Trust Badges Tray */
.pd-trust-tray {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

.pd-trust-item {
    background: var(--bg-warm-card);
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-warm);
    transition: all 0.2s ease;
}

.pd-trust-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.pd-trust-item i {
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
}

.pd-trust-item strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.pd-trust-item .trust-green { color: #27AE60; }
.pd-trust-item .trust-gold { color: var(--gold-primary); }
.pd-trust-item .trust-dark { color: var(--dark-espresso); }

/* Product Info (Right side) */
.pd-info-section {
    display: flex;
    flex-direction: column;
}

.pd-category-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.pd-product-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--dark-espresso);
    line-height: 1.25;
    margin-bottom: 10px;
}

.pd-meta-row {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 18px;
}

.pd-meta-row strong {
    color: var(--dark-espresso);
}

/* Rating row */
.pd-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.pd-stars {
    color: var(--star-gold);
    font-size: 0.95rem;
    display: flex;
    gap: 2px;
}

.pd-rating-num {
    color: var(--dark-espresso);
    font-size: 0.95rem;
    font-weight: 700;
}

.pd-reviews-text {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.pd-stock-badge {
    background: #E8F8F5;
    color: #27AE60;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-left: auto;
}

/* Price block */
.pd-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.pd-price-current {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--dark-espresso);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.pd-price-original {
    font-size: 1.15rem;
    color: #999;
    text-decoration: line-through;
}

.pd-discount-badge {
    background: #FADBD8;
    color: #922B21;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
}

/* Description */
.pd-description {
    color: var(--text-primary);
    line-height: 1.65;
    font-size: 0.92rem;
    margin-bottom: 28px;
    background: var(--bg-warm-card);
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold-primary);
}

/* Add to cart form */
.pd-actions-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}

.pd-action-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
    flex-wrap: wrap;
}

/* Quantity Selector */
.pd-qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-sm);
    background: var(--bg-warm-card);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.pd-qty-selector:focus-within {
    border-color: var(--dark-espresso);
}

.pd-qty-btn {
    width: 42px;
    height: 50px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.15rem;
    color: var(--dark-espresso);
    transition: background 0.15s ease;
}

.pd-qty-btn:hover {
    background: rgba(35,24,18,0.06);
}

.pd-qty-input {
    width: 48px;
    height: 50px;
    border: none;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    background: var(--bg-white);
    outline: none;
}

/* Add to cart CTA */
.pd-btn-add-cart {
    flex: 1;
    min-width: 180px;
    border: none;
    cursor: pointer;
    padding: 12px 28px;
    font-size: 0.92rem;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-espresso);
    color: #FFFFFF;
    border-radius: var(--radius-sm);
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.pd-btn-add-cart:hover {
    background: var(--accent-brown);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pd-btn-add-cart:active {
    transform: translateY(0);
}

/* Wishlist + Share buttons */
.pd-extra-actions {
    display: flex;
    gap: 10px;
}

.pd-btn-wishlist,
.pd-btn-share {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.pd-btn-wishlist:hover,
.pd-btn-share:hover {
    border-color: var(--dark-espresso);
    color: var(--dark-espresso);
    box-shadow: var(--shadow-sm);
}

.pd-btn-wishlist.active {
    color: #C0392B;
    border-color: #C0392B;
    background: #FDF2F2;
}

/* Extra info footer */
.pd-extra-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-top: 18px;
    border-top: 1px solid var(--border-warm);
}

.pd-extra-info div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-extra-info i {
    width: 20px;
    text-align: center;
}

.pd-extra-info .info-gold { color: var(--gold-primary); }
.pd-extra-info .info-green { color: #27AE60; }

.pd-extra-info a {
    color: #27AE60;
    font-weight: 700;
    text-decoration: underline;
}

.pd-extra-info a:hover {
    color: #1E8449;
}

/* Related Products Section */
.pd-related-section {
    margin-top: 48px;
}

.pd-related-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pd-related-title h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--dark-espresso);
    text-transform: uppercase;
}

/* Related Products Grid - 4 columns on desktop */
.pd-related-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 18px;
}

/* =============================================
   PRODUCT DETAIL - MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .pd-main-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 16px;
        border-radius: var(--radius-md);
        margin-bottom: 32px;
    }

    .pd-image-showcase {
        height: 300px;
        border-radius: var(--radius-md);
    }

    .pd-product-title {
        font-size: 1.5rem;
    }

    .pd-price-current {
        font-size: 1.9rem;
    }

    .pd-trust-tray {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .pd-trust-item {
        padding: 10px 6px;
    }

    .pd-trust-item strong {
        font-size: 0.7rem;
    }

    .pd-rating-row {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .pd-stock-badge {
        margin-left: 0;
        margin-top: 4px;
    }

    .pd-description {
        font-size: 0.88rem;
        padding: 14px 16px;
    }

    .pd-action-row {
        gap: 10px;
    }

    .pd-btn-add-cart {
        min-width: 160px;
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    /* Breadcrumb on mobile */
    .pd-breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    /* Related products mobile - 2 columns */
    .pd-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .pd-related-section .product-image-container {
        height: 130px;
    }

    /* On product detail pages, hide the regular bottom nav on mobile 
       (the mobile-cart-bar-wrapper replaces it for a native app feel) */
    .mobile-app-bottom-bar.pd-hide-nav {
        display: none !important;
    }

    /* Extra bottom padding for cart bar on product detail pages */
    .pd-body-pad {
        padding-bottom: calc(var(--bottom-nav-height) + 16px);
    }

    /* Sync main-content-wrapper bottom padding for product detail pages */
    .pd-body-pad ~ .site-footer {
        margin-bottom: 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .pd-main-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 24px;
    }

    .pd-image-showcase {
        height: 380px;
    }

    .pd-product-title {
        font-size: 1.8rem;
    }

    /* Related products tablet - 3 columns */
    .pd-related-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .pd-image-showcase {
        height: 260px;
    }

    .pd-price-current {
        font-size: 1.65rem;
    }

    .pd-product-title {
        font-size: 1.3rem;
    }

    .pd-qty-selector {
        flex: 1;
    }

    .pd-qty-btn {
        width: 48px;
        height: 52px;
    }

    .pd-qty-input {
        width: 50px;
        height: 52px;
    }

    .pd-zoom-modal .pd-zoom-content {
        padding: 10px;
    }

    .pd-zoom-image {
        max-height: 70vh;
    }
}

/* =============================================
   IMAGE GALLERY THUMBNAILS
   ============================================= */
.pd-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
}

.pd-thumbnails::-webkit-scrollbar {
    display: none;
}

.pd-thumb-item {
    flex: 0 0 68px;
    height: 68px;
    border: 2px solid var(--border-warm);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-warm-card);
    padding: 0;
    transition: all 0.25s ease;
    opacity: 0.65;
}

.pd-thumb-item:hover {
    opacity: 0.85;
    border-color: #C8B89A;
}

.pd-thumb-item.active {
    border-color: var(--dark-espresso);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(35, 24, 18, 0.15);
    transform: scale(1.05);
}

.pd-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Zoom hint overlay */
.pd-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(35, 24, 18, 0.65);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.pd-image-showcase:hover .pd-zoom-hint {
    opacity: 1;
}

/* Main image smooth transition */
.pd-image-showcase img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* =============================================
   IMAGE ZOOM MODAL
   ============================================= */
.pd-zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.pd-zoom-modal.active {
    opacity: 1;
    visibility: visible;
}

.pd-zoom-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.pd-zoom-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.pd-zoom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 90vw;
    max-height: 90vh;
    padding: 20px;
}

.pd-zoom-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    transition: opacity 0.25s ease, transform 0.3s ease;
    transform: scale(0.95);
}

.pd-zoom-modal.active .pd-zoom-image {
    transform: scale(1);
}

.pd-zoom-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pd-zoom-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pd-zoom-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.pd-zoom-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
}

/* =============================================
   SMOOTH SCROLL ANIMATIONS
   ============================================= */
.pd-animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-animate-in.pd-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger trust items */
.pd-trust-item.pd-animate-in:nth-child(1) { transition-delay: 0s; }
.pd-trust-item.pd-animate-in:nth-child(2) { transition-delay: 0.1s; }
.pd-trust-item.pd-animate-in:nth-child(3) { transition-delay: 0.2s; }

/* Stagger extra info items */
.pd-extra-info div.pd-animate-in:nth-child(1) { transition-delay: 0s; }
.pd-extra-info div.pd-animate-in:nth-child(2) { transition-delay: 0.1s; }

.btn-success-flash {
    background-color: #2ECC71 !important;
    border-color: #2ECC71 !important;
    color: #fff !important;
}
.btn-warning-flash {
    background-color: #F39C12 !important;
    border-color: #F39C12 !important;
    color: #fff !important;
}
.btn-error-flash {
    background-color: #E74C3C !important;
    border-color: #E74C3C !important;
    color: #fff !important;
}
