/* ============================================
   HALAMAN PRODUK (PRODUK.HTML) STYLING
   ============================================ */

.our-product {
    background: linear-gradient(180deg, rgba(250, 247, 242, 1) 0%, rgba(255, 255, 255, 1) 100%);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* ============================================
   HEADER (menggunakan globals.css)
   ============================================ */


/* ============================================
   BAGIAN KONTEN UTAMA
   ============================================ */

.our-product .section {
    padding: 2.5rem clamp(1.25rem, 3.5vw, 1.75rem);
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .our-product .section {
        padding: 4rem clamp(1.5rem, 4.5vw, 2.5rem);
    }
}

.our-product .div {
    padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.25rem, 3.5vw, 1.75rem) 0 clamp(1.25rem, 3.5vw, 1.75rem);
    max-width: 1440px;
    text-align: center;
    margin: 0 auto;
}

.our-product .div-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.our-product .text-wrapper-2 {
    font-family: "Poppins-Bold", Helvetica;
    font-weight: 500;
    color: #6b4423;
    font-size: clamp(32px, 6vw, 60px);
    line-height: 1.2;
    margin: 0;
}

.our-product .from-humble-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.our-product .from-humble {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #8b6f47;
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}


/* ============================================
   TOMBOL FILTER
   ============================================ */

.our-product .container-4 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.25rem;
}

.our-product .button,
.our-product .button-2,
.our-product .button-3,
.our-product .cakes-desserts-wrapper,
.our-product .coffee-drinks-wrapper {
    all: unset;
    box-sizing: border-box;
    padding: 0.4rem 1.25rem;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 29826200px;
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}


/* Semua tombol filter memiliki styling default yang sama (tidak aktif) */

.our-product .button,
.our-product .button-2,
.our-product .button-3,
.our-product .cakes-desserts-wrapper,
.our-product .coffee-drinks-wrapper {
    background-color: #ffffff;
    color: #8b6f47;
    border: 1.78px solid #e8d4b8;
}


/* Efek hover dihapus dari sini karena sudah ditangani di bagian btn-filter */


/* Status Aktif dan Hover untuk Tombol Filter */

.our-product .btn-filter {
    transition: all 0.3s ease;
}


/* Status aktif - tombol yang sedang dipilih */

.our-product .btn-filter.active {
    background-color: #8b6f47 !important;
    color: #ffffff !important;
    border: 1.78px solid #8b6f47 !important;
    box-shadow: 0px 4px 6px -4px #0000001a, 0px 10px 15px -3px #0000001a;
}


/* Efek hover untuk tombol filter yang tidak aktif */

.our-product .btn-filter:not(.active):hover {
    background-color: #f5e6d3 !important;
    border-color: #8b6f47 !important;
    color: #6b4423 !important;
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px -4px #0000001a, 0px 12px 17px -3px #0000001a;
}


/* Efek hover untuk tombol filter yang aktif */

.our-product .btn-filter.active:hover {
    background-color: #6b4423 !important;
    border-color: #6b4423 !important;
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px -4px #0000001a, 0px 12px 17px -3px #0000001a;
}

.our-product .text-wrapper-9,
.our-product .text-wrapper-10,
.our-product .text-wrapper-11,
.our-product .cakes-desserts,
.our-product .coffee-drinks {
    position: relative;
    width: fit-content;
    margin: 0;
}


/* ============================================
   GRID KARTU PRODUK
   ============================================ */

.our-product .container-5 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}


/* Tablet: 6 produk 2 baris (3 per baris) */

@media (min-width: 768px) {
    .our-product .container-5 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}


/* Desktop: 8 produk 2 baris (4 per baris) */

