/* ======================================
   TEPUNG MOCAF - Juragan Tani
   Custom Stylesheet
   ====================================== */

/* ---------- CSS Variables ---------- */
:root {
    --brown-primary: #7B3B1A;
    --brown-dark: #5C2A10;
    --brown-light: #A0522D;
    --brown-lighter: #C8845C;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE4;
    --green-primary: #2E7D32;
    --green-light: #4CAF50;
    --gold: #D4A857;
    --text-dark: #2D2D2D;
    --text-medium: #555555;
    --text-light: #888888;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section-padding {
    padding: 80px 0;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--brown-lighter);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brown-primary);
}

/* ---------- Preloader (Disabled) ---------- */
.preloader {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ---------- Navbar ---------- */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    z-index: 1050;
}
.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(123, 59, 26, 0.1);
}
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.brand-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}
.navbar-brand:hover .brand-logo-img {
    transform: scale(1.04);
}
.navbar-brand .brand-icon {
    display: none;
}
.navbar .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brown-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}
.navbar .nav-link:hover {
    color: var(--brown-primary) !important;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}
.btn-beli-nav {
    background: linear-gradient(135deg, var(--brown-primary), var(--brown-dark));
    color: var(--white) !important;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(123, 59, 26, 0.3);
}
.btn-beli-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 59, 26, 0.4);
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-primary));
    color: var(--white) !important;
}

/* ---------- Hero Section (Luxury Modern Design) ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, #8C431F 0%, #54250E 50%, #2A1105 100%);
    overflow: hidden;
    padding-top: 60px;
}
.hero-mesh-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
}
.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}
.hero-bg-glow-1 {
    width: 450px;
    height: 450px;
    background: rgba(212, 168, 87, 0.22);
    top: 10%;
    right: 5%;
    animation: floatGlow 8s ease-in-out infinite alternate;
}
.hero-bg-glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(123, 59, 26, 0.45);
    bottom: 5%;
    left: 10%;
    animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.15); }
}

/* Ambient Floating Particles */
.hero-particle {
    position: absolute;
    color: rgba(255, 213, 79, 0.45);
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 213, 79, 0.4));
}
.particle-1 {
    top: 16%;
    left: 6%;
    font-size: 1.4rem;
    animation: floatParticle1 9s ease-in-out infinite;
}
.particle-2 {
    bottom: 22%;
    left: 45%;
    font-size: 1.15rem;
    color: rgba(46, 204, 113, 0.5);
    animation: floatParticle2 11s ease-in-out infinite;
}
.particle-3 {
    top: 22%;
    right: 48%;
    font-size: 0.95rem;
    color: rgba(255, 235, 150, 0.6);
    animation: floatParticle3 8s ease-in-out infinite;
}
.particle-4 {
    bottom: 28%;
    right: 5%;
    font-size: 1.3rem;
    color: rgba(255, 224, 130, 0.4);
    animation: floatParticle1 12s ease-in-out infinite reverse;
}

@keyframes floatParticle1 {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.35; }
    50% { transform: translateY(-30px) rotate(20deg) scale(1.15); opacity: 0.85; }
    100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.35; }
}
@keyframes floatParticle2 {
    0% { transform: translateY(0) rotate(0deg) scale(0.9); opacity: 0.25; }
    50% { transform: translateY(-40px) rotate(-25deg) scale(1.2); opacity: 0.8; }
    100% { transform: translateY(0) rotate(0deg) scale(0.9); opacity: 0.25; }
}
@keyframes floatParticle3 {
    0% { transform: translateY(0) scale(0.85); opacity: 0.25; }
    50% { transform: translateY(-22px) scale(1.35); opacity: 0.95; }
    100% { transform: translateY(0) scale(0.85); opacity: 0.25; }
}

.hero-premium-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 215, 79, 0.35);
    backdrop-filter: blur(12px);
    padding: 7px 18px;
    border-radius: 50px;
    color: #FFE082;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27ae60;
    box-shadow: 0 0 10px #27ae60;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.hero-title-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #E6D5C3;
    letter-spacing: 1px;
    margin-top: 6px;
}
.hero-desc {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 520px;
    margin-bottom: 22px;
    line-height: 1.8;
}

.hero-pill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pill-tag {
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 6px 14px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FFD54F 0%, #FFA000 100%);
    color: #3A1B05 !important;
    border: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 160, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 10;
}
.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 160, 0, 0.6);
    background: linear-gradient(135deg, #FFE082 0%, #FFB300 100%);
    color: #261102 !important;
}
.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.hero-stats-row {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 24px;
    border-radius: 20px;
}
.hero-stat-box .stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFD54F;
    line-height: 1.1;
}
.hero-stat-box .stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}
.stat-star {
    font-size: 0.85rem;
    margin-left: 3px;
    color: #FFD54F;
}
.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
}

/* Right Showcase */
.hero-showcase {
    position: relative;
    padding: 20px;
}
.product-spotlight-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 213, 79, 0.3) 0%, rgba(212, 168, 87, 0.05) 70%, transparent 100%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}
.hero-product {
    position: relative;
    z-index: 2;
}
.hero-product-img {
    max-height: 480px;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.45));
    animation: heroProductLevitate 6s ease-in-out infinite;
    transition: transform 0.4s ease;
}
@keyframes heroProductLevitate {
    0% {
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    }
    50% {
        transform: translateY(-18px) rotate(1.2deg);
        filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.22));
    }
    100% {
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    }
}

