@font-face {
    font-family: 'cocogoose';
    src: url(../font/cocogoose/Cocogoose-Pro-Regular-trial.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cocogoose';
    src: url(../font/cocogoose/Cocogoose-Pro-Bold-trial.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'cocogoose';
    src: url(../font/cocogoose/Cocogoose-Pro-Light-trial.ttf) format('truetype');
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: 'cocogoose';
    src: url(../font/cocogoose/Cocogoose-Pro-Semilight-trial.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

.breadcrumb {
    font-size: 1.1rem;
    /* Ukuran font sedikit lebih besar untuk keterbacaan */
}

.breadcrumb-item a {
    color: #333;
    /* Warna teks yang gelap pada link */
    transition: color 0.3s ease-in-out;
}

.breadcrumb-item a:hover {
    color: #007bff;
    /* Warna biru terang saat hover */
    text-decoration: underline;
    /* Menambahkan garis bawah pada hover */
}

.breadcrumb-item.active {
    color: #6c757d;
    /* Warna breadcrumb yang aktif */
}

.breadcrumb-item:not(:last-child):after {
    content: '›';
    /* Menambahkan tanda panah sebagai separator */
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb-item:last-child {
    font-weight: bold;
    /* Menebalkan breadcrumb terakhir */
    color: #007bff;
    /* Membuat breadcrumb terakhir lebih menonjol */
}

.nav-link-hover {
    transition: background-color 0.2s, color 0.2s;
}

.nav-link-hover:hover {
    background-color: #f4f4f4;
    color: #000;
}

.nav-link.active {
    color: #000 !important;
    font-weight: bold;
}

.bg-darkBlue {
    background-color: #001c4b;
    color: #fff;
}

.btn-brown {
    background-color: #a3764c;
    color: #fff;
}

.btn-brown:hover {
    background-color: #fff;
    color: #a3764c;
    outline: #a3764c solid 2px;
}

.bg-image {
    background-image: url('../img/osborn-background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.bg-product-body {
    background-color: #f5efe0;
}

.overlay-white {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 0;
}

.font-cocogoose {
    font-family: cocogoose, sans-serif;
    text-transform: capitalize;
    font-weight: normal;
    font-style: normal;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}

#catalog-col {
    min-height: 100vh; /* atau 100% dari tinggi layar */
}

.custom-category-col {
    padding-left: 8px;
    padding-right: 8px;
}


/* #product-list {
    max-height: 75vh; 
    overflow-y: auto; 
    overflow-x: hidden;
    padding-right: 10px; 
}


#product-list::-webkit-scrollbar {
    width: 8px;
}

#product-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
} */

#filter-container {
    max-height: 80vh; /* Batasi tinggi maksimal */
    overflow-y: auto; /* Aktifkan scroll vertikal */
    overflow-x: hidden;
    padding-right: 10px; /
}

/* Opsional: agar tidak padding terlalu ke kanan saat scroll */
#filter-container::-webkit-scrollbar {
    width: 8px;
}

#filter-container::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

#mockup-image {
    height: 200px;
    object-fit: cover;
  }

@media (min-width: 768px) {
    #mockup-image {
      height: 400px;
    }
}
