
        /* ===== CHARACTER ANIMATION STYLES ===== */
        .char-span {
            display: inline-block;
            white-space: pre-wrap;
            transition: opacity 0.12s ease-out, transform 0.18s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            opacity: 1;
            transform: translateY(0);
        }

        .char-span.disappear {
            opacity: 0 !important;
            transform: translateY(6px) scale(0.96);
            transition: opacity 0.1s ease-in, transform 0.2s ease-out;
        }

        .char-span.appear {
            animation: charPopIn 0.22s cubic-bezier(0.2, 0.9, 0.6, 1.1) forwards;
        }

        @keyframes charPopIn {
            0% {
                opacity: 0;
                transform: translateY(12px) scale(0.92);
                filter: blur(2px);
            }
            40% {
                opacity: 0.6;
                transform: translateY(2px) scale(0.98);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        @media (max-width: 640px) {
            .rotating-text {
                line-height: 1.3;
            }
            .char-span {
                white-space: normal;
            }
        }

        /* ===== DISTRIBUTOR SECTION STYLES ===== */
        .btn-icon {
            width: 22px;
            height: 22px;
            object-fit: contain;
            margin-right: 6px;
            vertical-align: middle;
        }

        .btn-distributor {
            background-color: #fff;
            border: none;
            padding: 12px 30px;
            font-size: 18px;
            font-weight: bold;
            color: black;
            text-align: center;
            display: inline-block;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            width: auto;
            min-width: 250px;
        }

        .btn-distributor:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            color: black;
        }

        @media (max-width: 768px) {
            .btn-distributor {
                padding: 10px 20px;
                font-size: 14px;
                min-width: 200px;
            }
        }

        /* ===== HEADER ===== */
        .menu-area {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .menu-area.scrolled {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 2px solid rgba(255, 215, 0, 0.15);
        }

        .menu-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo img {
            max-height: 50px;
            width: auto;
        }

        /* ===== DESKTOP MENU ===== */
        .navbar-wrap.main-menu {
            display: flex !important;
        }

        .navigation {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 5px;
        }

        .navigation li a {
            color: rgba(255, 255, 255, 0.9);
            padding: 10px 22px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border-radius: 8px;
            display: block;
        }

        .navigation li a:hover {
            color: #FFD700;
        }

        /* ===== HAMBURGER BUTTON ===== */
        .mobile-menu-toggle {
            display: none !important;
            align-items: center;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .hamburger .bar {
            width: 28px;
            height: 3px;
            background: #ffffff;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: block;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        .hamburger:hover .bar {
            background: #FFD700;
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu,
        .mobile-menu *,
        .mobile-navigation,
        .mobile-navigation * {
            box-sizing: border-box !important;
        }

        .mobile-menu {
            display: none !important;
            background: #1a1a1a !important;
            border-radius: 12px !important;
            margin-top: 10px !important;
            border: 1px solid rgba(255, 255, 255, 0.06) !important;
            padding: 0 !important;
            width: 100% !important;
            overflow: hidden !important;
            max-height: none !important;
            height: auto !important;
            visibility: visible !important;
            opacity: 1 !important;
            position: relative !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            transform: none !important;
            transition: none !important;
            animation: none !important;
            box-shadow: none !important;
        }

        .mobile-menu.open {
            display: block !important;
            padding: 10px 0 !important;
        }

        .mobile-navigation {
            list-style: none !important;
            margin: 0 !important;
            padding: 0 !important;
            display: block !important;
        }

        .mobile-navigation li {
            display: block !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
            margin: 0 !important;
            padding: 0 !important;
            float: none !important;
            width: 100% !important;
        }

        .mobile-navigation li:last-child {
            border-bottom: none !important;
        }

        .mobile-navigation li a {
            display: block !important;
            color: rgba(255, 255, 255, 0.85) !important;
            padding: 14px 24px !important;
            text-decoration: none !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
            background: transparent !important;
            border: none !important;
            border-radius: 0 !important;
            text-align: left !important;
            width: 100% !important;
            line-height: 1.5 !important;
        }

        .mobile-navigation li a:hover {
            color: #FFD700 !important;
            background: rgba(255, 215, 0, 0.06) !important;
            padding-left: 30px !important;
        }

        .mobile-navigation li.active a {
            color: #FFD700 !important;
            background: rgba(255, 215, 0, 0.08) !important;
            border-left: 3px solid #FFD700 !important;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1199px) {
            .menu-area {
                padding: 10px 0;
            }

            .logo img {
                max-height: 40px;
            }

            .navbar-wrap.main-menu {
                display: none !important;
            }

            .mobile-menu-toggle {
                display: flex !important;
            }

            .hamburger .bar {
                width: 24px;
                height: 2.5px;
            }

            .mobile-navigation li a {
                padding: 12px 20px !important;
                font-size: 15px !important;
            }
        }

        @media (max-width: 480px) {
            .menu-area {
                padding: 8px 0;
            }

            .logo img {
                max-height: 35px;
            }

            .hamburger .bar {
                width: 22px;
                height: 2px;
            }

            .mobile-navigation li a {
                padding: 11px 18px !important;
                font-size: 14px !important;
            }
        }

        @media (min-width: 1200px) {
            .mobile-menu-toggle {
                display: none !important;
            }
            .mobile-menu {
                display: none !important;
            }
            .navbar-wrap.main-menu {
                display: flex !important;
            }
        }

        /* ===== BANNER CONTENT ===== */
        .banner-content-two {
            padding: 30px 0;
        }

        .banner-title {
            font-size: 52px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 15px;
            color: white;
            display: block;
        }

        .banner-title .stay-ready {
            font-size: 28px;
            font-weight: 700;
            color: #FFD700;
            letter-spacing: 10px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 5px;
        }

        .banner-title .built-to {
            font-size: 80px;
            font-weight: 800;
            color: white;
            letter-spacing: 4px;
            text-transform: uppercase;
            display: block;
        }

        .banner-title .perform {
            font-size: 80px;
            font-weight: 900;
            color: white;
            letter-spacing: 6px;
            text-transform: uppercase;
            display: block;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .banner-desc {
            font-size: 16px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
            letter-spacing: 1px;
            line-height: 1.6;
        }

        /* ===== BUTTONS ===== */
        .btn-grp {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 35px;
        }

        .btn-shopnow {
            background: #ffffff;
            color: #1a1a1a;
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-shopnow:hover {
            background: #FFD700;
            color: #1a1a1a;
            transform: translateY(-3px);
            box-shadow: 0 8px 35px rgba(255, 215, 0, 0.35);
            text-decoration: none;
        }

        .btn-learnmore {
            background: transparent;
            color: white;
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 2px solid rgba(255, 255, 255, 0.35);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-learnmore:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
            transform: translateY(-3px);
            text-decoration: none;
            color: white;
        }

        /* ===== BADGES ===== */
        .banner-badges {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            padding-top: 5px;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .badge-item .badge-text {
            display: flex;
            flex-direction: column;
        }

        .badge-item .badge-text span {
            font-size: 9px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .badge-item .badge-text strong {
            font-size: 14px;
            font-weight: 800;
            color: white;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* ===== PRODUCT IMAGE ===== */
        .banner-product-image {
            position: relative;
            text-align: center;
            padding: 20px 0;
        }

        .banner-product-image img {
            max-width: 100%;
            height: auto;
            max-height: 420px;
            object-fit: contain;
            filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.35));
        }

        .product-label {
            margin-top: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .product-label span {
            font-size: 12px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .product-label span:first-child {
            font-size: 16px;
            color: #FFD700;
            letter-spacing: 5px;
            font-weight: 800;
        }

        /* ===== SCROLL DOWN BUTTON ===== */
        .scroll-down-wrapper {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            text-align: center;
        }

        .scroll-down-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 4px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(8px);
            padding: 12px 30px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .scroll-down-btn::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
            animation: glowPulse 3s ease-in-out infinite;
        }

        .scroll-down-btn .scroll-text {
            position: relative;
            z-index: 1;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 4px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .scroll-down-btn .scroll-arrow {
            position: relative;
            z-index: 1;
            font-size: 14px;
            animation: bounceArrow 2s ease-in-out infinite;
            display: flex;
            align-items: center;
            line-height: 1;
        }

        .scroll-down-btn:hover {
            color: #FFD700;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(12px);
            transform: translateY(-3px);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 215, 0, 0.25);
            text-decoration: none;
        }

        .scroll-down-btn:hover .scroll-arrow {
            animation: bounceArrowHover 1s ease-in-out infinite;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes bounceArrow {
            0%,
            100% {
                transform: translateY(0);
                opacity: 1;
            }
            50% {
                transform: translateY(6px);
                opacity: 0.6;
            }
        }

        @keyframes bounceArrowHover {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(8px);
            }
        }

        @keyframes glowPulse {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 1;
            }
        }

        /* ===== RESPONSIVE BANNER ===== */
        @media (max-width: 992px) {
            .banner-title .built-to {
                font-size: 80px;
            }
            .banner-title .perform {
                font-size: 80px;
            }
            .banner-product-image img {
                max-height: 320px;
            }
            .banner-badges {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .banner-title .stay-ready {
                font-size: 28px;
                letter-spacing: 6px;
            }
            .banner-title .built-to {
                font-size: 80px;
            }
            .banner-title .perform {
                font-size: 80px;
                letter-spacing: 4px;
            }
            .banner-desc {
                font-size: 18px;
            }
            .btn-shopnow,
            .btn-learnmore {
                padding: 12px 28px;
                font-size: 16px;
                letter-spacing: 1.5px;
            }
            .btn-grp {
                gap: 10px;
            }
            .banner-badges {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
            }
            .badge-item .badge-text strong {
                font-size: 14px;
            }
            .badge-item .badge-text span {
                font-size: 12px;
            }
            .banner-product-image img {
                max-height: 260px;
            }
            .product-label span {
                font-size: 10px;
                letter-spacing: 2px;
            }
            .product-label span:first-child {
                font-size: 13px;
                letter-spacing: 3px;
            }
            .scroll-down-wrapper {
                bottom: 15px;
            }
            .scroll-down-btn {
                padding: 10px 22px;
                gap: 10px;
            }
            .scroll-down-btn .scroll-text {
                font-size: 11px;
                letter-spacing: 3px;
            }
            .scroll-down-btn .scroll-arrow {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .banner-title .stay-ready {
                font-size: 18px;
                letter-spacing: 4px;
            }
            .banner-title .built-to {
                font-size: 22px;
                letter-spacing: 2px;
            }
            .banner-title .perform {
                font-size: 24px;
                letter-spacing: 3px;
            }
            .banner-desc {
                font-size: 12px;
            }
            .btn-shopnow,
            .btn-learnmore {
                padding: 10px 20px;
                font-size: 10px;
                letter-spacing: 1px;
            }
            .btn-grp {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .banner-badges {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 15px;
                margin-top: 350px;
                margin-bottom: 50px;
            }
            .badge-item .badge-text strong {
                font-size: 14px;
            }
            .badge-item .badge-text span {
                font-size: 12px;
            }
            .banner-product-image img {
                max-height: 200px;
            }
            .product-label span {
                font-size: 9px;
                letter-spacing: 2px;
            }
            .product-label span:first-child {
                font-size: 11px;
                letter-spacing: 2px;
            }
            .scroll-down-wrapper {
                bottom: 10px;
            }
            .scroll-down-btn {
                padding: 8px 16px;
                gap: 8px;
                border-radius: 40px;
            }
            .scroll-down-btn .scroll-text {
                font-size: 9px;
                letter-spacing: 2px;
            }
            .scroll-down-btn .scroll-arrow {
                font-size: 11px;
            }
        }
		
		
/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-area {
    padding: 80px 0;
    background: white;
}

.section-title .sub-title {
    display: inline-block;
    background: rgba(255, 215, 0, 0.12);
    padding: 4px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonial-card {
    background: #f9f6f0;
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0ebe3;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.10);
    border-color: rgba(255, 215, 0, 0.2);
}

/* Rating Bintang */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 16px;
}

/* Teks Testimoni */
.testimonial-text {
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-text p::before {
    content: '"';
    font-size: 24px;
    color: #FFD700;
    font-weight: 700;
    margin-right: 4px;
}

.testimonial-text p::after {
    content: '"';
    font-size: 24px;
    color: #FFD700;
    font-weight: 700;
    margin-left: 4px;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0ebe3;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #f0ebe3;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0 0 2px 0;
}

.author-role {
    font-size: 13px;
    color: #999;
    display: block;
}

/* Tombol Lihat Semua */
.btn-testimonial-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #8B5E3C;
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(139, 94, 60, 0.25);
}

.btn-testimonial-all:hover {
    background: #6d4a2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 94, 60, 0.35);
    color: #fff;
    text-decoration: none;
}

.btn-testimonial-all i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-testimonial-all:hover i {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .testimonials-area {
        padding: 60px 0;
    }
    .section-title .title {
        font-size: 30px !important;
    }
}

@media (max-width: 768px) {
    .testimonials-area {
        padding: 50px 0;
    }
    .section-title .title {
        font-size: 26px !important;
    }
    .testimonial-card {
        padding: 22px 20px;
    }
    .testimonial-text p {
        font-size: 14px;
    }
    .author-avatar {
        width: 45px;
        height: 45px;
    }
    .author-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials-area {
        padding: 40px 0;
    }
    .section-title .title {
        font-size: 22px !important;
    }
    .testimonial-card {
        padding: 18px 16px;
    }
    .testimonial-text p {
        font-size: 13px;
    }
    .btn-testimonial-all {
        padding: 12px 28px;
        font-size: 13px;
    }
}

/* ============================================
   KENAPA HARUS CORGA SECTION
   ============================================ */

.why-corga-area {
    padding: 80px 0;
    background: #ffffff;
}

.why-corga-item {
    background: #f9f6f0;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-corga-item:hover {
    transform: translateY(-8px);
    border-color: #8B5E3C;
    box-shadow: 0 12px 40px rgba(139, 94, 60, 0.12);
    background: #ffffff;
}

/* Efek garis bawah saat hover */
.why-corga-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B5E3C, #FFD700);
    transition: width 0.4s ease;
}

.why-corga-item:hover::after {
    width: 60%;
}

/* Icon */
.why-corga-icon {
    width: 75px;
    height: 75px;
    background: rgba(139, 94, 60, 0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.4s ease;
}

.why-corga-icon i {
    font-size: 32px;
    color: #8B5E3C;
    transition: all 0.4s ease;
}

.why-corga-item:hover .why-corga-icon {
    background: #8B5E3C;
    transform: scale(1.05) rotate(-5deg);
}

.why-corga-item:hover .why-corga-icon i {
    color: #ffffff;
}

/* Title */
.why-corga-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

/* Description */
.why-corga-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .why-corga-area {
        padding: 60px 0;
    }
    .why-corga-item {
        padding: 28px 20px;
    }
    .why-corga-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .why-corga-area {
        padding: 50px 0;
    }
    .section-title .title {
        font-size: 28px !important;
    }
    .why-corga-icon {
        width: 60px;
        height: 60px;
    }
    .why-corga-icon i {
        font-size: 26px;
    }
    .why-corga-item {
        padding: 22px 18px;
        margin-bottom: 20px;
    }
    .why-corga-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .why-corga-area {
        padding: 40px 0;
    }
    .section-title .title {
        font-size: 24px !important;
    }
    .why-corga-item {
        padding: 18px 15px;
        margin-bottom: 15px;
    }
    .why-corga-icon {
        width: 50px;
        height: 50px;
    }
    .why-corga-icon i {
        font-size: 22px;
    }
    .why-corga-title {
        font-size: 15px;
    }
    .why-corga-desc {
        font-size: 12px;
    }
}
/* ============================================
   INGREDIENTS SECTION - BOX SAMA BESAR (GRID)
   ============================================ */

/* Gunakan Grid untuk kontrol penuh */
.ingredients-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 -12px;
}

.ingredients-grid-wrapper .ingredients-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px 35px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0ebe3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 480px;
}

.ingredients-grid-wrapper .ingredients-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 94, 60, 0.10);
    border-color: rgba(139, 94, 60, 0.15);
}

/* ===== GAMBAR ===== */
.ingredients-grid-wrapper .ingredients-thumb {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #f9f6f0;
    padding: 15px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.ingredients-grid-wrapper .ingredients-item:hover .ingredients-thumb {
    background: rgba(139, 94, 60, 0.06);
    transform: scale(1.03);
}

.ingredients-grid-wrapper .ingredients-thumb img {
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

/* ===== KONTEN ===== */
.ingredients-grid-wrapper .ingredients-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ingredients-grid-wrapper .ingredients-content .title {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 2px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 48px;
}

.ingredients-grid-wrapper .ingredients-sub {
    font-size: 14px;
    font-weight: 500;
    color: #8B5E3C;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    min-height: 22px;
}

.ingredients-grid-wrapper .ingredients-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    /* Potong teks jika terlalu panjang */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   RESPONSIVE GRID
   ============================================ */

@media (max-width: 1199px) and (min-width: 992px) {
    .ingredients-grid-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .ingredients-grid-wrapper .ingredients-item {
        min-height: 420px;
        padding: 25px 20px 30px;
    }
    .ingredients-grid-wrapper .ingredients-thumb {
        width: 140px;
        height: 140px;
    }
    .ingredients-grid-wrapper .ingredients-thumb img {
        max-width: 100px;
        height: 100px;
    }
    .ingredients-grid-wrapper .ingredients-content .title {
        font-size: 16px;
        min-height: 42px;
    }
}

@media (max-width: 991px) {
    .ingredients-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .ingredients-grid-wrapper .ingredients-item {
        min-height: 380px;
        padding: 25px 20px 30px;
    }
    .ingredients-grid-wrapper .ingredients-thumb {
        width: 140px;
        height: 140px;
    }
    .ingredients-grid-wrapper .ingredients-thumb img {
        max-width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .ingredients-grid-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin: 0;
    }
    .ingredients-grid-wrapper .ingredients-item {
        min-height: 320px;
        padding: 18px 15px 22px;
        border-radius: 12px;
    }
    .ingredients-grid-wrapper .ingredients-thumb {
        width: 100px;
        height: 100px;
        padding: 10px;
    }
    .ingredients-grid-wrapper .ingredients-thumb img {
        max-width: 70px;
        height: 70px;
    }
    .ingredients-grid-wrapper .ingredients-content .title {
        font-size: 13px;
        min-height: 36px;
    }
    .ingredients-grid-wrapper .ingredients-sub {
        font-size: 11px;
        min-height: 18px;
    }
    .ingredients-grid-wrapper .ingredients-content p {
        font-size: 11px;
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 400px) {
    .ingredients-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .ingredients-grid-wrapper .ingredients-item {
        min-height: 280px;
        padding: 18px 15px 22px;
    }
    .ingredients-grid-wrapper .ingredients-thumb {
        width: 120px;
        height: 120px;
    }
    .ingredients-grid-wrapper .ingredients-thumb img {
        max-width: 85px;
        height: 85px;
    }
    .ingredients-grid-wrapper .ingredients-content .title {
        font-size: 15px;
        min-height: 38px;
    }
    .ingredients-grid-wrapper .ingredients-sub {
        font-size: 13px;
        min-height: 20px;
    }
    .ingredients-grid-wrapper .ingredients-content p {
        font-size: 13px;
        -webkit-line-clamp: 5;
    }
}