/* Floating Badges on Hero Image */
.hero-floating-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.85);
    pointer-events: none;
    transition: all 0.3s ease;
}
.float-card-1 {
    top: 15%;
    left: -20px;
    animation: floatSubtle1 5s ease-in-out infinite alternate;
}
.float-card-2 {
    bottom: 12%;
    right: -10px;
    animation: floatSubtle2 6s ease-in-out infinite alternate;
}
@keyframes floatSubtle1 {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-14px) scale(1.03); }
    100% { transform: translateY(6px) scale(0.99); }
}
@keyframes floatSubtle2 {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(16px) scale(1.03); }
    100% { transform: translateY(-8px) scale(0.99); }
}
.float-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.bg-success-gradient {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}
.bg-gold-gradient {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}
.float-card-text strong {
    font-size: 0.85rem;
    color: #222;
    display: block;
    line-height: 1.2;
}
.float-card-text small {
    font-size: 0.72rem;
    color: #666;
    display: block;
}

/* ---------- Features Bar (Upgraded) ---------- */
.features-bar {
    background: linear-gradient(90deg, #5C2A10 0%, #7B3B1A 50%, #5C2A10 100%);
    padding: 35px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 16px;
    margin: 4px;
}
.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #FFD54F;
    border: 1.5px solid rgba(255, 213, 79, 0.25);
    transition: all 0.35s ease;
}
.feature-item:hover .feature-icon {
    background: #FFD54F;
    color: #5C2A10;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 213, 79, 0.5);
}
.feature-item h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #ffffff;
}
.feature-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ---------- Section Title Upgrades ---------- */
.section-badge {
    display: inline-block;
    background: #FFF0E0;
    color: var(--brown-primary);
    border: 1px solid rgba(123, 59, 26, 0.2);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* ---------- Luxury Product Cards (Modern E-commerce) ---------- */
.product-card-luxury {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1.5px solid #F0ECE6;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.product-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(123, 59, 26, 0.16);
    border-color: rgba(123, 59, 26, 0.35);
}
.product-card-featured {
    border: 2px solid var(--brown-primary);
    box-shadow: 0 12px 35px rgba(123, 59, 26, 0.12);
}
.product-card-top-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
}
.badge-tag {
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.tag-ekonomis {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}
.tag-bestseller {
    background: linear-gradient(135deg, #FF6F00, #FF8F00);
    color: #fff;
    animation: badgePulseGlow 2.8s ease-in-out infinite;
}
.tag-premium {
    background: linear-gradient(135deg, #6A1B9A, #8E24AA);
    color: #fff;
    animation: badgePulseGlowPurple 3.2s ease-in-out infinite;
}
@keyframes badgePulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(255, 111, 0, 0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(255, 111, 0, 0.65);
    }
}
@keyframes badgePulseGlowPurple {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(106, 27, 154, 0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(106, 27, 154, 0.65);
    }
}
.product-card-luxury .product-card-img {
    height: 230px;
    background: radial-gradient(circle, #FFFDFB 0%, #FFF4E8 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}
.img-backdrop-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 213, 79, 0.25);
    filter: blur(25px);
    pointer-events: none;
}
.product-card-luxury .product-card-img img {
    max-height: 175px;
    object-fit: contain;
    transition: transform 0.45s ease;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.12));
}
.product-card-luxury:hover .product-card-img img {
    transform: scale(1.08) translateY(-4px);
}
.quick-zoom-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--brown-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.25s ease;
}
.product-card-luxury:hover .quick-zoom-badge {
    opacity: 1;
    transform: scale(1);
}
.quick-zoom-badge:hover {
    background: var(--brown-primary);
    color: #fff;
}

.product-card-luxury .product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-category-text {
    font-size: 0.72rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.product-card-luxury .product-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 3px;
}
.product-card-luxury .product-weight {
    font-size: 0.82rem;
    color: #777;
    margin-bottom: 8px;
}
.price-container {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-top: auto;
    padding-top: 10px;
    margin-bottom: 14px;
}
.price-container .currency {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brown-primary);
}
.price-container .amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brown-primary);
    line-height: 1;
}
.price-container .unit {
    font-size: 0.75rem;
    color: #999;
    margin-left: 2px;
}

