/* ============================================================
   Shop custom styles
   Diekstrak dari inline <style> di layouts/main_shop.blade.php
   agar bisa di-cache browser (lebih ringan saat pindah halaman).
   ============================================================ */

/* --- Tombol custom --- */
/* Solid merah */
.btn-cus-red {
    border-color: #D9121F !important;
    background-color: #D9121F !important;
    color: white !important;
}
.btn-cus-red:hover {
    border-color: #D9121F !important;
    background-color: #D9121F !important;
    color: white !important;
}

/* Outline putih */
.btn-cus-dark-outline {
    color: #191919 !important;
    background-color: white !important;
    border-color: #191919 !important;
}
.ps-product--detail .ps-product__quantity .btn-solid:hover,
.ps-product--detail .ps-product__quantity .btn-cus-dark-outline:hover {
    color: #191919 !important;
    background-color: white !important;
    border-color: #191919 !important;
}
.btn-cus-dark-outline img {
    filter: none !important;
}

/* --- Mobile menu --- */
.ps-product__mobile {
    display: flex;
}
.ps-product__mobile > * {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ps-product__mobile > *:last-child {
    border-right: none;
}

/* --- Thumbnail produk --- */
.ps-product .ps-product__thumbnail {
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.15);
}
.ps-product__thumbnail a.ps-product__image,
.ps-product__thumbnail figure {
    height: 100%;
    display: block;
}
.ps-product__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Loading / spinner --- */
.loading-tag {
    opacity: 0;
}
.spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: block;
    color: red;
}
.spinner-border {
    width: 3rem;
    height: 3rem;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}
@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* --- Nav dropdown --- */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.nav-link.dropdown-toggle::after {
    display: none;
}
.nav-item .dropdown-menu .dropdown-item {
    line-height: 24px;
    padding: 5px;
    margin: 5px;
    font-size: 17px;
    color: #191919;
    background-color: transparent;
    font-weight: 500;
}
.nav-item .dropdown-menu .dropdown-item:hover {
    color: #D9121f;
}
.nav-item .dropdown-menu {
    border-top: 1px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
    border-left: 2px solid #E5E5E5;
    border-right: 2px solid #E5E5E5;
}

/* --- Search result --- */
.ps-search__result {
    overflow-y: auto;
    max-height: 80vh;
    flex-grow: 1;
    margin-top: 15px;
    scrollbar-width: none;
}
.ps-search__result::-webkit-scrollbar {
    display: none;
}

/* --- Tombol Google --- */
.btn-google {
    color: black !important;
    background-color: white !important;
    border: 1px solid rgb(201, 201, 201) !important;
}