@media (min-width: 1024px) {
    .our-product .container-5 {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
  
}



/* ============================================
   STYLING KARTU PRODUK
   ============================================ */

.our-product .card,
.our-product .card-2,
.our-product .card-3,
.our-product .card-4,
.our-product .card-5,
.our-product .card-6,
.our-product .card-7,
.our-product .card-8 {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 4px 6px -4px #0000001a, 0px 10px 15px -3px #0000001a;
    border: 1.5px solid rgba(139, 111, 71, 0.2);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.our-product .card:hover,
.our-product .card-2:hover,
.our-product .card-3:hover,
.our-product .card-4:hover,
.our-product .card-5:hover,
.our-product .card-6:hover,
.our-product .card-7:hover,
.our-product .card-8:hover {
    box-shadow: 0px 8px 12px -4px #0000001a, 0px 20px 20px -3px #0000001a;
    border-color: rgba(139, 111, 71, 0.4);
}

.our-product .image-with-fallback-wrapper,
.our-product .product-page-3 {
    width: 100%;
    height: 250px;
    background-color: #faf7f2;
    overflow: hidden;
}

.our-product .image-with-fallback,
.our-product .image-with-fallback-2,
.our-product .image-with-fallback-3,
.our-product .image-with-fallback-4,
.our-product .image-with-fallback-5,
.our-product .image-with-fallback-6,
.our-product .image-with-fallback-7,
.our-product .image-with-fallback-8 {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.our-product .product-page-2,
.our-product .product-page-4 {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.our-product .container-6,
.our-product .container-9,
.our-product .container-12,
.our-product .container-14,
.our-product .container-17 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.our-product .text,
.our-product .text-4,
.our-product .text-6,
.our-product .text-7,
.our-product .text-8 {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: #f5e6d3;
    border-radius: 29826200px;
}

.our-product .text-wrapper-12,
.our-product .text-wrapper-17,
.our-product .text-wrapper-27,
.our-product .cakes-desserts-2,
.our-product .coffee-drinks-2 {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 500;
    color: #8b6f47;
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
    margin: 0;
}

.our-product .container-7,
.our-product .container-10 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.our-product .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 14px;
}

.our-product .text-2,
.our-product .text-5 {
    display: flex;
    align-items: center;
}

.our-product .text-wrapper-13,
.our-product .text-wrapper-18,
.our-product .text-wrapper-22 {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #8b6f47;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

.our-product .heading-2 {
    width: 100%;
}

.our-product .text-wrapper-14,
.our-product .text-wrapper-24 {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #6b4423;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4;
    margin: 0;
}

.our-product .paragraph-2,
.our-product .paragraph-3 {
    width: 100%;
}

.our-product .p,
.our-product .text-wrapper-19,
.our-product .text-wrapper-21,
.our-product .text-wrapper-23,
.our-product .text-wrapper-25,
.our-product .text-wrapper-28 {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #8b6f47;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.our-product .container-8,
.our-product .container-11,
.our-product .container-13,
.our-product .container-15,
.our-product .container-16 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.our-product .text-3 {
    display: flex;
    align-items: center;
}

.our-product .text-wrapper-26,
.our-product .text-wrapper-15,
.our-product .text-wrapper-20 {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #6b4423;
    font-size: clamp(13px, 2.5vw, 20px);
    line-height: 1.3;
    white-space: nowrap;
    margin: 0;
}

.our-product .button-4 {
    all: unset;
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    background-color: #8b6f47;
    border-radius: 29826200px;
    box-shadow: 0px 2px 4px -2px #0000001a, 0px 4px 6px -1px #0000001a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.our-product .button-4:hover {
    background-color: #6b5a3a;
    transform: translateY(-2px);
    box-shadow: 0px 4px 6px -2px #0000001a, 0px 6px 8px -1px #0000001a;
}

.our-product .button-4 .icon-2 {
    display: none;
}

.our-product .button-4 i {
    color: #ffffff;
    font-size: 16px;
}

.our-product .text-wrapper-16 {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    margin: 0;
}

/* Mobile 420px - Button Keranjang hanya ikon */
@media (max-width: 1024px) {
    .our-product .button-4 {
        padding: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        justify-content: center;
    }
    
    .our-product .button-4 .text-wrapper-16 {
        display: none;
    }
    
    .our-product .button-4 i {
        font-size: 18px;
    }
}


/* Hide Preview button on mobile */

@media (max-width: 768px) {

    .our-product .container-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .our-product .card,
    .our-product .card-2,
    .our-product .card-3,
    .our-product .card-4,
    .our-product .card-5,
    .our-product .card-6,
    .our-product .card-7,
    .our-product .card-8 {
        cursor: pointer;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    /* Compact drinks cards - smaller than bread cards */
    .our-product .card[data-category*="minuman"],
    .our-product .card-2[data-category*="minuman"],
    .our-product .card-3[data-category*="minuman"],
    .our-product .card-4[data-category*="minuman"],
    .our-product .card-5[data-category*="minuman"],
    .our-product .card-6[data-category*="minuman"],
    .our-product .card-7[data-category*="minuman"],
    .our-product .card-8[data-category*="minuman"] {
        min-height: 210px;
    }
    
    .our-product .card[data-category*="minuman"] .image-with-fallback-wrapper,
    .our-product .card-2[data-category*="minuman"] .image-with-fallback-wrapper,
    .our-product .card-3[data-category*="minuman"] .image-with-fallback-wrapper,
    .our-product .card-4[data-category*="minuman"] .image-with-fallback-wrapper,
    .our-product .card-5[data-category*="minuman"] .image-with-fallback-wrapper,
    .our-product .card-6[data-category*="minuman"] .image-with-fallback-wrapper,
    .our-product .card-7[data-category*="minuman"] .image-with-fallback-wrapper,
    .our-product .card-8[data-category*="minuman"] .image-with-fallback-wrapper,
    .our-product .card[data-category*="minuman"] .product-page-3,
    .our-product .card-2[data-category*="minuman"] .product-page-3,
    .our-product .card-3[data-category*="minuman"] .product-page-3,
    .our-product .card-4[data-category*="minuman"] .product-page-3,
    .our-product .card-5[data-category*="minuman"] .product-page-3,
    .our-product .card-6[data-category*="minuman"] .product-page-3,
    .our-product .card-7[data-category*="minuman"] .product-page-3,
    .our-product .card-8[data-category*="minuman"] .product-page-3 {
        height: 110px;
        min-height: 110px;
        flex-shrink: 0;
    }
    
    .our-product .card[data-category*="minuman"] .product-page-2,
    .our-product .card-2[data-category*="minuman"] .product-page-2,
    .our-product .card-3[data-category*="minuman"] .product-page-2,
    .our-product .card-4[data-category*="minuman"] .product-page-2,
    .our-product .card-5[data-category*="minuman"] .product-page-2,
    .our-product .card-6[data-category*="minuman"] .product-page-2,
    .our-product .card-7[data-category*="minuman"] .product-page-2,
    .our-product .card-8[data-category*="minuman"] .product-page-2,
    .our-product .card[data-category*="minuman"] .product-page-4,
    .our-product .card-2[data-category*="minuman"] .product-page-4,
    .our-product .card-3[data-category*="minuman"] .product-page-4,
    .our-product .card-4[data-category*="minuman"] .product-page-4,
    .our-product .card-5[data-category*="minuman"] .product-page-4,
    .our-product .card-6[data-category*="minuman"] .product-page-4,
    .our-product .card-7[data-category*="minuman"] .product-page-4,
    .our-product .card-8[data-category*="minuman"] .product-page-4 {
        padding: 0.75rem;
        gap: 0.5rem;
        min-height: auto;
    }
    
    .our-product .image-with-fallback-wrapper,
    .our-product .product-page-3 {
        height: 160px;
        min-height: 160px;
        flex-shrink: 0;
    }
    .our-product .product-page-2,
    .our-product .product-page-4 {
        padding: 1rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        min-height: 180px;
    }
    
    /* Compact text for mobile */
    .our-product .text-wrapper-14,
    .our-product .text-wrapper-24 {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .our-product .p,
    .our-product .text-wrapper-19,
    .our-product .text-wrapper-21,
    .our-product .text-wrapper-23,
    .our-product .text-wrapper-25,
    .our-product .text-wrapper-28 {
        font-size: 13px;
        line-height: 1.4;
    }
    
    /* Drinks text more compact */
    .our-product .card[data-category*="minuman"] .text-wrapper-14,
    .our-product .card[data-category*="minuman"] .text-wrapper-24,
    .our-product .card-2[data-category*="minuman"] .text-wrapper-14,
    .our-product .card-2[data-category*="minuman"] .text-wrapper-24,
    .our-product .card-3[data-category*="minuman"] .text-wrapper-14,
    .our-product .card-3[data-category*="minuman"] .text-wrapper-24,
    .our-product .card-4[data-category*="minuman"] .text-wrapper-14,
    .our-product .card-4[data-category*="minuman"] .text-wrapper-24,
    .our-product .card-5[data-category*="minuman"] .text-wrapper-14,
    .our-product .card-5[data-category*="minuman"] .text-wrapper-24,
    .our-product .card-6[data-category*="minuman"] .text-wrapper-14,
    .our-product .card-6[data-category*="minuman"] .text-wrapper-24,
    .our-product .card-7[data-category*="minuman"] .text-wrapper-14,
    .our-product .card-7[data-category*="minuman"] .text-wrapper-24,
    .our-product .card-8[data-category*="minuman"] .text-wrapper-14,
    .our-product .card-8[data-category*="minuman"] .text-wrapper-24 {
        font-size: 14px;
        line-height: 1.2;
    }
    
    /* Drinks rating more compact on mobile */
    .our-product .card[data-category*="minuman"] .container-7,
    .our-product .card[data-category*="minuman"] .container-10,
    .our-product .card-2[data-category*="minuman"] .container-7,
    .our-product .card-2[data-category*="minuman"] .container-10,
    .our-product .card-3[data-category*="minuman"] .container-7,
    .our-product .card-3[data-category*="minuman"] .container-10,
    .our-product .card-4[data-category*="minuman"] .container-7,
    .our-product .card-4[data-category*="minuman"] .container-10,
    .our-product .card-5[data-category*="minuman"] .container-7,
    .our-product .card-5[data-category*="minuman"] .container-10,
    .our-product .card-6[data-category*="minuman"] .container-7,
    .our-product .card-6[data-category*="minuman"] .container-10,
    .our-product .card-7[data-category*="minuman"] .container-7,
    .our-product .card-7[data-category*="minuman"] .container-10,
    .our-product .card-8[data-category*="minuman"] .container-7,
    .our-product .card-8[data-category*="minuman"] .container-10 {
        gap: 0.15rem;
    }
    
    .our-product .card[data-category*="minuman"] .icon,
    .our-product .card-2[data-category*="minuman"] .icon,
    .our-product .card-3[data-category*="minuman"] .icon,
    .our-product .card-4[data-category*="minuman"] .icon,
    .our-product .card-5[data-category*="minuman"] .icon,
    .our-product .card-6[data-category*="minuman"] .icon,
    .our-product .card-7[data-category*="minuman"] .icon,
    .our-product .card-8[data-category*="minuman"] .icon {
        font-size: 11px;
    }
    
    .our-product .card[data-category*="minuman"] .text-wrapper-13,
    .our-product .card[data-category*="minuman"] .text-wrapper-18,
    .our-product .card[data-category*="minuman"] .text-wrapper-22,
    .our-product .card-2[data-category*="minuman"] .text-wrapper-13,
    .our-product .card-2[data-category*="minuman"] .text-wrapper-18,
    .our-product .card-2[data-category*="minuman"] .text-wrapper-22,
    .our-product .card-3[data-category*="minuman"] .text-wrapper-13,
    .our-product .card-3[data-category*="minuman"] .text-wrapper-18,
    .our-product .card-3[data-category*="minuman"] .text-wrapper-22,
    .our-product .card-4[data-category*="minuman"] .text-wrapper-13,
    .our-product .card-4[data-category*="minuman"] .text-wrapper-18,
    .our-product .card-4[data-category*="minuman"] .text-wrapper-22,
    .our-product .card-5[data-category*="minuman"] .text-wrapper-13,
    .our-product .card-5[data-category*="minuman"] .text-wrapper-18,
    .our-product .card-5[data-category*="minuman"] .text-wrapper-22,
    .our-product .card-6[data-category*="minuman"] .text-wrapper-13,
    .our-product .card-6[data-category*="minuman"] .text-wrapper-18,
    .our-product .card-6[data-category*="minuman"] .text-wrapper-22,
    .our-product .card-7[data-category*="minuman"] .text-wrapper-13,
    .our-product .card-7[data-category*="minuman"] .text-wrapper-18,
    .our-product .card-7[data-category*="minuman"] .text-wrapper-22,
    .our-product .card-8[data-category*="minuman"] .text-wrapper-13,
    .our-product .card-8[data-category*="minuman"] .text-wrapper-18,
    .our-product .card-8[data-category*="minuman"] .text-wrapper-22 {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .our-product .text-wrapper-26,
    .our-product .text-wrapper-15,
    .our-product .text-wrapper-20 {
        font-size: 16px;
    }
    
    .our-product .text,
    .our-product .text-4,
    .our-product .text-6,
    .our-product .text-7,
    .our-product .text-8 {
        padding: 0.2rem 0.6rem;
    }
    
    .our-product .text-wrapper-12,
    .our-product .text-wrapper-17,
     .our-product .text-wrapper-27,
    .our-product .cakes-desserts-2,
    .our-product .coffee-drinks-2 {
        font-size: 11px;
    }
    
    .our-product .container-8,
    .our-product .container-11,
    .our-product .container-13,
    .our-product .container-15,
    .our-product .container-16 {
        margin-top: auto;
        gap: 0.5rem;
    }
    /* Ensure all cards have same height in grid */
    .our-product .container-5 {
        align-items: stretch;
    }
    .our-product .card,
    .our-product .card-2,
    .our-product .card-3,
    .our-product .card-4,
    .our-product .card-5,
    .our-product .card-6,
    .our-product .card-7,
    .our-product .card-8 {
        height: 100%;
        min-height: 280px;
    }
    
    .our-product .image-with-fallback-wrapper,
    .our-product .product-page-3 {
        height: 140px;
        min-height: 140px;
    }
    
    .our-product .product-page-2,
    .our-product .product-page-4 {
        padding: 0.85rem;
        gap: 0.6rem;
        min-height: 140px;
    }
}


/* ============================================
   PAGINASI
   ============================================ */

.our-product .container-18 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.our-product .icon-wrapper,
.our-product .button-7 {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1.78px solid #e8d4b8;
    border-radius: 29826200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.our-product .icon-wrapper:hover,
.our-product .button-7:hover {
    background-color: #f5e6d3;
    border-color: #8b6f47;
}

.our-product .icon-wrapper[aria-label="Previous page"] {
    opacity: 0.4;
    cursor: not-allowed;
}

.our-product .icon-wrapper i,
.our-product .button-7 i {
    color: #8b6f47;
    font-size: 20px;
}

.our-product .container-19 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.our-product .button-5,
.our-product .button-6 {
    all: unset;
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 29826200px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.our-product .button-5 {
    background-color: #8b6f47 !important;
    color: #ffffff !important;
    box-shadow: 0px 4px 6px -4px #0000001a, 0px 10px 15px -3px #0000001a;
}

.our-product .button-5 * {
    color: #ffffff !important;
}

.our-product .button-6 {
    background-color: #ffffff !important;
    color: #8b6f47 !important;
    border: 1.78px solid #e8d4b8;
}

.our-product .button-6 * {
    color: #8b6f47 !important;
}

.our-product .button-5:hover,
.our-product .button-6:hover {
    transform: translateY(-2px);
}


/* Styling teks tombol paginasi - hanya untuk pagination, tidak mempengaruhi header */

.our-product .container-19 .text-wrapper-29,
.our-product .container-19 .text-wrapper-30,
.our-product .container-19 .text-wrapper-pagination {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    display: inline-block;
    color: inherit;
}


/* Ellipsis ("...") untuk pagination */

.our-product .pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #8b6f47;
    font-family: "Poppins-Regular", Helvetica;
    font-size: 14px;
    opacity: 0.7;
}


/* Teks untuk tombol paginasi aktif (background coklat) */

.our-product .container-19 .button-5 .text-wrapper-29,
.our-product .container-19 .button-5.active .text-wrapper-29 {
    color: #ffffff !important;
}


/* Teks untuk tombol paginasi tidak aktif (background putih) */

.our-product .container-19 .button-6 .text-wrapper-30,
.our-product .container-19 .button-6 .text-wrapper-pagination {
    color: #8b6f47 !important;
}

.our-product .paragraph-4 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.our-product .paragraph-4 .text-wrapper-31 {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #8b6f47;
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    margin: 0;
}

@media (max-width: 576px) {
    .our-product .container-18 {
        gap: 0.25rem;
    }
    .our-product .icon-wrapper,
    .our-product .button-7,
    .our-product .button-5,
    .our-product .button-6 {
        width: 40px;
        height: 40px;
    }
    .our-product .button-5,
    .our-product .button-6,
    .our-product .pagination-dots {
        font-size: 13px;
    }
    .our-product .container-5 {
        gap: 0.75rem;
    }
}


/* ============================================
   BAGIAN CTA (CALL TO ACTION)
   ============================================ */

.our-product .container-wrapper {
    width: 100%;
    padding: 3rem clamp(1.5rem, 4vw, 2rem);
    max-width: 1440px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .our-product .container-wrapper {
        padding: 5rem clamp(2rem, 5vw, 3rem);
    }
}

.our-product .container-20 {
    width: 100%;
    padding: 3rem clamp(1.5rem, 4vw, 2rem);
    border-radius: 24px;
    box-shadow: 0px 8px 10px -6px #0000001a, 0px 20px 25px -5px #0000001a;
    background: linear-gradient(180deg, rgba(232, 212, 184, 1) 0%, rgba(245, 230, 211, 1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .our-product .container-20 {
        padding: 4rem clamp(2rem, 5vw, 3rem);
    }
}

.our-product .heading-3 {
    width: 100%;
}

.our-product .text-wrapper-cta {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #6b4423;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.our-product .we-also-take-custom-wrapper {
    width: 100%;
    max-width: 700px;
}

.our-product .we-also-take-custom {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #8b6f47;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.our-product .button-8 {
    all: unset;
    box-sizing: border-box;
    padding: 0.75rem 2rem;
    background-color: #8b6f47;
    color: #ffffff;
    box-shadow: 0px 4px 6px -4px #0000001a, 0px 10px 15px -3px #0000001a;
    border-radius: 29826200px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.our-product .button-8:hover {
    background-color: #6b5a3a;
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px -4px #0000001a, 0px 12px 17px -3px #0000001a;
}


/* ============================================
   FOOTER (menggunakan globals.css)
   ============================================ */


/* ============================================
   ANIMATIONS REMOVED - No animations for product cards
   ============================================ */


/* ============================================
   FOOTER STYLING OVERRIDE - Jam Operasional
   ============================================ */


/* Pastikan ukuran font jam operasional di footer tidak terlalu kecil */

.our-product .footer .text-wrapper-27i,
.our-product .footer .text-wrapper-28,
.our-product .footer .sabtu-minggu {
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #8b6f47;
    font-size: clamp(14px, 2vw, 16px) !important;
    line-height: 1.5;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}