/* ---------- Luxury Benefits Sidebar ---------- */
.benefits-sidebar-luxury {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1.5px solid #F0ECE6;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sidebar-header-badge {
    display: inline-flex;
    align-items: center;
    background: #FFF8F0;
    color: var(--brown-primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1px solid rgba(123, 59, 26, 0.15);
}
.sidebar-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 6px;
}
.sidebar-desc {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
.benefit-item-luxury {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed #ECE7E1;
}
.benefit-item-luxury:last-of-type {
    border-bottom: none;
}
.benefit-icon-luxury {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.bg-icon-green { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.bg-icon-gold { background: linear-gradient(135deg, #d35400, #e67e22); }
.bg-icon-blue { background: linear-gradient(135deg, #2980b9, #3498db); }
.bg-icon-purple { background: linear-gradient(135deg, #8e44ad, #9b59b6); }

.benefit-text-luxury h6 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}
.benefit-text-luxury p {
    font-size: 0.76rem;
    color: #777;
    margin: 0;
    line-height: 1.4;
}
.sidebar-promo-strip {
    background: #F4FBF7;
    border: 1px solid #C8E6C9;
    padding: 12px 16px;
    border-radius: 14px;
}
.benefit-text h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 3px;
}
.benefit-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* ---------- About Section & Process (Luxury Modern) ---------- */
.about-section {
    background: #ffffff;
    position: relative;
}
.about-story-card {
    background: #FFFDFB;
    border: 1px solid #EFE8DF;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
}
.about-visual-box {
    position: relative;
    padding: 10px;
}
.about-img-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border: 4px solid #ffffff;
    background: #FAF7F2;
}
.about-img-frame img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-visual-box:hover .about-img-frame img {
    transform: scale(1.03);
}
.about-floating-stat {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border: 1px solid #ECE7E1;
    z-index: 3;
}
.stat-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Process Flow Grid */
.process-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}
.process-card-item {
    background: #FAF7F2;
    border: 1px solid #ECE7E1;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
}
.process-card-item:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(123, 59, 26, 0.12);
    border-color: rgba(123, 59, 26, 0.3);
}
.process-step-num {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(123, 59, 26, 0.25);
    letter-spacing: 1px;
}
.process-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brown-primary), var(--brown-light));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
    box-shadow: 0 6px 15px rgba(123, 59, 26, 0.2);
    transition: transform 0.3s ease;
}
.process-card-item:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}
.process-card-item h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
.process-card-item p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .process-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .process-flow-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Recipe Section ---------- */
.recipe-section {
    background: var(--white);
    overflow: hidden;
}
.recipe-carousel {
    position: relative;
}
.recipe-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 5px 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.recipe-track::-webkit-scrollbar {
    display: none;
}
.recipe-card {
    min-width: 200px;
    max-width: 200px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.recipe-card-img {
    height: 150px;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}
.recipe-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.recipe-card:hover .recipe-card-img img {
    transform: scale(1.1);
}
.recipe-card-body {
    padding: 15px;
    text-align: center;
}
.recipe-card-body h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.btn-recipe {
    background: transparent;
    color: var(--brown-primary);
    border: 1.5px solid var(--brown-primary);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-recipe:hover {
    background: var(--brown-primary);
    color: var(--white);
}
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--brown-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    color: var(--brown-primary);
    font-size: 1rem;
}
.carousel-nav-btn:hover {
    background: var(--brown-primary);
    color: var(--white);
    border-color: var(--brown-primary);
}
.carousel-prev {
    left: -15px;
}
.carousel-next {
    right: -15px;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--brown-primary), var(--brown-dark));
    padding: 60px;
    border-radius: 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.cta-section p {
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 25px;
}
.btn-cta {
    background: var(--white);
    color: var(--brown-primary);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: var(--brown-dark);
}

/* ---------- Footer ---------- */
.footer {
    background: #1A1A1A;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}
.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.25s ease;
}
.footer-logo-img:hover {
    transform: scale(1.05);
}
.footer-brand .brand-icon {
    display: none;
}
.footer-brand h4 {
    display: none;
}
.footer-desc {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--brown-primary);
    border-color: var(--brown-primary);
    color: var(--white);
    transform: translateY(-3px);
}
.footer h5 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brown-primary);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: var(--transition);
}
.footer ul li a:hover {
    opacity: 1;
    color: var(--brown-lighter);
    padding-left: 5px;
}
.footer .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}
.footer .contact-item i {
    color: var(--brown-lighter);
    margin-top: 3px;
}
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.payment-icon {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}
.payment-icon:hover {
    background: rgba(255,255,255,0.2);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--brown-primary), var(--brown-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(123, 59, 26, 0.4);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(123, 59, 26, 0.5);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}
.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}
.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}
.animate-scaleIn {
    animation: scaleIn 0.8s ease forwards;
}

/* Stagger delay classes */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-product-img {
        max-width: 300px;
        margin-top: 40px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .cta-section {
        padding: 40px 30px;
    }
    .process-flow {
        gap: 10px;
    }
}
@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-product {
        margin-top: 40px;
    }
    .hero-product-img {
        max-width: 250px;
    }
    .section-title h2::before,
    .section-title h2::after {
        width: 30px;
    }
    .section-title h2::before {
        left: -35px;
    }
    .section-title h2::after {
        right: -35px;
    }
    .features-bar .row > div {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .process-arrow {
        transform: rotate(90deg);
    }
    .benefits-sidebar {
        margin-top: 30px;
    }
    .cta-section {
        text-align: center;
        padding: 40px 20px;
    }
    .cta-section h3 {
        font-size: 1.5rem;
    }
    .carousel-nav-btn {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-desc {
        font-size: 0.88rem;
        line-height: 1.6;
    }
    .section-padding {
        padding: 45px 0;
    }
    .hero-stats-row {
        width: 100%;
        display: flex;
        justify-content: space-around;
        gap: 6px;
        padding: 10px 12px;
    }
    .hero-stat-box .stat-number {
        font-size: 1.05rem;
    }
    .hero-stat-box .stat-label {
        font-size: 0.65rem;
    }
    .float-card-1 {
        top: 6%;
        left: 0;
        padding: 6px 12px;
    }
    .float-card-2 {
        bottom: 6%;
        right: 0;
        padding: 6px 12px;
    }
    .float-card-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    .float-card-text strong {
        font-size: 0.75rem;
    }
    .float-card-text small {
        font-size: 0.65rem;
    }
    .product-card-luxury .product-card-img {
        height: 165px;
        padding: 12px;
    }
    .product-card-luxury .product-card-img img {
        max-height: 120px;
    }
    .product-card-luxury .product-card-body {
        padding: 12px;
    }
    .product-card-luxury .product-name {
        font-size: 0.95rem;
    }
    .price-container .amount {
        font-size: 1.1rem;
    }
    .btn-card-buy {
        padding: 7px 10px;
        font-size: 0.75rem;
    }
    .btn-card-cart {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.8rem;
    }
    .about-floating-stat {
        bottom: -10px;
        right: 10px;
        padding: 8px 14px;
    }
    .stat-icon-circle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .about-floating-stat strong {
        font-size: 0.85rem !important;
    }
}

/* ---------- Gallery Section ---------- */
.galeri-section {
    overflow: hidden;
}
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 15px;
}
.galeri-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.galeri-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}
.galeri-item:hover img {
    transform: scale(1.15);
    filter: brightness(0.7);
}
.galeri-item-tall {
    grid-row: span 2;
}
.galeri-item-wide {
    grid-column: span 2;
}

