            :root {
                --primary-red: #C41E3A;
                --maroon: #800020;
                --cream: #F5F5DC;
                --light-cream: #FEFDF7;
                --dark-maroon: #5D001E;
                --text-dark: #2C2C2C;
                --text-light: #666;
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: 'Poppins', sans-serif; 
                line-height: 1.6;
                color: var(--text-dark);
                overflow-x: hidden;
            }

            /* Header */
            header {
        background: linear-gradient(135deg, var(--maroon) 0%, var(--primary-red) 100%);
        color: white;
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
        }
        header.scrolled {
        background: rgba(128, 0, 32, 0.95);
        backdrop-filter: blur(10px);
        padding: 0.5rem 0;
        }


            .nav-container {
                max-width: 1200px;
                margin: 0 auto;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0 1rem;
            }

            .logo img {
        width: 40px !important;   /* paksa lebar jadi kecil */
        height: auto !important;  /* biar tetap proporsional */
        }


            .nav-menu {
                display: flex;
                list-style: none;
                gap: 2rem;
            }

            .nav-menu a {
                color: white;
                text-decoration: none;
                font-weight: 500;
                transition: color 0.3s ease;
                position: relative;
            }

            .nav-menu a:hover {
                color: var(--cream);
            }

            .nav-menu a::after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                bottom: -5px;
                left: 0;
                background: var(--cream);
                transition: width 0.3s ease;
            }

            .nav-menu a:hover::after {
                width: 100%;
            }

            .mobile-menu {
                display: none;
                color: white;
                font-size: 1.5rem;
                cursor: pointer;
            }

            /* Hero Section */
            .hero {
                background: linear-gradient(135deg, var(--maroon) 0%, var(--primary-red) 50%, var(--dark-maroon) 100%);
                color: white;
                padding: 120px 0 80px;
                position: relative;
            }

            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            }

            .hero-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1rem;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: center;
                position: relative;
                z-index: 2;
            }

            .hero-content h1 {
                font-size: 3.5rem;
                font-weight: 700;
                margin-bottom: 1rem;
                line-height: 1.2;
                animation: fadeInUp 1s ease;
            }

            .hero-content .subtitle {
                font-size: 1.3rem;
                color: var(--cream);
                margin-bottom: 2rem;
                animation: fadeInUp 1s ease 0.2s both;
            }

            .hero-content p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
                animation: fadeInUp 1s ease 0.4s both;
            }

            .cta-buttons {
                display: flex;
                gap: 1rem;
                animation: fadeInUp 1s ease 0.6s both;
            }

            .btn {
                padding: 1rem 2rem;
                border: none;
                border-radius: 50px;
                font-weight: 600;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                transition: all 0.3s ease;
                cursor: pointer;
            }

            .btn-primary {
                background: var(--cream);
                color: var(--maroon);
            }

            .btn-primary:hover {
                background: white;
                transform: translateY(-2px);
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            }

            .btn-outline {
                background: transparent;
                color: white;
                border: 2px solid white;
            }

            .btn-outline:hover {
                background: white;
                color: var(--maroon);
                transform: translateY(-2px);
            }

            .hero-image {
                position: relative;
                animation: fadeInRight 1s ease 0.8s both;
            }

            .hero-image img {
                width: 100%;
                border-radius: 20px;
            }

            /* Stats Section */
            .stats {
                background: var(--light-cream);
                padding: 4rem 0;
            }

            .stats-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1rem;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 2rem;
            }

            .stat-item {
                text-align: center;
                padding: 2rem;
                background: white;
                border-radius: 15px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
                transition: transform 0.3s ease;
            }

            .stat-item:hover {
                transform: translateY(-5px);
            }

            .stat-number {
                font-size: 2.5rem;
                font-weight: 700;
                color: var(--primary-red);
                margin-bottom: 0.5rem;
            }

            .stat-label {
                color: var(--text-light);
                font-weight: 500;
            }

            /* About Section */
            .about {
                padding: 6rem 0;
                background: white;
            }

            .about-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1rem;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: center;
            }

            .about-content h2 {
                font-size: 2.5rem;
                color: var(--maroon);
                margin-bottom: 1rem;
            }

            .about-content .highlight {
                color: var(--primary-red);
                font-weight: 600;
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }

            .about-content p {
                color: var(--text-light);
                margin-bottom: 1.5rem;
                font-size: 1.1rem;
            }

            .features {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                margin-top: 2rem;
            }

            .feature-item {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                color: var(--text-dark);
            }

            .feature-item i {
                color: var(--primary-red);
            }

            .about-image {
                position: relative;
            }

            .about-image img {
                width: 100%;
                border-radius: 20px;
                box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            }


            .struktur {
        padding: 6rem 0;
        background: white;;
        color: var(--maroon);
        }

        .struktur-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        text-align: center;
        }

        .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
        color: var(--maroon);
        }

        .struktur-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2 rem;
        justify-items: center;
        }

        .struktur-card {
        background: white;
        border-radius: 20px;
        padding: 1.2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        width: 100%;
        max-width: 220px;
        }

        .struktur-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .struktur-photo {
        width: 150px;         /* width */
        height: 200px;        /* height to keep 3:4 ratio (150 * 4/3 = 200) */
        border-radius: 0;     /* no rounding, as requested */
        object-fit: cover;    /* ensures the image covers the area without distortion */
        margin-bottom: 1rem;
        border: 4px solid var(--primary-red);
        }


        .struktur-name {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.3rem;
        color: var(--maroon);
        }

        .struktur-position {
        font-size: 1rem;
        color: var(--text-light);
        font-weight: 500;
        }
            .products {
                padding: 6rem 0;
            }

            .section-header {
                text-align: center;
                margin-bottom: 4rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
                color: var(--maroon);
                margin-bottom: 1rem;
            }

            .section-header p {
                color: var(--text-light);
                font-size: 1.1rem;
                max-width: 600px;
                margin: 0 auto;
            }

            .products-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1rem;
            }

            .product-filters {
                display: flex;
                justify-content: center;
                gap: 1rem;
                margin-bottom: 3rem;
                flex-wrap: wrap;
            }

            .filter-btn {
                padding: 0.8rem 1.5rem;
                background: white;
                color: var(--text-dark);
                border: 2px solid var(--cream);
                border-radius: 25px;
                cursor: pointer;
                transition: all 0.3s ease;
                font-size: 0.9rem;
            }

            .filter-btn.active,
            .filter-btn:hover {
                background: var(--primary-red);
                color: white;
                border-color: var(--primary-red);
            }

        

            .product-card {
                background: white;
                border-radius: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                transition: all 0.3s ease;
                transform: translateY(0);
                position: relative;
                z-index: 1;
            }

            .product-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 50px rgba(0,0,0,0.15);
                z-index: 2;
            }


      

        .product-image img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain; /* gambar tetap proporsional */
        border-radius: 12px;
        }

  .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }



.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.product-card .harga {
    font-weight: bold;
    color: #e74c3c;
}

.product-check {
    position: absolute;
    top: 12px;
    left: 12px;
    transform: scale(1.3);
}

.jumlah-input {
    margin-top: 10px;
    width: 70px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #ff5722;
    border: none;
    color: #fff;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #e64a19;
}

            .product-info {
                padding: 1.5rem;
            }

            .product-name {
                font-size: 1.3rem;
                font-weight: 600;
                color: var(--maroon);
                margin-bottom: 0.5rem;
            }

            .product-description {
                color: var(--text-light);
                margin-bottom: 1rem;
                font-size: 0.9rem;
            }

            .product-price {
                font-size: 1.2rem;
                font-weight: 700;
                color: var(--primary-red);
                margin-bottom: 1rem;
            }

            .product-btn {
                width: 100%;
                padding: 0.8rem;
                background: var(--primary-red);
                color: white;
                border: none;
                border-radius: 10px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .product-btn:hover {
                background: var(--maroon);
                transform: translateY(-2px);
            }

            /* Testimonials */
            .testimonials {
                padding: 6rem 0;
                background: white;
            }

            .testimonials-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1rem;
            }

            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
                margin-top: 3rem;
            }

            .testimonial-card {
                background: var(--light-cream);
                padding: 2rem;
                border-radius: 20px;
                position: relative;
                transition: transform 0.3s ease;
            }

            .testimonial-card:hover {
                transform: translateY(-5px);
            }

            .testimonial-card::before {
                content: '"';
                position: absolute;
                top: -10px;
                left: 20px;
                font-size: 4rem;
                color: var(--primary-red);
            }

            .testimonial-content {
                margin-bottom: 1.5rem;
                font-style: italic;
                color: var(--text-dark);
            }

            .testimonial-author {
                display: flex;
                align-items: center;
                gap: 1rem;
            }

            .author-avatar {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background: var(--primary-red);
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: 600;
            }

            .author-info h4 {
                color: var(--maroon);
                margin-bottom: 0.2rem;
            }

            .author-info p {
                color: var(--text-light);
                font-size: 0.9rem;
            }

            .rating {
                margin-top: 0.5rem;
            }

            .rating i {
                color: #FFD700;
            }

            /* Contact Section */
            .contact {
                padding: 6rem 0;
                background: linear-gradient(135deg, var(--maroon) 0%, var(--primary-red) 100%);
                color: white;
            }

            .contact-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1rem;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }

            .contact-info h2 {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .contact-info p {
                margin-bottom: 2rem;
            }

            .contact-details {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .contact-item {
                display: flex;
                align-items: center;
                gap: 1rem;
            }

            .contact-item i {
                width: 20px;
                color: var(--cream);
            }

          


            .social-links {
                display: flex;
                gap: 1rem;
                margin-top: 1rem;
            }

            .social-links a {
                width: 60px;
                height: 60px;
                transition: all 0.3s ease;
                color: white;
            }

            .social-links a:hover {
                color: var(--light-cream);
                transform: translateY(-3px);
            }

            /* Footer */
            .footer {
                background: var(--dark-maroon);
                color: white;
                padding: 3rem 0 1rem;
            }

            .footer-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1rem;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
            }

            .footer-section h3 {
                margin-bottom: 1rem;
                color: var(--cream);
            }

            .footer-section p,
            .footer-section a {
                color: rgba(255,255,255,0.8);
                text-decoration: none;
                display: block;
                
            }

            .footer-section a:hover {
                color: var(--cream);
            }

            .footer-bottom {
                border-top: 1px solid rgba(255,255,255,0.1);
                margin-top: 2rem;
                padding-top: 1rem;
                text-align: center;
                color: rgba(255,255,255,0.6);
            }

            /* Animations */
            @keyframes fadeInUp {
                from {
                    transform: translateY(30px);
                }
                to {
                    transform: translateY(0);
                }
            }

            @keyframes fadeInRight {
                from {
                    transform: translateX(30px);
                }
                to {
                    transform: translateX(0);
                }
            }

            /* Mobile Navigation */
            @media (max-width: 768px) {
                .nav-menu {
                    position: fixed;
                    top: 70px;
                    left: -100%;
                    width: 100%;
                    height: calc(100vh - 70px);
                    background: var(--maroon);
                    flex-direction: column;
                    justify-content: flex-start;
                    align-items: center;
                    padding-top: 2rem;
                    transition: left 0.3s ease;
                    z-index: 999;
                }
                
                .nav-menu.active {
                    left: 0;
                }
                
                .nav-menu li {
                    margin: 1rem 0;
                }
                
                .nav-menu a {
                    font-size: 1.2rem;
                }

                .mobile-menu {
                    display: block;
                }
            }

            /* Responsive Design */
            @media (max-width: 1024px) {
                .nav-container {
                    padding: 0 2rem;
                }

                .hero-container,
                .about-container,
                .contact-container {
                    padding: 0 2rem;
                }

                .hero-content h1 {
                    font-size: 3rem;
                }

                .products-grid {
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 1.5rem;
                }
            }

            .cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff7f50;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}
