/* custom-style.css - Versi Desain Ulang Total */


/* --- 1. Pengaturan Font & Variabel Warna --- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
:root {
    --primary-orange: #ff6b6b;
    --secondary-orange: #ffd93d;
    --accent-magenta: #f64c72;
    --accent-sky: #4cc9f0;
    --gradient-orange: linear-gradient(120deg, rgba(255, 107, 107, 0.98), rgba(255, 217, 61, 0.95) 48%, rgba(76, 201, 240, 0.92));
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border-light: #e9ecef;
    --body-bg: #fdf8ff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-dark);
}


/* --- 2. Desain Header & Navigasi Estetik --- */

.navbar-custom {
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 230, 0.94));
    border-bottom: 1px solid rgba(255, 107, 107, 0.12);
    box-shadow: 0 14px 40px rgba(255, 107, 107, 0.12);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand strong {
    font-size: 1.65rem;
    font-weight: 700;
    background: linear-gradient(120deg, #ff6b6b, #ffd93d 55%, #4cc9f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-custom .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(33, 37, 41, 0.6);
    font-weight: 600;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.25px;
    font-size: 0.92rem;
}

.navbar-custom .nav-link .nav-icon {
    font-size: 1.05rem;
    color: rgba(33, 37, 41, 0.45);
    transition: color 0.3s ease;
}

.navbar-custom .nav-link span {
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus,
.navbar-custom .nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(255, 217, 61, 0.9));
    box-shadow: 0 12px 24px rgba(255, 107, 107, 0.25);
    transform: translateY(-2px);
}

.navbar-custom .nav-link:hover .nav-icon,
.navbar-custom .nav-link:focus .nav-icon,
.navbar-custom .nav-link.active .nav-icon {
    color: #ffffff;
}

.navbar-custom .navbar-nav {
    gap: 0.3rem;
}

.navbar-custom .nav-link::after {
    display: none;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.95), rgba(255, 107, 107, 0.95));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover,
.btn-cta:focus {
    color: white;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 35px rgba(255, 107, 107, 0.28);
}

.cart-icon {
    font-size: 1.35rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.12);
    color: rgba(33, 37, 41, 0.7);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cart-icon:hover,
.cart-icon:focus-within {
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(255, 217, 61, 0.85));
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 0.65rem;
    padding: 0.3em 0.45em;
    background: #ff6b6b;
    border: 2px solid #fff;
}

.navbar-custom .navbar-toggler {
    border-radius: 999px;
    border: none;
    padding: 0.4rem 0.75rem;
    background: rgba(255, 107, 107, 0.12);
    transition: background 0.3s ease;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.35);
}

.navbar-custom .navbar-toggler:hover {
    background: rgba(255, 107, 107, 0.2);
}

.navbar-custom .navbar-toggler-icon {
    background-image: none;
    width: 1.2em;
    height: 1.2em;
    position: relative;
    display: inline-block;
}

.navbar-custom .navbar-toggler-icon::before,
.navbar-custom .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(255, 217, 61, 0.9));
    border-radius: 999px;
    transition: transform 0.3s ease;
}

.navbar-custom .navbar-toggler-icon::before {
    top: 0;
}

.navbar-custom .navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-custom .navbar-toggler-icon span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(255, 217, 61, 0.9));
    border-radius: 999px;
    transform: translateY(-50%);
}

@media (max-width: 991.98px) {
    .navbar-custom .navbar-nav {
        align-items: stretch !important;
        padding: 0.75rem 0;
        gap: 0.6rem;
    }

    .navbar-custom .nav-link {
        width: 100%;
        justify-content: flex-start;
        border-radius: 16px;
    }

    .navbar-custom .nav-link span {
        flex: 1;
        text-align: left;
    }

    .navbar-custom .navbar-nav.align-items-center {
        gap: 0.75rem;
        padding-top: 0.5rem;
    }

    .navbar-custom .navbar-nav.align-items-center .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .navbar-custom .navbar-nav.align-items-center .nav-link {
        justify-content: center;
    }

    .cart-icon {
        width: 48px;
        height: 48px;
    }
}


/* --- 3. Gaya Konten Umum --- */

.jumbotron-custom {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    background: var(--gradient-orange);
    border-radius: 15px;
    color: white;
}

