 :root {
            --primary: #6B3A2A;
            --primary-light: #8B5E3C;
            --secondary: #D4A574;
            --accent: #C8553D;
            --gold: #B8860B;
            --cream: #FFF8F0;
            --cream-dark: #F5E6D3;
            --dark: #2C1810;
            --dark-brown: #3E2212;
            --white: #FFFFFF;
            --text: #3E2212;
            --text-light: #6B5B4E;
            --shadow: 0 4px 20px rgba(44, 24, 16, 0.12);
            --shadow-lg: 0 10px 40px rgba(44, 24, 16, 0.18);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background: var(--cream);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--cream-dark); }
        ::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--primary); }

        /* ========== NAVBAR ========== */
        .navbar-bakery {
            background: var(--dark) !important;
            padding: 0.6rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
            position: fixed; top: 0; left: 0; right: 0;
            z-index: 1050;
            transition: all 0.3s ease;
        }
        .navbar-bakery.scrolled {
            padding: 0.3rem 0;
            background: rgba(44, 24, 16, 0.97) !important;
        }
        .navbar-bakery .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 800; font-size: 1.6rem;
            color: var(--secondary) !important;
            letter-spacing: 1px;
        }
        .navbar-bakery .navbar-brand span { color: var(--cream); font-weight: 400; }
        .navbar-bakery .nav-link {
            color: var(--cream) !important;
            font-weight: 500; font-size: 0.88rem;
            letter-spacing: 0.5px; text-transform: uppercase;
            padding: 0.5rem 1rem !important;
            position: relative; transition: color 0.3s;
        }
        .navbar-bakery .nav-link::after {
            content: ''; position: absolute;
            bottom: 0; left: 50%; transform: translateX(-50%);
            width: 0; height: 2px;
            background: var(--secondary); transition: width 0.3s;
        }
        .navbar-bakery .nav-link:hover::after,
        .navbar-bakery .nav-link.active::after { width: 70%; }
        .navbar-bakery .nav-link:hover { color: var(--secondary) !important; }
        .nav-cta-btn {
            padding: 0.4rem 1rem !important;
            border-radius: 50px !important;
            font-size: 0.8rem !important;
            margin-left: 0.4rem;
            transition: all 0.3s !important;
        }
        .nav-cta-btn.call-btn { background: var(--accent) !important; color: var(--white) !important; }
        .nav-cta-btn.call-btn:hover { background: #a84430 !important; transform: translateY(-1px); }
        .nav-cta-btn.wa-btn { background: #25D366 !important; color: var(--white) !important; }
        .nav-cta-btn.wa-btn:hover { background: #1da851 !important; transform: translateY(-1px); }

        /* ========== HERO ========== */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgb(0 0 0 / 36%) 0%, rgb(0 0 0 / 90%) 100%), url(img/hero.jpg) center / cover no-repeat fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 120px;
            /* background: linear-gradient(to top, #4c4b4a, #00000000); */
            z-index: 2;
        }
        .hero-content { position: relative; z-index: 3; }
        .hero-badge {
            display: inline-block;
            background: rgb(96 49 0 / 75%);
            border: 1px solid var(--secondary);
            color: var(--secondary);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }
        .hero-title {
            font-size: 3.8rem; font-weight: 800;
            color: var(--cream); line-height: 1.1; margin-bottom: 1.5rem;
        }
        .hero-title span { color: var(--secondary); }
        .hero-subtitle {
            font-size: 1.1rem;
            color: rgb(255 248 240);
            max-width: 540px;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            font-weight: 300;
        }
        .hero-btn {
            padding: 0.85rem 2.2rem; border-radius: 50px;
            font-weight: 600; font-size: 0.9rem;
            text-transform: uppercase; letter-spacing: 1px;
            transition: all 0.3s; text-decoration: none;
            display: inline-flex; align-items: center; gap: 0.6rem;
        }
        .hero-btn-primary { background: var(--secondary); color: var(--dark); }
        .hero-btn-primary:hover {
            background: var(--gold); color: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
        }
        .hero-btn-outline {
            border: 2px solid rgba(255,248,240,0.4);
            color: var(--cream); background: transparent;
        }
        .hero-btn-outline:hover {
            border-color: var(--cream); color: var(--cream);
            background: rgba(255,255,255,0.08); transform: translateY(-2px);
        }
        .hero-stats { margin-top: 3.5rem; display: flex; gap: 3rem; }
        .hero-stat h3 { font-size: 2.2rem; color: var(--secondary); font-weight: 700; margin-bottom: 0.2rem; }
        .hero-stat p { font-size: 0.8rem; color: rgba(255,248,240,0.6); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }

        /* ========== SECTION COMMON ========== */
        .section-padding { padding: 5rem 0; }
        .section-title { font-size: 2.6rem; font-weight: 700; color: var(--dark); margin-bottom: 0.8rem; }
        .section-title span { color: var(--primary-light); }
        .section-subtitle {
            font-size: 1rem; color: var(--text-light);
            max-width: 560px; margin: 0 auto 3rem; line-height: 1.7;
        }
        .section-divider { width: 60px; height: 3px; background: var(--secondary); margin: 0.8rem auto 1rem; border-radius: 2px; }

        /* ========== ABOUT ========== */
        .about-section { background: var(--white); }
        .about-img-wrapper { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
        .about-img-wrapper img {width: 100%;height: auto;object-fit: cover;transition: transform 0.6s;}
        .about-img-wrapper:hover img { transform: scale(1.05); }
        .about-img-badge {
            position: absolute; bottom: 20px; left: 20px;
            background: var(--primary); color: var(--cream);
            padding: 1rem 1.5rem; border-radius: 12px;
            text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .about-img-badge h4 { font-size: 1.8rem; margin-bottom: 0; }
        .about-img-badge p { font-size: 0.75rem; margin: 0; opacity: 0.8; }
        .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 2rem 0; }
        .about-feature-item {
            display: flex; align-items: center; gap: 0.8rem;
            padding: 0.8rem; background: var(--cream); border-radius: 10px; transition: all 0.3s;
        }
        .about-feature-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
        .about-feature-item i {
            width: 40px; height: 40px; background: var(--primary);
            color: var(--secondary); border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; flex-shrink: 0;
        }
        .about-feature-item span { font-size: 0.85rem; font-weight: 500; color: var(--text); }

        /* ========== PRODUCTS ========== */
        .products-section { background: var(--cream); }
        .product-card {
            background: var(--white); border-radius: 16px; overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer; height: 100%;
            border: 1px solid rgba(212, 165, 116, 0.15);
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }
        .product-card-img {position: relative;height: auto;overflow: hidden;background: var(--cream-dark);}
        .product-card-img img {
            width: 100%; height: 100%; object-fit: contain;
            padding: 1.2rem; transition: transform 0.5s;
        }
        .product-card:hover .product-card-img img { transform: scale(1.08); }
        .product-card-badge {
            position: absolute; top: 12px; left: 12px;
            background: var(--accent); color: var(--white);
            font-size: 0.65rem; font-weight: 600;
            padding: 0.3rem 0.7rem; border-radius: 50px;
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .product-card-body { padding: 1.3rem; }
        .product-card-category {
            font-size: 0.7rem; color: var(--primary-light);
            text-transform: uppercase; letter-spacing: 1.5px;
            font-weight: 600; margin-bottom: 0.5rem;
        }
        .product-card-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem; font-weight: 700;
            color: var(--dark); margin-bottom: 0.6rem; line-height: 1.3;
        }
        .product-card-desc {
            font-size: 0.82rem; color: var(--text-light); line-height: 1.6;
            margin-bottom: 1rem;
            display: -webkit-box; -webkit-line-clamp: 2;
            -webkit-box-orient: vertical; overflow: hidden;
        }
        .product-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
        .product-card-tag {
            font-size: 0.65rem; padding: 0.25rem 0.6rem; border-radius: 50px;
            background: var(--cream); color: var(--primary-light);
            font-weight: 500; border: 1px solid rgba(107, 94, 60, 0.15);
        }
        .product-card-footer {
            display: flex; align-items: center; justify-content: space-between;
            padding-top: 0.8rem; border-top: 1px solid rgba(212, 165, 116, 0.2);
        }
        .product-sku { font-size: 0.72rem; color: var(--text-light); font-weight: 500; }
        .product-card-btn {
            font-size: 0.75rem; color: var(--primary); font-weight: 600;
            text-decoration: none; display: flex; align-items: center; gap: 0.3rem;
            transition: color 0.3s;
        }
        .product-card-btn:hover { color: var(--accent); }
        .product-stock-badge { font-size: 0.7rem; display: flex; align-items: center; gap: 0.3rem; }
        .product-stock-badge.in-stock { color: #27ae60; }
        .product-stock-badge.out-stock { color: var(--accent); }
        .product-stock-badge i { font-size: 0.45rem; }

        /* ========== PRODUCT MODAL ========== */
        .modal-content {
            border: none; border-radius: 20px; overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
        }
        .modal-header { background: var(--dark); border-bottom: none; padding: 1.2rem 1.5rem; }
        .modal-title {
            font-family: 'Playfair Display', serif;
            color: var(--secondary); font-weight: 700; font-size: 1.2rem;
        }
        .modal-header .btn-close { filter: invert(1); opacity: 0.7; }
        .modal-body { padding: 0; }
        .modal-product-img {
            width: 100%;
            height: auto;
            object-fit: contain;
            background: var(--cream);
            padding: 2rem;
        }
        .modal-product-details { padding: 1.8rem; }
        .modal-product-category {
            font-size: 0.75rem; color: var(--primary-light);
            text-transform: uppercase; letter-spacing: 2px;
            font-weight: 600; margin-bottom: 0.5rem;
        }
        .modal-product-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.7rem; font-weight: 700;
            color: var(--dark); margin-bottom: 1rem; line-height: 1.2;
        }
        .modal-product-desc { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; }
        .modal-product-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 1.5rem; }
        .modal-meta-item {
            padding: 0.8rem 1rem; background: var(--cream); border-radius: 10px;
            display: flex; align-items: center; gap: 0.7rem;
        }
        .modal-meta-item i { color: var(--primary-light); font-size: 0.9rem; width: 20px; text-align: center; }
        .modal-meta-item span { font-size: 0.8rem; color: var(--text); font-weight: 500; }
        .modal-meta-item small { display: block; font-size: 0.65rem; color: var(--text-light); font-weight: 400; }
        .modal-cta-buttons { display: flex; gap: 0.8rem; }
        .modal-cta-buttons .btn {
            flex: 1; padding: 0.85rem 1rem; border-radius: 12px;
            font-weight: 600; font-size: 0.88rem;
            display: flex; align-items: center; justify-content: center; gap: 0.6rem;
            transition: all 0.3s; text-decoration: none;
        }
        .btn-call-modal { background: var(--accent); color: var(--white); border: none; }
        .btn-call-modal:hover {
            background: #a84430; color: var(--white);
            transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200, 85, 61, 0.4);
        }
        .btn-wa-modal { background: #25D366; color: var(--white); border: none; }
        .btn-wa-modal:hover {
            background: #1da851; color: var(--white);
            transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials-section { background: var(--dark); position: relative; overflow: hidden; }
        .testimonials-section::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: url('https://images.unsplash.com/photo-1517433670267-08bbd4be890f?w=1600&q=60') center/cover no-repeat;
            opacity: 0.08;
        }
        .testimonials-section .section-title { color: var(--cream); }
        .testimonials-section .section-subtitle { color: rgba(255,248,240,0.6); }
        .testimonials-section .section-divider { background: var(--secondary); }
        .testimonial-card {
            background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
            padding: 2rem; height: 100%; transition: all 0.3s; position: relative;
        }
        .testimonial-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-4px); border-color: rgba(212, 165, 116, 0.3);
        }
        .testimonial-quote-icon { font-size: 2.5rem; color: var(--secondary); opacity: 0.4; margin-bottom: 1rem; line-height: 1; }
        .testimonial-text { font-size: 0.92rem; color: rgba(255,248,240,0.8); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
        .testimonial-stars { margin-bottom: 1.2rem; color: var(--gold); font-size: 0.85rem; }
        .testimonial-stars i { margin-right: 1px; }
        .testimonial-author { display: flex; align-items: center; gap: 1rem; }
        .testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--secondary); }
        .testimonial-author-name { font-weight: 600; color: var(--cream); font-size: 0.95rem; margin-bottom: 0.1rem; }
        .testimonial-author-role { font-size: 0.75rem; color: rgba(255,248,240,0.5); }

        /* ========== FOOTER ========== */
        .footer-section { background: #1a0f0a; padding: 4rem 0 0; }
        .footer-brand { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.5rem; color: var(--secondary); margin-bottom: 1rem; }
        .footer-brand span { color: var(--cream); font-weight: 400; }
        .footer-desc { font-size: 0.85rem; color: rgba(255,248,240,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
        .footer-social a {
            width: 38px; height: 38px; border-radius: 50%;
            background: rgba(255,255,255,0.08); color: var(--cream);
            display: inline-flex; align-items: center; justify-content: center;
            margin-right: 0.5rem; transition: all 0.3s; font-size: 0.95rem;
        }
        .footer-social a:hover { background: var(--secondary); color: var(--dark); transform: translateY(-3px); }
        .footer-heading {
            font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
            color: var(--cream); margin-bottom: 1.3rem;
            position: relative; padding-bottom: 0.8rem;
        }
        .footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--secondary); }
        .footer-links { list-style: none; padding: 0; margin: 0; }
        .footer-links li { margin-bottom: 0.6rem; }
        .footer-links a {
            color: rgba(255,248,240,0.5); text-decoration: none; font-size: 0.85rem;
            transition: all 0.3s; display: flex; align-items: center; gap: 0.5rem;
        }
        .footer-links a:hover { color: var(--secondary); padding-left: 5px; }
        .footer-links a i { font-size: 0.7rem; color: var(--secondary); }
        .footer-contact-item { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
        .footer-contact-item i { color: var(--secondary); margin-top: 3px; font-size: 0.9rem; width: 16px; text-align: center; }
        .footer-contact-item span { font-size: 0.85rem; color: rgba(255,248,240,0.5); line-height: 1.6; }
        .footer-contact-item a { color: rgba(255,248,240,0.5); text-decoration: none; }
        .footer-contact-item a:hover { color: var(--secondary); }
        .footer-bottom { margin-top: 3rem; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
        .footer-bottom p { font-size: 0.78rem; color: rgba(255,248,240,0.35); margin: 0; }

        /* ========== FLOATING BUTTONS ========== */
        .floating-buttons {
            position: fixed; bottom: 24px; right: 24px; z-index: 9999;
            display: flex; flex-direction: column; gap: 12px;
        }
        .floating-btn {
            width: 56px; height: 56px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.4rem; text-decoration: none;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: all 0.3s; position: relative;
        }
        .floating-btn:hover { transform: scale(1.1); color: white; }
        .floating-btn-wa { background: #25D366; }
        .floating-btn-wa:hover { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); }
        .floating-btn-call { background: var(--accent); }
        .floating-btn-call:hover { box-shadow: 0 6px 25px rgba(200, 85, 61, 0.5); }
        .floating-btn .floating-tooltip {
            position: absolute; right: 68px; background: var(--dark); color: var(--cream);
            padding: 0.4rem 0.9rem; border-radius: 8px; font-size: 0.75rem; font-weight: 500;
            white-space: nowrap; opacity: 0; pointer-events: none;
            transition: all 0.3s; transform: translateX(8px);
        }
        .floating-btn:hover .floating-tooltip { opacity: 1; transform: translateX(0); }
        .wa-icon-svg { width: 1.3em; height: 1.3em; fill: currentColor; vertical-align: -0.2em; }

        /* ========== TOAST ========== */
        .custom-toast {
            position: fixed; top: 90px; right: 24px; z-index: 9999;
            background: var(--dark); color: var(--cream);
            padding: 1rem 1.5rem; border-radius: 12px; font-size: 0.85rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            border-left: 4px solid var(--secondary);
            display: none; align-items: center; gap: 0.8rem;
            animation: slideInRight 0.4s ease;
        }
        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed; bottom: 160px; right: 28px; z-index: 9998;
            width: 42px; height: 42px; border-radius: 50%;
            background: var(--primary); color: var(--cream); border: none;
            display: none; align-items: center; justify-content: center;
            font-size: 0.9rem; cursor: pointer; transition: all 0.3s;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .back-to-top:hover { background: var(--secondary); color: var(--dark); transform: translateY(-3px); }
        .back-to-top.show { display: flex; }

        /* ========== ANIMATIONS ========== */
        .fade-up { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
        .fade-up.visible { opacity: 1; transform: translateY(0); }
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 991px) {
            .hero-title { font-size: 2.6rem; }
            .hero-stats { gap: 2rem; }
            .hero-stat h3 { font-size: 1.7rem; }
            .about-features { grid-template-columns: 1fr; }
            .modal-product-meta { grid-template-columns: 1fr; }
            .modal-cta-buttons { flex-direction: column; }
            .modal-product-img { height: 220px; }
            .navbar-collapse {
                background: var(--dark); padding: 1rem; border-radius: 12px;
                margin-top: 0.5rem; box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            }
            .nav-cta-btn { display: inline-block !important; margin-top: 0.3rem; margin-bottom: 0.3rem; text-align: center; }
        }
        @media (max-width: 767px) {
            .hero-title { font-size: 2rem; }
            .hero-subtitle { font-size: 0.95rem; }
            .hero-stats { flex-direction: column; gap: 1.2rem; }
            .section-title { font-size: 2rem; }
            .section-padding { padding: 3.5rem 0; }
            .about-img-wrapper img { height: 280px; }
            .floating-buttons { bottom: 16px; right: 16px; }
            .floating-btn { width: 50px; height: 50px; font-size: 1.2rem; }
            .back-to-top { right: 20px; bottom: 140px; width: 38px; height: 38px; }
        }