/* Video Gallery Item */
.galeri-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.galeri-video-item:hover .galeri-video-preview {
    transform: scale(1.08);
}
.video-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    background: rgba(123, 59, 26, 0.85);
    backdrop-filter: blur(5px);
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    padding-left: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
    z-index: 2;
}
.galeri-video-item:hover .video-play-badge {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--brown-primary);
    box-shadow: 0 10px 30px rgba(123, 59, 26, 0.6);
}

/* Gallery Overlay */
.galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(92,42,16,0) 0%, rgba(92,42,16,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.galeri-item:hover .galeri-overlay {
    opacity: 1;
}
.galeri-info {
    color: var(--white);
    transform: translateY(15px);
    transition: transform 0.4s ease;
}
.galeri-item:hover .galeri-info {
    transform: translateY(0);
}
.galeri-info i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
    opacity: 0.8;
}
.galeri-info h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}
.galeri-info p {
    font-size: 0.8rem;
    opacity: 0.85;
    margin: 0;
}

/* Gallery Badge */
.galeri-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    color: var(--brown-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 3;
    transition: var(--transition);
}
.galeri-item:hover .galeri-badge {
    background: var(--brown-primary);
    color: var(--white);
    transform: scale(1.05);
}

/* Trust Badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown-primary);
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(123, 59, 26, 0.1);
    transition: var(--transition);
}
.trust-badge:hover {
    border-color: var(--brown-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.trust-badge i {
    color: var(--green-primary);
    font-size: 1rem;
}

/* ---------- Lightbox ---------- */
.galeri-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(10px);
}
.galeri-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    position: relative;
    animation: lightboxZoomIn 0.4s ease;
}
@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}
.lightbox-caption {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    display: inline-block;
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg) scale(1.1);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-prev {
    left: 25px;
}
.lightbox-next {
    right: 25px;
}
.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 50px;
}

/* Gallery Responsive */
@media (max-width: 991.98px) {
    .galeri-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
    .galeri-item-wide {
        grid-column: span 2;
    }
}
@media (max-width: 767.98px) {
    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }
    .galeri-item-tall {
        grid-row: span 2;
    }
    .galeri-item-wide {
        grid-column: span 2;
    }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    .trust-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}
@media (max-width: 575.98px) {
    .galeri-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
    }
}

/* ---------- Rating & Review Styles ---------- */

/* Hero Rating Banner */
.hero-rating-banner {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}
.avatar-group {
    display: flex;
    align-items: center;
}
.avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid #fff;
    margin-left: -8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.avatar-group .avatar-sm:first-child {
    margin-left: 0;
}
.stars-gold {
    color: #FFC107;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.stars-gold strong {
    color: var(--white);
    margin-left: 5px;
    font-size: 0.95rem;
}
.rating-info small {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
}

/* Product Card Rating */
.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}
.product-rating .stars {
    color: #FFC107;
    font-size: 0.75rem;
    display: flex;
    gap: 2px;
}
.product-rating .rating-val {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}
.product-rating .rating-count {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Rating Section */
.rating-section {
    background: var(--white);
}
.rating-summary-card {
    background: linear-gradient(135deg, #FFFDFB 0%, #FFF5ED 100%);
    border: 1px solid rgba(123, 59, 26, 0.12);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
}
.border-end-lg {
    border-right: 1px solid rgba(123, 59, 26, 0.12);
}
@media (max-width: 991.98px) {
    .border-end-lg {
        border-right: none;
        border-bottom: 1px solid rgba(123, 59, 26, 0.12);
        padding-bottom: 25px;
    }
}
.rating-big-score {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--brown-primary);
    line-height: 1;
    margin-bottom: 5px;
}
.rating-total-text {
    font-size: 0.85rem;
    color: var(--text-medium);
}
.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}
.star-label {
    min-width: 38px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.8rem;
}
.count-label {
    min-width: 45px;
    text-align: right;
    color: var(--text-light);
    font-size: 0.8rem;
}
.rating-bars .progress {
    height: 8px;
    border-radius: 50px;
    background: #EFEFEF;
}
.rating-highlight-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}
.highlight-item h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brown-dark);
}

