/* ==========================================================================
           1. RESET & VARIABLE DESAIN (TEMA: CRIMSON, CHARCOAL & CREAM GOLD)
           ========================================================================== */
        :root {
            --primary-crimson: #8B1E2F;   
            --primary-soft: #F5EAEC;
            --accent-charcoal: #2A2F35;   
            --accent-gold: #D4AF37;       
            --bg-cream: #FDFBF9;          
            --bg-card: #FFFFFF;
            --text-dark: #23272C;         
            --text-muted: #5F666E;
            --tag-allergen: #E05353;      
            --shadow-sm: 0 4px 20px rgba(35, 39, 44, 0.02);
            --shadow-md: 0 16px 40px rgba(35, 39, 44, 0.05);
            --shadow-lg: 0 30px 60px rgba(139, 30, 47, 0.12);
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Plus Jakarta Sans', sans-serif;
            --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        /* Decorative Gold Border Top Accent */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-crimson), var(--accent-gold), var(--primary-crimson));
            z-index: 9999;
        }

        /* ==========================================================================
           2. TOP BAR & NAVIGATION HEADER
           ========================================================================== */
        .top-bar {
            background-color: var(--accent-charcoal);
            color: var(--bg-cream);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 12px 20px;
            text-align: center;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .top-bar-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .top-bar .separator {
            opacity: 0.3;
            color: var(--accent-gold);
        }

        .top-bar i {
            color: var(--accent-gold);
            margin-right: 4px;
        }

        .main-header {
            background-color: rgba(253, 251, 249, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 0px rgba(35, 39, 44, 0.05);
            transition: var(--transition);
            border-bottom: 1px solid rgba(139, 30, 47, 0.03);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 14px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .main-logo {
            height: 44px;
            width: auto;
            object-fit: contain;
            display: block;
            transition: var(--transition);
        }

        .navbar {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-dark);
            position: relative;
            padding: 8px 0;
            letter-spacing: 0.3px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--primary-crimson);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .nav-link:hover {
            color: var(--primary-crimson);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }

        .nav-btn {
            background: linear-gradient(135deg, var(--primary-crimson) 0%, #6b1422 100%);
            color: var(--bg-cream) !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(139, 30, 47, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-btn:hover {
            background: var(--accent-charcoal);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-crimson);
            cursor: pointer;
            padding: 4px;
            transition: var(--transition);
        }

        /* ==========================================================================
           3. HERO SECTION & ORNAMENTS
           ========================================================================== */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 60px 24px 100px 24px;
            background: radial-gradient(circle at 5% 15%, rgba(245, 234, 236, 0.6) 0%, transparent 60%),
                        radial-gradient(circle at 95% 85%, rgba(243, 230, 220, 0.3) 0%, transparent 50%),
                        var(--bg-cream);
            overflow: hidden;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            align-items: center;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
            width: 100%;
        }

        .hero-content {
            text-align: left;
            position: relative;
        }

        .sparkle-icon {
            color: var(--accent-gold);
            position: absolute;
            font-size: 1.4rem;
            animation: twinkle 3s infinite ease-in-out;
            opacity: 0.8;
        }
        .sp-1 { top: -40px; left: 180px; animation-delay: 0.2s; }
        .sp-2 { bottom: 60px; right: 80px; animation-delay: 1.1s; font-size: 1rem; }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
            50% { opacity: 1; transform: scale(1.4) rotate(90deg); filter: drop-shadow(0 0 10px var(--accent-gold)); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--primary-crimson);
            background-color: var(--primary-soft);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 24px;
            border: 1px solid rgba(139, 30, 47, 0.15);
        }

        .hero-badge i {
            color: var(--accent-gold);
        }

        .hero-content h1 {
            font-family: var(--font-serif);
            font-size: 4.2rem;
            font-weight: 700;
            color: var(--accent-charcoal);
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        .hero-content h1 span {
            color: var(--primary-crimson);
            position: relative;
            display: inline-block;
        }

        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(212, 175, 55, 0.2);
            z-index: -1;
            border-radius: 4px;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 580px;
        }

        .btn-group {
            display: flex;
            justify-content: flex-start;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-crimson) 0%, #6b1422 100%);
            color: var(--bg-cream);
            box-shadow: 0 12px 30px rgba(139, 30, 47, 0.25);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .btn-primary:hover {
            background: var(--accent-charcoal);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--accent-charcoal);
            border: 2px solid var(--accent-charcoal);
        }

        .btn-secondary:hover {
            background-color: var(--accent-charcoal);
            color: var(--bg-cream);
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        /* ARTISANAL VISUAL COLLAGE */
        .hero-graphics {
            position: relative;
            width: 100%;
            height: 480px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .collage-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .collage-container::before {
            content: '';
            position: absolute;
            top: 5%;
            left: 5%;
            width: 85%;
            height: 85%;
            border: 2px dashed rgba(212, 175, 55, 0.3);
            border-radius: 30px;
            pointer-events: none;
            z-index: 0;
            animation: rotateClockwise 60s linear infinite;
        }

        @keyframes rotateClockwise {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .collage-img {
            position: absolute;
            border-radius: 24px;
            object-fit: cover;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 6px solid var(--bg-card);
        }

        .collage-img:hover {
            transform: scale(1.05) translateY(-6px);
            z-index: 10 !important;
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-soft);
        }

        .img-main {
            width: 65%;
            height: 340px;
            top: 12%;
            left: 4%;
            z-index: 3;
        }

        .img-secondary {
            width: 55%;
            height: 250px;
            bottom: 4%;
            right: 2%;
            z-index: 4;
        }

        .img-accent {
            width: 42%;
            height: 190px;
            top: -2%;
            right: 14%;
            z-index: 2;
        }

        /* Floating Glassmorphic Badge */
        .floating-badge {
            position: absolute;
            bottom: 30%;
            left: -15px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 14px 22px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 5;
            border: 1px solid rgba(255,255,255,0.7);
            animation: floatingAnimation 5s ease-in-out infinite alternate;
        }

        @keyframes floatingAnimation {
            0% { transform: translateY(0px) rotate(-1deg); }
            100% { transform: translateY(-12px) rotate(1deg); }
        }

        .floating-badge .icon-badge-box {
            width: 40px;
            height: 40px;
            background-color: var(--primary-crimson);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.1rem;
        }

        .floating-badge span h5 {
            font-family: var(--font-serif);
            font-size: 1.05rem;
            color: var(--accent-charcoal);
            font-weight: 700;
        }

        .floating-badge span p {
            font-size: 0.78rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Decorative Curved Wave Boundary */
        .wave-boundary {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 4;
        }

        .wave-boundary svg {
            position: relative;
            display: block;
            width: calc(130% + 1.3px);
            height: 60px;
        }

        .wave-boundary .shape-fill {
            fill: var(--bg-cream);
        }

        /* Ambient Background Drift Decoration */
        .vector-bg-decorations {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .vector-floating {
            position: absolute;
            color: var(--primary-crimson);
            opacity: 0.035;
            font-size: 4rem;
            animation: slowDrift 10s ease-in-out infinite;
        }

        .v-1 { top: 12%; left: 3%; }
        .v-2 { top: 78%; left: 5%; font-size: 3rem; }
        .v-3 { top: 18%; right: 3%; }
        .v-4 { top: 82%; right: 6%; font-size: 3.2rem; }
        .v-5 { top: 48%; left: 42%; font-size: 2.5rem; }

        @keyframes slowDrift {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(15deg); opacity: 0.05; }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        /* ==========================================================================
           4. SECTIONS UNIVERSAL & BRAND VALUES
           ========================================================================== */
        section {
            padding: 80px 24px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 50px auto;
        }

        .section-subtitle {
            font-size: 0.85rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--primary-crimson);
            display: block;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-family: var(--font-serif);
            font-size: 2.6rem;
            color: var(--accent-charcoal);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .header-line {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-crimson), var(--accent-gold));
            margin: 0 auto 20px auto;
            border-radius: 5px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .promises-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .promise-item {
            background-color: var(--bg-card);
            padding: 40px 30px;
            border-radius: 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(139, 30, 47, 0.02);
            transition: var(--transition);
        }

        .promise-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: rgba(212, 175, 55, 0.2);
        }

        .icon-wrapper {
            width: 74px;
            height: 74px;
            background-color: var(--primary-soft);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px auto;
            font-size: 1.8rem;
            color: var(--primary-crimson);
            transition: var(--transition);
        }

        .promise-item:hover .icon-wrapper {
            background: linear-gradient(135deg, var(--primary-crimson) 0%, #6b1422 100%);
            color: var(--bg-cream);
            transform: scale(1.05) rotate(5deg);
        }

        .promise-item h3 {
            font-family: var(--font-serif);
            font-size: 1.35rem;
            color: var(--accent-charcoal);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .promise-item p {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        /* ==========================================================================
           5. KATALOG MENU (TAB FILTER & PRODUCT CARDS)
           ========================================================================== */
        .tabs-container {
            display: flex;
            justify-content: center;
            gap: 14px;
            margin-bottom: 45px;
            flex-wrap: wrap;
        }

        .tab-btn {
            background-color: transparent;
            border: 1px solid rgba(35, 39, 44, 0.12);
            color: var(--text-dark);
            padding: 10px 28px;
            border-radius: 50px;
            font-family: var(--font-sans);
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-btn:hover,
        .tab-btn.active {
            background: linear-gradient(135deg, var(--primary-crimson) 0%, #6b1422 100%);
            color: var(--bg-cream);
            border-color: var(--primary-crimson);
            box-shadow: 0 6px 15px rgba(139, 30, 47, 0.2);
        }

        .category-content {
            display: none;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 30px;
            animation: fadeIn 0.5s ease-out;
        }

        .category-content.active {
            display: grid;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .product-card {
            background-color: var(--bg-card);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(35, 39, 44, 0.03);
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(212, 175, 55, 0.15);
        }

        .card-image-wrapper {
            position: relative;
            width: 100%;
            height: 230px;
            overflow: hidden;
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-img {
            transform: scale(1.06);
        }

        .tag-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            color: white;
            z-index: 2;
            text-transform: uppercase;
        }

        .tag-signature { background: linear-gradient(135deg, var(--primary-crimson), #A22A3C); }
        .tag-allergen { background-color: var(--tag-allergen); }
        .tag-bestseller { background: linear-gradient(135deg, var(--accent-charcoal), #454D56); }
        .tag-new { background: linear-gradient(135deg, #2563EB, #3B82F6); }
        .tag-luxury { background: linear-gradient(135deg, #4F46E5, #6366F1); }
        .tag-seasonal { background: linear-gradient(135deg, #D97706, #F59E0B); }

        .card-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-body h3 {
            font-family: var(--font-serif);
            font-size: 1.35rem;
            color: var(--accent-charcoal);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .meta-container {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 14px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .meta-info i {
            color: var(--primary-crimson);
            margin-right: 4px;
        }

        .tag-allergen-text {
            color: var(--tag-allergen);
        }

        .product-desc {
            font-size: 0.92rem;
            color: var(--text-muted);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-footer {
            padding: 18px 24px;
            border-top: 1px solid rgba(35, 39, 44, 0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #FDFDFD;
        }

        .price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-charcoal);
        }

        .order-wa-btn {
            background-color: #25D366;
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .order-wa-btn:hover {
            background-color: #1ea851;
            transform: translateY(-2px);
        }

        /* Custom Order Banner */
        .custom-order-banner {
            margin-top: 60px;
            background: linear-gradient(rgba(35, 39, 44, 0.93), rgba(35, 39, 44, 0.93)), 
                        url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?q=80&w=1200&auto=format&fit=crop') no-repeat center center/cover;
            padding: 60px 40px;
            border-radius: 32px;
            color: var(--bg-cream);
            text-align: center;
        }

        .banner-content {
            max-width: 740px;
            margin: 0 auto;
        }

        .custom-order-banner h3 {
            font-family: var(--font-serif);
            font-size: 2.1rem;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .custom-order-banner p {
            font-size: 1rem;
            opacity: 0.85;
            margin-bottom: 30px;
        }

        /* ==========================================================================
           6. INSTAGRAM LIVE FEED STYLE
           ========================================================================== */
        .instagram-section {
            background-color: #F5F6F7;
            max-width: 100%;
            border-top: 1px solid rgba(35, 39, 44, 0.04);
            border-bottom: 1px solid rgba(35, 39, 44, 0.04);
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .instagram-card {
            background-color: #FFFFFF;
            border: 1px solid #EAECEF;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .insta-card-header {
            display: flex;
            align-items: center;
            padding: 14px 18px;
            border-bottom: 1px solid #F1F3F5;
            position: relative;
        }

        .insta-profile-img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
        }

        .insta-meta {
            margin-left: 12px;
        }

        .insta-username {
            font-size: 0.88rem;
            font-weight: 700;
        }

        .insta-location {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .insta-corner-icon {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-crimson);
        }

        .insta-img-link {
            display: block;
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .insta-main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .instagram-card:hover .insta-main-img {
            transform: scale(1.04);
        }

        .insta-caption {
            padding: 16px;
            font-size: 0.88rem;
        }

        .insta-handle {
            color: var(--primary-crimson);
            font-weight: 700;
        }

        .insta-btn-container {
            text-align: center;
            margin-top: 40px;
        }

        .btn-insta-follow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: var(--accent-charcoal);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
        }

        /* ==========================================================================
           7. FAQ ACCORDION STYLE
           ========================================================================== */
        .faq-container {
            max-width: 850px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background-color: var(--bg-card);
            border-radius: 20px;
            padding: 22px 26px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(35, 39, 44, 0.02);
        }

        .faq-question h4 {
            font-size: 1.05rem;
            color: var(--accent-charcoal);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
        }

        .faq-question i {
            color: var(--primary-crimson);
            background-color: var(--primary-soft);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-item p {
            margin-top: 12px;
            padding-left: 44px;
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        /* ==========================================================================
           8. TESTIMONIALS STYLE
           ========================================================================== */
        .testimonials-section {
            background: radial-gradient(circle at 50% 50%, #fdf5f6 0%, #FAF4F5 100%); 
            max-width: 100%;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testi-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 35px;
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .stars {
            color: #FFC107;
            font-size: 0.9rem;
            margin-bottom: 16px;
            display: flex;
            gap: 4px;
        }

        .testi-text {
            font-size: 0.98rem;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testi-user strong {
            display: block;
            color: var(--accent-charcoal);
            font-size: 1rem;
        }

        .testi-user span {
            display: block;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ==========================================================================
           9. MAIN FOOTER
           ========================================================================== */
        .main-footer {
            background-color: var(--accent-charcoal);
            color: var(--bg-cream);
            padding-top: 70px;
            border-top: 3px solid var(--accent-gold);
        }

        .footer-top-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px 50px 24px;
            display: grid;
            grid-template-columns: 1.3fr 1fr 0.9fr;
            gap: 48px;
        }

        .footer-logo {
            height: 50px;
            margin-bottom: 20px;
        }

        .brand-box p {
            font-size: 0.95rem;
            opacity: 0.8;
            max-width: 340px;
        }

        .footer-box h3 {
            font-family: var(--font-serif);
            font-size: 1.35rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
            font-weight: 700;
        }

        .footer-box h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 35px;
            height: 2px;
            background-color: var(--accent-gold);
        }

        .footer-box p {
            font-size: 0.92rem;
            opacity: 0.85;
            margin-bottom: 14px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-box p i {
            margin-top: 4px;
            color: var(--accent-gold);
        }

        .footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            background-color: rgba(253, 251, 249, 0.06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            border: 1px solid rgba(253, 251, 249, 0.1);
        }

        .footer-socials a:hover {
            background-color: var(--primary-crimson);
            transform: translateY(-3px);
            border-color: var(--primary-crimson);
        }

        .footer-bottom {
            border-top: 1px solid rgba(253, 251, 249, 0.06);
            padding: 26px;
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.65;
            letter-spacing: 0.5px;
        }

        /* ==========================================================================
           10. SISTEM RESPONSIVE BREAKPOINTS (MOBILE-FIRST FLUIDITY)
           ========================================================================== */
        
        /* Layar Sedang & Laptop Kecil (Tablet / iPad Landscape) */
        @media (max-width: 1024px) {
            .hero-content h1 { font-size: 3.5rem; }
            .hero-graphics { height: 420px; }
            .footer-top-container { gap: 32px; }
        }

        /* Layar Tablet Menengah (iPad Portrait / Tablet) */
        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .hero-content p { margin-left: auto; margin-right: auto; }
            .btn-group { justify-content: center; }
            .hero-graphics { height: 440px; max-width: 550px; margin: 0 auto; }
            .footer-top-container { grid-template-columns: 1fr; gap: 35px; }
            .brand-box p { max-width: 100%; }
        }

        /* ==========================================================================
   10. SISTEM RESPONSIVE BREAKPOINTS (MOBILE-FIRST FLUIDITY)
   ========================================================================== */

/* Layar Sedang & Laptop Kecil (Tablet / iPad Landscape) */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .hero-graphics { height: 420px; }
    .footer-top-container { gap: 32px; }
}

/* Layar Tablet Menengah (iPad Portrait / Tablet) */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .btn-group { justify-content: center; }
    .hero-graphics { height: 440px; max-width: 550px; margin: 0 auto; }
    .footer-top-container { grid-template-columns: 1fr; gap: 35px; }
    .brand-box p { max-width: 100%; }
}

/* Layar Handphone / Smartphone (Mobile Responsive Core) */
@media (max-width: 768px) {
    /* Top Bar Text Scaling */
    .top-bar { font-size: 0.75rem; padding: 10px 14px; }
    .top-bar-content { gap: 10px; justify-content: center; }
    
    /* Header & Hamburger Menu System */
    .header-container { padding: 12px 18px; }
    .main-logo { height: 38px; }
    .menu-toggle { display: block; } /* Memunculkan tombol hamburger */
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-cream);
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        box-shadow: 0 15px 35px rgba(35, 39, 44, 0.08);
        border-top: 1px solid rgba(35, 39, 44, 0.05);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 0 0 20px 20px;
    }

    /* Saat kelas '.open' ditambahkan via JS */
    .navbar.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link { width: 100%; text-align: center; padding: 6px 0; font-size: 1.05rem; }
    .nav-link::after { display: none; } /* Matikan border hover bawah pada mobile */
    .nav-btn { width: 100%; text-align: center; padding: 12px; }

    /* Hero Typography Scaling */
    .hero-section { padding-top: 40px; padding-bottom: 70px; }
    .hero-content h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 18px; }
    .hero-content p { font-size: 1rem; margin-bottom: 30px; }
    .btn { width: 100%; padding: 14px 28px; font-size: 0.9rem; } /* Tombol Full Width di HP */
    .btn-group { width: 100%; flex-direction: column; gap: 12px; }

    /* Hero Collage Scaling di Handphone */
    .hero-graphics { height: 340px; max-width: 100%; }
    .img-main { height: 240px; }
    .img-secondary { height: 180px; }
    .img-accent { height: 130px; }
    .floating-badge { padding: 10px 16px; bottom: 15px; left: -5px; }
    .floating-badge .icon-badge-box { width: 34px; height: 34px; font-size: 0.95rem; }
    .floating-badge span h5 { font-size: 0.9rem; }
    .floating-badge span p { font-size: 0.7rem; }

    /* Sections Headers */
    section { padding: 60px 18px; }
    .section-header { margin-bottom: 35px; }
    .section-header h2 { font-family: var(--font-serif); font-size: 2rem; }
    
    /* Tabs Selector Switcher */
    .tabs-container { gap: 8px; margin-bottom: 35px; }
    .tab-btn { padding: 10px 20px; font-size: 0.88rem; flex-grow: 1; text-align: center; }

    /* Cards Layout Grid Adjustment */
    .category-content { grid-template-columns: 1fr; gap: 24px; }
    .product-card { max-width: 420px; margin: 0 auto; width: 100%; }
    .card-image-wrapper { height: 210px; }

    /* Custom Order Banner */
    .custom-order-banner { padding: 40px 20px; border-radius: 24px; margin-top: 40px; }
    .custom-order-banner h3 { font-size: 1.6rem; }
    .custom-order-banner p { font-size: 0.92rem; margin-bottom: 24px; }

    /* FAQ Alignment */
    .faq-item { padding: 18px 20px; }
    .faq-question h4 { font-size: 0.95rem; line-height: 1.4; }
    .faq-item p { padding-left: 0; margin-top: 10px; font-size: 0.9rem; }

    /* --------------------------------------------------------------------------
       MODIFIKASI: INSTAGRAM & TESTIMONIAL GANTUNG KE SAMPING (HORIZONTAL SCROLL)
       -------------------------------------------------------------------------- */
    
    /* Force Instagram Grid Menjadi Slider */
    div.instagram-grid, 
    .instagram-grid { 
        display: flex !important; 
        grid-template-columns: none !important; 
        overflow-x: auto !important; 
        scroll-snap-type: x mandatory !important; 
        gap: 16px !important; 
        margin-left: -18px !important; 
        margin-right: -18px !important;
        padding-left: 18px !important; 
        padding-right: 18px !important; 
        padding-bottom: 15px !important;
        scrollbar-width: none !important; /* Sembunyikan scrollbar Firefox */
    }
    
    div.instagram-grid::-webkit-scrollbar,
    .instagram-grid::-webkit-scrollbar {
        display: none !important; /* Sembunyikan scrollbar Chrome / Safari / In-App Browser */
    }

    .instagram-grid .instagram-card,
    .instagram-card { 
        flex: 0 0 260px !important; /* Lebar card IG di mobile */
        max-width: 260px !important;
        scroll-snap-align: start !important; 
        margin: 0 !important; 
        width: auto !important;
    }

    /* Force Testimonial Grid Menjadi Slider */
    div.testimonial-grid,
    .testimonial-grid { 
        display: flex !important; 
        grid-template-columns: none !important;
        overflow-x: auto !important; 
        scroll-snap-type: x mandatory !important; 
        gap: 16px !important; 
        margin-left: -18px !important; 
        margin-right: -18px !important;
        padding-left: 18px !important; 
        padding-right: 18px !important; 
        padding-bottom: 15px !important;
        scrollbar-width: none !important;
    }
    
    div.testimonial-grid::-webkit-scrollbar,
    .testimonial-grid::-webkit-scrollbar {
        display: none !important;
    }

    .testimonial-grid .testi-card,
    .testi-card { 
        flex: 0 0 290px !important; /* Lebar card Testimonial di mobile */
        max-width: 290px !important;
        scroll-snap-align: start !important; 
        padding: 22px !important; 
        margin: 0 !important; 
        width: auto !important;
    }
}

/* Layar Sangat Kecil (Small Mobile Phones) */
@media (max-width: 380px) {
    .hero-content h1 { font-size: 2.1rem; }
    .tab-btn { padding: 10px 14px; font-size: 0.82rem; }
    .price { font-size: 1.1rem; }
    .order-wa-btn { padding: 8px 12px; font-size: 0.8rem; }
}

/* ==========================================================================
   Responsive & Compact Promises Section 
   ========================================================================== */

/* Pengaturan Dasar & Tablet (Layar di bawah 992px) */
@media (max-width: 992px) {
    .promises-section {
        padding: 40px 20px; /* Memperkecil padding atas-bawah section */
    }

    .promises-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Tetap sejajar 3 kolom di tablet */
        gap: 20px;
        max-width: 100%;
    }

    .promise-item {
        padding: 15px; /* Memperkecil ruang di dalam kotak item */
    }

    .promise-item .icon-wrapper {
        width: 50px;  /* Mengecilkan ukuran lingkaran ikon */
        height: 50px;
        font-size: 1.2rem; /* Mengecilkan ukuran icon */
        margin-bottom: 12px;
    }

    .promise-item h3 {
        font-size: 1.1rem; /* Mengecilkan ukuran judul */
        margin-bottom: 8px;
    }

    .promise-item p {
        font-size: 0.85rem; /* Mengecilkan ukuran teks deskripsi */
        line-height: 1.4;
    }
}

/* Pengaturan Handphone / Mobile (Layar di bawah 576px) */
@media (max-width: 576px) {
    .promises-section {
        padding: 25px 15px; /* Jauh lebih tipis di HP agar hemat ruang layar */
    }

    .promises-container {
        /* Mengubah susunan menjadi 1 kolom vertikal yang compact, 
           atau jika ingin sangat hemat tempat, biarkan bertumpuk namun tipis */
        grid-template-columns: 1fr; 
        gap: 15px;
    }

    .promise-item {
        display: flex; /* Mengubah layout item menjadi horizontal (ikon di kiri, teks di kanan) */
        align-items: center;
        text-align: left; /* Teks rata kiri agar lebih rapi di HP */
        padding: 12px;
        background: #fff; /* Opsional: beri background tipis jika perlu */
        border-radius: 8px;
    }

    .promise-item .icon-wrapper {
        width: 45px; /* Ikon lebih kecil */
        height: 45px;
        font-size: 1rem;
        margin-bottom: 0; /* Hapus margin bawah karena beralih ke layout horizontal */
        margin-right: 15px; /* Beri jarak di sebelah kanan ikon */
        flex-shrink: 0; /* Mencegah ikon menjadi gepeng */
    }

    .promise-item div class="promise-text-block" { 
        /* Struktur opsional, jika tanpa bungkus pembantu, gunakan selector di bawah ini */
    }
    
    .promise-item h3 {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .promise-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Gaya default untuk Desktop (Grid tetap berfungsi normal) */
.category-content {
    display: none; /* Disembunyikan secara default oleh sistem tab */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.category-content.active {
    display: grid; /* Tampil sebagai grid di desktop saat tab aktif */
}

/* ==================================================================
   Media Query untuk Mobile & Tablet (Lebar layar di bawah 992px)
   ================================================================== */
@media screen and (max-width: 992px) {
    .menu-grid-container {
        overflow: hidden; /* Mencegah seluruh halaman ikut bergeser */
        padding: 5px 0;
    }

    .category-content.active {
        display: flex !important; /* Ubah grid menjadi flexbox agar memanjang ke samping */
        overflow-x: auto;         /* Mengaktifkan scroll horizontal */
        scroll-snap-type: x mandatory; /* Membuat scroll terasa halus & 'mengunci' di tiap kartu */
        scroll-behavior: smooth;
        padding-bottom: 15px;     /* Ruang ekstra untuk scrollbar bawaan HP */
        padding-left: 15px;       /* Margin dalam di sisi kiri agar kartu pertama tidak terlalu mepet edge */
        padding-right: 15px;      /* Margin dalam di sisi kanan */
        gap: 16px;                /* Jarak antar kartu menu */
        
        /* Menyembunyikan scrollbar bawaan agar UI lebih bersih */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;    /* Firefox */
    }

    /* Menyembunyikan scrollbar untuk Chrome, Safari, dan Opera */
    .category-content.active::-webkit-scrollbar {
        display: none;
    }

    /* Modifikasi Kartu Produk saat Mode Mobile/Tablet */
    .category-content.active .product-card {
        flex: 0 0 280px;          /* Kartu tidak akan mengecil, lebarnya dikunci di 280px */
        scroll-snap-align: start; /* Kartu akan mengunci otomatis saat digeser */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Sentuhan shadow agar lebih pop-up */
    }
}

/* Opsional: Untuk layar HP yang sangat kecil (di bawah 480px), kecilkan sedikit lebar kartu */
@media screen and (max-width: 480px) {
    .category-content.active .product-card {
        flex: 0 0 250px;          /* Lebar kartu disesuaikan jadi 250px di HP ramping */
    }
}