@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

body, h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, select, textarea {
    font-family: 'Open Sans', sans-serif !important;
}

.category-menu-wrapper {
    position: relative;
    z-index: 10;
}

.category-menu-v2 {
    display: flex;
    background-color: #102341;
    border-radius: 15px; /* Memberikan lekukan agar lebih elegan */
    overflow: hidden; /* Memastikan background tidak keluar dari radius */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-category-v2 {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background-color 0.3s ease;
}

.btn-category-v2:last-child {
    border-right: none;
}
.category-title {
    
    font-weight: 800;
    border-left: 5px solid #0056b3;
    padding-left: 15px;
}

.card-produk-v3 {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.card-produk-v3:hover {
    transform: translateY(-5px);
}

.img-wrapper {
    padding: 30px;
    text-align: center;
}

.img-wrapper img {
    max-width: 100%;
    height: auto;
}

.card-content {
    padding: 20px 30px 0 30px;
    position: relative;
    padding-bottom: 60px;
}

.card-content h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.label-otr {
    font-size: 11px;
    color: #888;
    margin-bottom: 2px;
}

.price-val {
    font-weight: 800;
    font-size: 18px;
    color: #000;
}

.btn-details-v3 {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #1a3673;
    color: #fff;
    padding: 10px 35px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px 0 20px 0;
    transition: 0.3s;
}

.btn-details-v3:hover {
    background-color: #0d204a;
    color: #fff;
}

@media (max-width: 768px) {
    /* 1. Container Menu Scrollable */
    .category-menu-v2 {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        -webkit-overflow-scrolling: touch; /* Scroll super mulus di perangkat sentuh */
    }

    /* Sembunyikan scrollbar agar rapi seperti aplikasi */
    .category-menu-v2::-webkit-scrollbar {
        display: none;
    }
    .category-menu-v2 {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

}