/* Review Cards */
.review-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(123, 59, 26, 0.2);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
}
.avatar-pink { background: linear-gradient(135deg, #FF6B6B, #EE5253); }
.avatar-blue { background: linear-gradient(135deg, #48DBFB, #0ABDE3); }
.avatar-green { background: linear-gradient(135deg, #1DD1A1, #10AC84); }
.avatar-purple { background: linear-gradient(135deg, #9C88FF, #8C7AE6); }
.avatar-orange { background: linear-gradient(135deg, #FFA502, #FF7F50); }
.avatar-teal { background: linear-gradient(135deg, #00D2D3, #01A3A4); }

.review-user-info {
    flex-grow: 1;
}
.review-user-info h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    margin: 0;
    color: var(--text-dark);
}
.review-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--green-primary);
    font-weight: 600;
}
.review-date {
    font-size: 0.75rem;
    color: var(--text-light);
    flex-shrink: 0;
}
.review-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.review-rating .stars-gold {
    font-size: 0.85rem;
}
.review-variant {
    font-size: 0.75rem;
    background: var(--cream);
    color: var(--brown-primary);
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 500;
}
.review-text {
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* ---------- Manfaat Section Styles ---------- */
.manfaat-section {
    background: #FFFDF9;
}
.manfaat-card {
    background: var(--white);
    border: 1px solid rgba(123, 59, 26, 0.08);
    border-radius: 18px;
    padding: 30px 25px;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}
.manfaat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition);
}
.manfaat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 59, 26, 0.2);
}
.manfaat-card:hover::before {
    background: linear-gradient(90deg, var(--brown-primary), var(--gold));
}
.manfaat-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.manfaat-card:hover .manfaat-icon-wrapper {
    transform: scale(1.1) rotate(6deg);
}

.bg-green-light { background: #E8F5E9; color: #2E7D32; }
.bg-amber-light { background: #FFF8E1; color: #F57F17; }
.bg-blue-light  { background: #E3F2FD; color: #1565C0; }
.bg-teal-light  { background: #E0F2F1; color: #00695C; }
.bg-purple-light{ background: #F3E5F5; color: #7B1FA2; }
.bg-rose-light  { background: #FCE4EC; color: #C2185B; }

.manfaat-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}
.manfaat-card p {
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}
.manfaat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brown-primary);
    background: var(--cream);
    padding: 6px 14px;
    border-radius: 50px;
    align-self: flex-start;
}
.manfaat-tag i {
    color: var(--green-primary);
}

/* Comparison Card */
.comparison-card {
    background: var(--white);
    border: 1px solid rgba(123, 59, 26, 0.12);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
}
.comparison-card h3 {
    font-size: 1.8rem;
    color: var(--brown-primary);
}
.comparison-table th {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 16px 14px;
    border-bottom: 2px solid rgba(123, 59, 26, 0.12) !important;
}
.comparison-table td {
    padding: 14px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}
.comparison-table .mocaf-col {
    background: rgba(255, 248, 240, 0.6);
    border-radius: 8px;
    font-weight: 600;
}

/* ---------- Floating WhatsApp Widget (Animated Glow Rings) ---------- */
.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 1040;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}
.floating-wa::before,
.floating-wa::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.6);
    z-index: -1;
    pointer-events: none;
}
.floating-wa::before {
    animation: waPulseRing 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.floating-wa::after {
    animation: waPulseRing 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite 1.2s;
}
@keyframes waPulseRing {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
.floating-wa:hover {
    color: #fff;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}
.floating-wa-badge {
    position: absolute;
    top: -10px;
    left: 45px;
    background: #128C7E;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    animation: waPulse 2s infinite;
}
@keyframes waPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@media (max-width: 767.98px) {
    .floating-wa {
        bottom: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
    .floating-wa-badge {
        display: none;
    }
}

/* ===================================================
   PERFECTED NAVBAR & ACTION BUTTONS STYLES
   =================================================== */

/* Shimmer Lighting Effect on Main CTA Buttons */
.btn-hero-primary,
.btn-beli-nav,
.btn-nav-buy,
.btn-card-buy,
.btn-wa-order,
.btn-checkout-direct {
    position: relative;
    overflow: hidden;
}
.btn-hero-primary::after,
.btn-beli-nav::after,
.btn-nav-buy::after,
.btn-card-buy::after,
.btn-wa-order::after,
.btn-checkout-direct::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 45%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: btnShimmerAnim 4s infinite cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}
@keyframes btnShimmerAnim {
    0% { left: -75%; }
    30% { left: 160%; }
    100% { left: 160%; }
}

/* Cart Badge Bounce Animation */
.cart-badge.bounce {
    animation: cartBadgeBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
@keyframes cartBadgeBounce {
    0% { transform: scale(1); }
    35% { transform: scale(1.6) rotate(-12deg); }
    65% { transform: scale(0.9) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Navbar Cart Button */
.btn-nav-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF8F0;
    color: var(--brown-primary);
    border: 1.5px solid rgba(123, 59, 26, 0.2);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.btn-nav-cart:hover {
    background: var(--brown-primary);
    color: #fff;
    border-color: var(--brown-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(123, 59, 26, 0.25);
}
.cart-icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #E53935;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* Navbar Beli Cepat Button */
.btn-nav-buy {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--brown-primary) 0%, var(--brown-dark) 100%);
    color: #fff !important;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(123, 59, 26, 0.35);
    transition: var(--transition);
}
.btn-nav-buy:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(123, 59, 26, 0.5);
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-primary) 100%);
}

/* Product Card Action Buttons (Dual Buttons) */
.product-action-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}
.btn-card-buy {
    flex-grow: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--brown-primary), var(--brown-dark));
    color: #fff;
    border: none;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(123, 59, 26, 0.25);
    cursor: pointer;
}
.btn-card-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(123, 59, 26, 0.4);
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-primary));
}
.btn-card-buy i {
    color: #FFD54F;
}
.btn-card-cart {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFF8F0;
    color: var(--brown-primary);
    border: 1.5px solid rgba(123, 59, 26, 0.25);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-card-cart:hover {
    background: var(--brown-primary);
    color: #fff;
    border-color: var(--brown-primary);
    transform: scale(1.1) rotate(6deg);
}

/* ===================================================
   MODAL BELI CEPAT / ORDER MODAL STYLES
   =================================================== */
.modal-order-custom {
    border-radius: 24px !important;
}
.modal-header-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.modal-product-preview {
    background: linear-gradient(135deg, #FFFDFB 0%, #FFF8F0 100%);
    border: 1px solid rgba(123, 59, 26, 0.15);
    border-radius: 16px;
    padding: 16px;
}
.modal-product-img-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.modal-product-img-box img {
    max-height: 100%;
    object-fit: contain;
}

/* Interactive Variant Cards */
.variant-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
@media (max-width: 575.98px) {
    .variant-cards-grid {
        grid-template-columns: 1fr;
    }
}
.variant-card {
    background: #fff;
    border: 2px solid #EAEAEA;
    border-radius: 14px;
    padding: 10px 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    user-select: none;
}
.variant-card:hover {
    border-color: rgba(123, 59, 26, 0.4);
    transform: translateY(-2px);
}
.variant-card.active {
    border-color: var(--brown-primary);
    background: #FFFDFB;
    box-shadow: 0 4px 12px rgba(123, 59, 26, 0.15);
}
.variant-card.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -7px;
    right: -7px;
    width: 18px;
    height: 18px;
    background: var(--brown-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.variant-name {
    font-size: 0.82rem;
    color: var(--text-dark);
}
.variant-price {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--brown-primary);
}
.variant-badge {
    font-size: 0.65rem;
    background: #F0F0F0;
    color: #666;
    padding: 2px 6px;
    border-radius: 4px;
}
.badge-hot {
    background: #FFE082;
    color: #B78103;
    font-weight: 600;
}
.badge-premium {
    background: #E1BEE7;
    color: #6A1B9A;
    font-weight: 600;
}

/* Modal Stepper */
.modal-qty-stepper {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 3px;
}
.btn-modal-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #F5F5F5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-modal-step:hover {
    background: var(--brown-primary);
    color: #fff;
}
.modal-qty-input {
    width: 45px;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    outline: none;
}

/* Modal WhatsApp Order Button */
.btn-wa-order {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    cursor: pointer;
}
.btn-wa-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

/* Modal Cart Button */
.btn-cart-modal {
    background: #FFF8F0;
    color: var(--brown-primary) !important;
    border: 1.5px solid rgba(123, 59, 26, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-cart-modal:hover {
    background: var(--brown-primary);
    color: #fff !important;
    border-color: var(--brown-primary);
}

/* ===================================================
   CART PAGE STYLES (keranjang.php)
   =================================================== */
.cart-table th {
    padding: 16px 12px;
    font-weight: 600;
}
.cart-item-row {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.cart-img-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: #FFF8F0;
    border-radius: 12px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-img-box img {
    max-height: 100%;
    object-fit: contain;
}
.cart-qty-stepper {
    display: inline-flex;
    align-items: center;
    background: #F8F9FA;
    border: 1px solid #E0E0E0;
    border-radius: 50px;
    padding: 4px;
}
.btn-qty-step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.btn-qty-step:hover {
    background: var(--brown-primary);
    color: #fff;
}
.cart-qty-input {
    width: 45px;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 0.9rem;
    outline: none;
}
.btn-remove-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFEBEE;
    color: #D32F2F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-remove-item:hover {
    background: #D32F2F;
    color: #fff;
    transform: scale(1.1);
}
.cart-mini-feature {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
}
.cart-mini-feature i {
    font-size: 1.2rem;
}
.empty-cart-card {
    background: #fff;
}
.icon-circle {
    width: 90px;
    height: 90px;
    background: #FFF8F0;
    color: var(--brown-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* ===================================================
   CUSTOMER REVIEWS & STAR SELECTOR STYLES
   =================================================== */
.btn-tulis-ulasan {
    background: #FFF8F0;
    color: var(--brown-primary);
    border: 2px solid var(--brown-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}
.btn-tulis-ulasan:hover {
    background: var(--brown-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(123, 59, 26, 0.3);
}

.star-rating-selector {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 2.2rem;
    color: #E0E0E0;
    cursor: pointer;
}
.star-rating-selector .star-item {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}
.star-rating-selector .star-item:hover {
    transform: scale(1.25) rotate(-5deg);
}
.star-rating-selector .star-item.active {
    color: #FFC107;
    text-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}
.star-label-text {
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

/* ===================================================
   REVIEW SUBMISSION CELEBRATION & CONFETTI EFFECT
   =================================================== */
.review-celebration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 10, 5, 0.65);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}
.review-celebration-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.review-celebration-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 38px 28px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255, 193, 7, 0.2);
    border: 2px solid #FFF0D6;
    transform: scale(0.7) translateY(40px);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.review-celebration-overlay.active .review-celebration-card {
    transform: scale(1) translateY(0);
}
.celebration-icon-bubble {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD54F 0%, #FFA000 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: 0 10px 25px rgba(255, 160, 0, 0.45);
    margin-bottom: 20px;
    position: relative;
    animation: celebrationBounce 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite alternate;
}
@keyframes celebrationBounce {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-8px) scale(1.06); }
}
.sparkle-badge {
    position: absolute;
    font-size: 1.4rem;
    animation: sparkleFloat 1.5s ease-in-out infinite alternate;
}
.sparkle-1 { top: -6px; right: -6px; animation-delay: 0.2s; }
.sparkle-2 { bottom: -4px; left: -6px; animation-delay: 0.5s; }

@keyframes sparkleFloat {
    0% { transform: scale(0.8) rotate(0deg); opacity: 0.7; }
    100% { transform: scale(1.3) rotate(20deg); opacity: 1; }
}

.celebration-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #2D1A0E;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}
.celebration-stars {
    font-size: 1.5rem;
    color: #FFC107;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 4px;
    animation: starsPulse 1.2s ease-in-out infinite alternate;
}
@keyframes starsPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.celebration-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}
.btn-celebration-ok {
    background: linear-gradient(135deg, var(--brown-primary) 0%, var(--brown-dark) 100%);
    color: #ffffff !important;
    border: none;
    padding: 13px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(123, 59, 26, 0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-celebration-ok:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 25px rgba(123, 59, 26, 0.5);
}

/* Confetti Falling Particle */
.confetti-piece {
    position: fixed;
    z-index: 100001;
    pointer-events: none;
    will-change: transform, opacity;
}

/* Highlight glow for newly added review card */
.new-review-highlight {
    animation: newReviewGlowAnim 3.5s ease forwards !important;
    border: 2px solid #27ae60 !important;
    position: relative;
}
.new-review-highlight::after {
    content: 'Baru Saja';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #27ae60;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.4);
}
@keyframes newReviewGlowAnim {
    0% {
        transform: scale(0.92);
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.8);
    }
    30% {
        transform: scale(1.02);
        box-shadow: 0 0 35px 12px rgba(39, 174, 96, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
}

/* ===================================================
   RECIPE & BLOG ENHANCEMENTS
   =================================================== */
.step-number-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--cream);
    color: var(--brown-primary);
    border: 2px solid var(--brown-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.recipe-catalog-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.recipe-catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
}
.recipe-mini-card {
    transition: all 0.25s ease;
}
.recipe-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}
.btn-outline-brown {
    color: var(--brown-primary);
    border: 1.5px solid var(--brown-primary);
    transition: var(--transition);
}
.btn-outline-brown:hover {
    background: var(--brown-primary);
    color: #fff;
}
.hover-brown:hover {
    color: var(--brown-primary) !important;
}
.hover-bg-cream:hover {
    background: var(--cream);
}
.bg-cream {
    background-color: var(--cream) !important;
}
.text-brown {
    color: var(--brown-primary) !important;
}

/* ===================================================
   CHECKOUT SHIPPING & PAYMENT METHOD STYLES
   =================================================== */
.checkout-section-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 24px;
    border: 1px solid rgba(123, 59, 26, 0.08);
}
.checkout-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--cream-dark);
    padding-bottom: 10px;
}

/* Courier Selection Grid */
.courier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.courier-card {
    border: 2px solid #EAE5DF;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    background: #FAFAFA;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.courier-card:hover {
    border-color: var(--brown-primary);
    background: #FFFDFB;
    transform: translateY(-2px);
}
.courier-card.active {
    border-color: var(--brown-primary);
    background: #FFF8F0;
    box-shadow: 0 4px 12px rgba(123, 59, 26, 0.12);
}
.courier-card.active::after {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--brown-primary);
    font-size: 1rem;
}
.courier-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.courier-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #222;
}
.courier-est {
    font-size: 0.78rem;
    color: #777;
}
.courier-extra-fee {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brown-primary);
    margin-top: 4px;
}