.jumbotron-custom h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 2px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.produk-card {
    border-radius: 15px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.produk-card .card-img-top {
    border-bottom: 1px solid #eee;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.produk-card .card-body {
    padding: 1.2rem;
}

.produk-card .card-title {
    font-weight: 600;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.produk-card .card-subtitle {
    font-size: 1.25rem;
}


/* --- 4. Tombol Keren --- */

.btn-keren {
    background: var(--gradient-orange);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.btn-keren:hover,
.btn-keren:focus {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}


/* --- 5. Footer --- */

.footer {
    background: linear-gradient(135deg, rgba(255, 246, 253, 0.96), rgba(236, 249, 255, 0.92));
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 107, 107, 0.12);
}


/* ======================================= */


/* --- 6. Desain Ulang Bagian Testimoni (Model Grid) --- */


/* ======================================= */

.testimoni-section {
    padding: 4rem 0;
    background: linear-gradient(160deg, rgba(255, 246, 253, 0.9), rgba(236, 249, 255, 0.92));
}

.testi-card-grid {
    background-color: #ffffff;
    border-radius: 15px;
    /* Sudut membulat sama dengan kartu produk */
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.testi-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testi-card-grid .card-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.testi-card-grid .testi-img {
    width: 90px;
    /* Ukuran foto bulat */
    height: 90px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    /* Jarak foto dengan teks */
}

.testi-card-grid .testi-text {
    color: var(--text-muted);
    font-style: italic;
}

.testi-card-grid .blockquote-footer {
    margin-top: auto;
    /* Mendorong nama ke bagian bawah kartu */
    padding-top: 1.5rem;
}


/*********************************************
 * 7. Modern Landing Refresh - 2025 Edition  *
 *********************************************/

.text-gradient {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(255, 107, 107, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-section {
    padding: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, rgba(255, 246, 253, 0.95) 0%, rgba(255, 255, 255, 0.98) 45%, rgba(236, 249, 255, 0.9) 100%);
    border: 1px solid rgba(255, 107, 107, 0.12);
    box-shadow: 0 28px 70px rgba(246, 76, 114, 0.18);
    position: relative;
}

.hero-background {
    position: absolute;
    inset: -40% -25% 0 40%;
    background: radial-gradient(circle at top left, rgba(246, 76, 114, 0.22), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(76, 201, 240, 0.28), transparent 60%),
        radial-gradient(circle at center, rgba(255, 217, 61, 0.28), transparent 70%);
    z-index: 0;
}

.hero-section .row {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    background: rgba(246, 76, 114, 0.14);
    color: var(--primary-orange);
    border: 1px solid rgba(246, 76, 114, 0.35);
    box-shadow: 0 8px 22px rgba(246, 76, 114, 0.16);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-top: 1.5rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(33, 37, 41, 0.75);
    margin-top: 1rem;
    max-width: 540px;
}

.hero-search {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 107, 107, 0.25);
}

.hero-search i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin-left: 0.35rem;
}

.hero-search .form-control {
    border: none;
    background: transparent;
    box-shadow: none !important;
    padding: 0.35rem 0.5rem;
    font-size: 0.95rem;
}

.hero-search .form-control:focus {
    outline: none;
}

.btn-hero {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border: none;
}

.btn-hero:hover {
    transform: translateY(-1px);
}

.btn-hero-primary {
    background: var(--gradient-orange);
    color: #fff;
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.3);
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(255, 107, 107, 0.35);
}

.btn-hero-secondary {
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(33, 37, 41, 0.2);
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.8);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    color: var(--text-dark);
    border-color: rgba(33, 37, 41, 0.6);
    transform: translateY(-2px);
}

.hero-stats {
    border-top: 1px dashed rgba(255, 107, 107, 0.25);
    padding-top: 1.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 140px;
}

.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(33, 37, 41, 0.6);
}

.hero-actions .btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-actions .btn:focus-visible {
    outline: 3px solid rgba(76, 201, 240, 0.35);
    outline-offset: 3px;
}

.hero-visual {
    position: relative;
    min-height: 420px;
    padding: 1rem;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 22px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 253, 0.9));
    box-shadow: 0 30px 55px rgba(246, 76, 114, 0.16);
    border: 1px solid rgba(255, 107, 107, 0.18);
    width: clamp(250px, 60%, 330px);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.floating-card i {
    font-size: 1.75rem;
    color: var(--primary-orange);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.18), rgba(255, 217, 61, 0.18));
    padding: 0.75rem;
    border-radius: 16px;
}

.floating-card.primary {
    top: 0;
    right: 15%;
}

.floating-card.secondary {
    bottom: 40%;
    left: 5%;
}

.floating-card.tertiary {
    bottom: 5%;
    right: 5%;
    flex-direction: column;
    width: clamp(260px, 70%, 360px);
}

