        body {
            font-family: 'Poppins', sans-serif;
            background-color: #F7F3EE;
            margin: 0;
        }

        /* container */
        .container {
            width: 90%;
            margin: 0 auto;
            /* border: 1px solid red; */
        }

        /* Warna Navbar*/
        .bg-brand-dark {
            background-color: #583B37 !important;
        }

        .text-brand-dark {
            color: #583B37 !important;
        }

        .bg-brand-accent {
            background-color: #8D6E63 !important;
        }

        .bg-card-beige {
            background-color: #F5E6D3;
        }

        /* Navbar Customization */
        .navbar-brand-logo {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            color: #3E2723;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .navbar-brand {
            gap: 8px;
        }

        .navbar {
            padding: 10px 15px;
            width: 100%;
            height: 81px;
        }

        .nav-link {
            color: white;
        }

        .nav-link:hover {
            color: #2264bb !important;
        }

        /* container */
        .container {
            max-width: fit-content;
        }

        /* Hero Section */
        .hero-section {
            margin-top: 70px;
            /* Offset for fixed navbar */
            height: 600px;
            position: relative;
            background-image: url('../gambar/banner.jpg');
            background-size: cover;
            background-position: center;
        }

        .hero-overlay {
            display: flex;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url(/gambar/banner.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            width: 100%;
            height: 800px;
            flex-direction: column;
            gap: 40px;
            padding: 30px 100px;
            align-items: center;
            justify-content: center;
        }

        .selection-section {
            background-color: #F2EBE9;
        }

        .display-4 {
            color: white;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /*Button*/
        .btn-signature {
            background-color: #4D312E;
            color: white;
            width: 228px;
            height: 57px;
            border: none;
            padding: 10px 30px;
            margin: 0 10px;
            border-radius: 25px;
            font-weight: bold;
            transition: background-color 0.3s, color 0.3s;
        }

        .btn-signature:hover {
            background-color: #8D6E63;
            color: white;
        }

        .btn-roti {
            flex-wrap: wrap;
            background-color: #8D6E63;
            color: white;
            width: 228px;
            height: 57px;
            border: none;
            padding: 10px 30px;
            margin: 0 10px;
            border-radius: 25px;
            font-weight: bold;
            transition: background-color 0.3s, color 0.3s;
        }

        .btn-roti:hover {
            background-color: #4D312E;
            color: white;
        }

        .btn-kopi {
            background-color: #8D6E63;
            color: white;
            width: 228px;
            height: 57px;
            border: none;
            padding: 10px 30px;
            margin: 0 10px;
            border-radius: 25px;
            font-weight: bold;
            transition: background-color 0.3s, color 0.3s;
        }

        .btn-kopi:hover {
            background-color: #4D312E;
            color: white;
        }


        /* --- Product Hover Zoom Effect --- */
        .product-frame {
            border: 4px solid var(--brand-brown);
            border-radius: 1rem;
            overflow: hidden;
            /* Mencegah gambar keluar frame saat zoom */
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            background-color: #eee;
        }

        .product-frame {
            border: 10px solid #3E2723;
            border-radius: 1rem;
            overflow: hidden;
            /* Mencegah gambar keluar frame saat zoom */
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            background-color: #eee;
        }

        .product-img-zoom {
            transition: transform 0.5s ease;
            width: 100%;
            display: block;
        }

        /* Trigger zoom saat mouse hover */
        .product-frame:hover .product-img-zoom {
            transform: scale(1.1);
        }


        /* Teks */
        .Judul {
            color: #4D312E !important;
            font-size: 2rem;
            font-weight: bold;
        }

        .Sejarah {
            color: #6E4946 !important;
            font-size: 2rem;
            font-weight: bold;
        }

        .text-muted {
            color: #6E4946 !important;
            font-size: 1rem;
        }

        /* BackToTop Button */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            background-color: #D46929;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s, transform 0.3s;
            z-index: 1000;
        }

        .back-to-top:hover {
            background-color: #e67839;
            transform: scale(1.2);
        }

        /* Footer */
        footer {
            background-color: #6E4946;
            color: white;
            padding: 20px 0;
        }


         /* Responsif Tablet*/
        @media (max-width: 768px) {
            .hero-overlay {
                padding: 20px;
                height: 400px;
            }

            .hero-section {
                height: 400px;
            }

            .navbar {
                padding: 10px 20px;
                height: auto;
                backdrop-filter: none;

            }
        
           /* Tombol Katalog Responsif */
            .container-grid-buttons {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 10px;
                width: 100%;
                border: 2px dashed;
                padding: 10px;
                justify-items: center;
            }
        }


        /* Responsif mobile large */
        @media (max-width: 480px) {
            .hero-overlay {
                padding: 15px;
                height: 300px;
            }

            .hero-section {
                height: 300px;
            }

            .navbar {
                padding: 10px 15px;
                height: auto;
                backdrop-filter: none;
            }

            /* Tombol Katalog Responsif 2 */
            .container-grid-buttons {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
                gap: 8px;
                width: 100%;
                border: 2px dashed;
                padding: 8px;
                justify-items: center;
            }
        }
        
        @media (max-width: 992px) {
            .hero-overlay {
                padding: 20px;
                height: 400px;
            }

            .hero-section {
                height: 400px;
            }

            .navbar {
                padding: 10px 20px;
                height: auto;
                backdrop-filter: none;

            }
        
           /* Tombol Katalog Responsif */
            .container-grid-buttons {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 10px;
                width: 100%;
                border: 2px dashed;
                padding: 10px;
                justify-items: center;
            }
        }