/* Payment Method Cards Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.payment-card {
    border: 2px solid #EAE5DF;
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    background: #FAFAFA;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.payment-card:hover {
    border-color: var(--brown-primary);
    background: #FFFDFB;
    transform: translateY(-2px);
}
.payment-card.active {
    border-color: var(--brown-primary);
    background: #FFF8F0;
    box-shadow: 0 4px 14px rgba(123, 59, 26, 0.15);
}
.payment-card.active::after {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--brown-primary);
    font-size: 1.1rem;
}
.payment-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #EAE5DF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.payment-card.active .payment-icon-box {
    border-color: var(--brown-primary);
    background: var(--brown-primary);
    color: #fff !important;
}
.payment-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 2px;
}
.payment-desc {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.3;
}
/* ===================================================
   MODAL PRODUCT VIEW TOGGLE (DEPAN / BELAKANG)
   =================================================== */
.product-view-toggle {
    display: inline-flex;
    align-items: center;
    background: #EFEAE4;
    border-radius: 20px;
    padding: 2px 3px;
    gap: 3px;
    border: 1px solid rgba(123, 59, 26, 0.15);
}
.view-toggle-btn {
    border: none;
    background: transparent;
    color: #666;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    line-height: 1;
}
.view-toggle-btn:hover {
    color: var(--brown-primary);
}
.view-toggle-btn.active {
    background: var(--brown-primary);
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(123, 59, 26, 0.3);
}
.modal-product-img-box {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 1.5px solid #EAE5DF;
    border-radius: 12px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}