.modal-content {
    background: white;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    border-radius: 10px;
}
.close {
    float: right;
    font-size: 20px;
    cursor: pointer;
}
.cart-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.checkout-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

            @media (max-width: 768px) {
                .hero {
                    padding: 100px 0 60px;
                }

                .hero-container,
                .about-container,
                .contact-container {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                    padding: 0 1rem;
                }

                .hero-content h1 {
                    font-size: 2.2rem;
                    text-align: center;
                }

                .hero-content .subtitle {
                    font-size: 1.1rem;
                    text-align: center;
                }

                .hero-content p {
                    text-align: center;
                    font-size: 1rem;
                }

                .cta-buttons {
                    flex-direction: column;
                    align-items: center;
                    gap: 0.8rem;
                }

                .btn {
                    padding: 0.8rem 1.5rem;
                    font-size: 0.9rem;
                    width: 100%;
                    max-width: 250px;
                    justify-content: center;
                }

                .features {
                    grid-template-columns: 1fr;
                    gap: 0.8rem;
                }

                .product-filters {
                    gap: 0.5rem;
                    padding: 0 0.5rem;
                }

                .filter-btn {
                    padding: 0.6rem 1rem;
                    font-size: 0.8rem;
                }

                .products-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }

                .product-card {
                    max-width: 100%;
                }

                .section-header h2 {
                    font-size: 2rem;
                }

                .about-content h2 {
                    font-size: 2rem;
                    text-align: center;
                }

                .about-content .highlight,
                .about-content p {
                    text-align: center;
                }

                .testimonials-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }

                .contact-info h2 {
                    font-size: 2rem;
                    text-align: center;
                }

                .contact-info p {
                    text-align: center;
                }

                .contact-details {
                    align-items: center;
                }

                .contact-item {
                    justify-content: center;
                    text-align: center;
                }

                .social-links {
                    justify-content: center;
                }

                .stats-container {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 1rem;
                }

                .stat-item {
                    padding: 1.5rem;
                }

                .stat-number {
                    font-size: 2rem;
                }

                .footer-container {
                    grid-template-columns: 1fr;
                    text-align: center;
                    gap: 2rem;
                }
            }

            @media (max-width: 480px) {
                .hero-content h1 {
                    font-size: 1.8rem;
                }

                .hero-content .subtitle {
                    font-size: 1rem;
                }

                .section-header h2 {
                    font-size: 1.8rem;
                }

                .about-content h2 {
                    font-size: 1.8rem;
                }

                .contact-info h2 {
                    font-size: 1.8rem;
                }

                .stats-container {
                    grid-template-columns: 1fr;
                }

                .product-filters {
                    flex-direction: column;
                    align-items: center;
                }

                .filter-btn {
                    width: 200px;
                }

                .testimonial-card {
                    padding: 1.5rem;
                }

                .contact-form {
                    padding: 1.5rem;
                }
            }

            /* Scroll animations */
            .animate-on-scroll {
                transform: translateY(30px);
                transition: all 0.6s ease;
            }   

            .animate-on-scroll.animated {
                transform: translateY(0);
            }