.feature-ribbon .row {
    margin: 0;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    height: 100%;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.feature-item h5 {
    margin-bottom: 0.35rem;
}

.feature-item p {
    margin-bottom: 0;
    color: rgba(33, 37, 41, 0.65);
    font-size: 0.95rem;
}

.section-heading {
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(33, 37, 41, 0.55);
    margin-bottom: 0.5rem;
}

.section-title {
    font-weight: 700;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 0.95rem;
    color: rgba(33, 37, 41, 0.6);
    max-width: 540px;
}

.btn-view-all {
    border-radius: 999px;
    padding: 0.65rem 1.8rem;
    font-weight: 600;
    border: 1px solid rgba(33, 37, 41, 0.2);
    background: #fff;
    color: var(--text-dark);
    transition: all 0.25s ease;
}

.btn-view-all:hover,
.btn-view-all:focus {
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(255, 217, 61, 0.9));
    border-color: transparent;
    box-shadow: 0 14px 24px rgba(255, 107, 107, 0.3);
}

.product-showcase .row {
    margin-top: 1.5rem;
}

.produk-card-modern {
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(34, 34, 34, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.produk-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(34, 34, 34, 0.12);
}

.produk-card-media {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 1.25rem 1.25rem 0 1.25rem;
    aspect-ratio: 4 / 3;
    background: #f9f9f9;
}

.produk-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.produk-card-modern:hover .produk-card-media img {
    transform: scale(1.05);
}

.produk-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(255, 217, 61, 0.85));
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.produk-card-overlay {
    position: absolute;
    inset: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.produk-card-modern:hover .produk-card-overlay {
    opacity: 1;
    visibility: visible;
}

.produk-card-overlay .btn {
    border-radius: 999px;
    padding: 0.4rem 0.7rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.produk-card-modern .card-body {
    padding: 1.75rem;
}

.produk-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(33, 37, 41, 0.45);
    margin-bottom: 0.75rem;
}

.produk-card-modern .card-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.65rem;
}

.produk-card-description {
    font-size: 0.9rem;
    color: rgba(33, 37, 41, 0.65);
    margin-bottom: 1.25rem;
}

.produk-card-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.25rem;
}

.produk-card-price {
    font-weight: 700;
    color: var(--primary-orange);
    font-size: 1.15rem;
}

.btn-add-to-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 107, 107, 0.15);
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.btn-add-to-cart:hover,
.btn-add-to-cart:focus {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(255, 217, 61, 0.85));
    color: #fff;
    transform: scale(1.05);
}

.produk-preview-modal .modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.produk-preview-modal .modal-body {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 249, 255, 0.88));
    border-radius: 24px;
}

.produk-preview-modal h4 {
    font-weight: 600;
}

.empty-state {
    border-radius: 24px;
    padding: 3rem;
}

.empty-state i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.testimoni-section {
    background: linear-gradient(160deg, rgba(255, 246, 253, 0.9), rgba(236, 249, 255, 0.92));
    border-radius: 32px;
    padding: clamp(3rem, 4vw, 4.5rem);
}

.testi-card-modern {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(34, 34, 34, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(34, 34, 34, 0.12);
}

.testi-avatar {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.25);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-quote {
    position: absolute;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(255, 217, 61, 0.85));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.15rem;
}

.testi-text {
    font-size: 0.98rem;
    color: rgba(33, 37, 41, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testi-meta h6 {
    font-weight: 600;
    color: var(--text-dark);
}

.cta-section {
    padding: 2.25rem 2.75rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 246, 253, 0.92), rgba(236, 249, 255, 0.88));
}

.cta-section h3 {
    font-weight: 600;
}

.cta-section .btn-whatsapp {
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

    .hero-search {
        flex-wrap: wrap;
        border-radius: 18px;
    }

    .hero-search .form-control {
        flex: 1 1 100%;
        text-align: center;
    }

    .hero-search .btn-hero {
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .feature-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .cta-section {
        text-align: center;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .feature-ribbon .row {
        row-gap: 1.5rem;
    }

    .produk-card-modern .card-body {
        padding: 1.5rem;
    }

    .produk-card-media {
        margin: 1rem 1rem 0;
    }

    .testimoni-section {
        padding: 2.5rem 1.8rem;
    }
}

/* Tombol keranjang (Cart) - gradasi oranye ke kuning */
.btn-cart {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.btn-cart:hover {
    background: linear-gradient(90deg, #ffa751, #ffe259);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 174, 94, 0.4);
}

/* Tombol beli sekarang (Buy) - gradasi hijau ke toska */
.btn-buy {
    background: linear-gradient(90deg, #a8e063, #56ab2f);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.btn-buy:hover {
    background: linear-gradient(90deg, #43cea2, #185a9d);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
}