.modal-product-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.25s ease;
}



/* ===================================================
   ADD TO CART ANIMATIONS & TOAST NOTIFICATION
   =================================================== */

/* 1. Flying Image to Cart Animation */
.cart-flying-img {
    position: fixed;
    z-index: 9999999;
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--brown-primary);
    box-shadow: 0 10px 25px rgba(123, 59, 26, 0.4);
    pointer-events: none;
    transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: center center;
}

/* 2. Navbar Badge Bump Animation */
@keyframes cartBadgeBump {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.65);
        background: #27ae60 !important;
        box-shadow: 0 0 15px rgba(39, 174, 96, 0.8);
    }
    60% {
        transform: scale(0.85);
    }
    100% {
        transform: scale(1);
    }
}

.cart-badge.bump {
    animation: cartBadgeBump 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Button pulse on click */
.btn-cart-pop {
    animation: btnPop 0.3s ease;
}
@keyframes btnPop {
    0% { transform: scale(1); }
    50% { transform: scale(0.92); }
    100% { transform: scale(1); }
}

/* 3. Modern Floating Cart Toast Notification */
.cart-toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.cart-toast {
    pointer-events: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(123, 59, 26, 0.1);
    border-left: 5px solid #27ae60;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 320px;
    max-width: 420px;
    animation: slideInToast 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.cart-toast.hiding {
    animation: slideOutToast 0.35s ease forwards;
}

.cart-toast-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #FAFAFA;
    padding: 4px;
    flex-shrink: 0;
}

.cart-toast-content {
    flex-grow: 1;
}

.cart-toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-toast-desc {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0;
}

.cart-toast-btn {
    background: var(--brown-primary);
    color: #fff;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.cart-toast-btn:hover {
    background: var(--brown-dark);
    color: #fff;
    transform: scale(1.05);
}

.cart-toast-close {
    background: transparent;
    border: none;
    color: #999;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 4px;
    transition: var(--transition);
}

.cart-toast-close:hover {
    color: #333;
}

.cart-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #27ae60;
    width: 100%;
    animation: toastProgress 3.5s linear forwards;
}

@keyframes slideInToast {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideOutToast {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

@media (max-width: 576px) {
    .cart-toast-container {
        left: 15px;
        right: 15px;
        bottom: 20px;
    }
    .cart-toast {
        min-width: unset;
        width: 100%;
    }
}

/* ===================================================
   1. PROMO VOUCHER & DISCOUNT COUPON STYLES
   =================================================== */
.voucher-box {
    background: #FFFDFB;
    border: 1.5px dashed rgba(123, 59, 26, 0.25);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
    transition: all 0.25s ease;
}
.voucher-box:focus-within {
    border-color: var(--brown-primary);
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(123, 59, 26, 0.08);
}
.voucher-input-group {
    display: flex;
    gap: 8px;
}
.voucher-input {
    flex: 1;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px !important;
    border: 1px solid #DCD5CE;
    padding: 10px 14px;
    font-size: 0.9rem;
}
.voucher-input:focus {
    border-color: var(--brown-primary);
    box-shadow: 0 0 0 3px rgba(123, 59, 26, 0.12);
}
.btn-apply-voucher {
    background: var(--brown-primary);
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-apply-voucher:hover {
    background: var(--brown-dark);
    color: #ffffff;
    transform: translateY(-1px);
}
.voucher-chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}
.voucher-chip {
    background: #F4EFEA;
    border: 1px solid rgba(123, 59, 26, 0.15);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brown-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.voucher-chip:hover {
    background: var(--brown-primary);
    color: #ffffff;
    border-color: var(--brown-primary);
    transform: scale(1.04);
}
.voucher-applied-card {
    background: #EAF8EE;
    border: 1.5px solid #27ae60;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeInVoucher 0.3s ease;
}
.btn-remove-voucher {
    background: transparent;
    border: none;
    color: #e74c3c;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.btn-remove-voucher:hover {
    background: rgba(231, 76, 60, 0.1);
}
@keyframes fadeInVoucher {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.shake-anim {
    animation: shakeVoucher 0.4s ease;
}
@keyframes shakeVoucher {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* ===================================================
   2. SOCIAL PROOF LIVE SALES NOTIFICATION TOAST
   =================================================== */
.live-sales-toast {
    position: fixed;
    bottom: 100px;
    left: 25px;
    z-index: 99999;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(123, 59, 26, 0.08);
    border-left: 5px solid #27ae60;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 360px;
    min-width: 290px;
    animation: liveSalesSlideIn 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transition: all 0.35s ease;
}
.live-sales-toast.hiding {
    animation: liveSalesSlideOut 0.4s ease forwards;
}
.live-sales-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
    background: #FAF7F2;
    border: 1px solid #ECE7E1;
    padding: 3px;
    flex-shrink: 0;
}
.live-sales-body {
    flex-grow: 1;
    overflow: hidden;
}
.live-sales-buyer {
    font-size: 0.84rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.live-sales-buyer .badge-verified {
    color: #27ae60;
    font-size: 0.8rem;
}
.live-sales-product {
    font-size: 0.76rem;
    color: #555;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.live-sales-time {
    font-size: 0.68rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}
.live-sales-close {
    background: transparent;
    border: none;
    color: #bbb;
    font-size: 1rem;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
    align-self: flex-start;
}
.live-sales-close:hover {
    color: #333;
}
@keyframes liveSalesSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes liveSalesSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
}
@media (max-width: 576px) {
    .live-sales-toast {
        left: 15px;
        right: 15px;
        bottom: 80px; /* above floating whatsapp */
        max-width: unset;
        min-width: unset;
    }
}








