/* ============================================================
   BSM - Amenities & Cleaning Supply
   Custom Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   CSS Variables
   ------------------------------------------------------------ */
:root {
    --bsm-primary: #1A1A1A;
    --bsm-accent:  #C9A84C;
    --bsm-light:   #F8F9FA;
    --bsm-dark:    #0D0D0D;
    --bsm-gray:    #6C757D;

    --bsm-primary-hover: #2E2E2E;
    --bsm-accent-hover:  #b8943e;

    --bsm-surface:    #FFFFFF;
    --bsm-bg:         #FAFAFA;
    --bsm-section:    #F4F5F7;
    --bsm-border:     #E8EAED;
    --bsm-text:       #1A1A1A;
    --bsm-text-2:     #64748B;
    --bsm-muted:      #94A3B8;
    --bsm-gold:       #C9A84C;
    --bsm-gold-deep:  #B0902F;
    --bsm-gold-soft:  #F5EDD8;

    --transition-base: 0.25s ease-in-out;
    --navbar-height:   105px; /* top-bar ~35px + main nav ~70px */
}

/* ------------------------------------------------------------
   Base
   ------------------------------------------------------------ */
body {
    font-family: 'Poppins', sans-serif;
    color: #212529;
    background-color: #FAFAFA;
}

/* ------------------------------------------------------------
   Utility Colors
   ------------------------------------------------------------ */
.bg-bsm-primary   { background-color: var(--bsm-primary) !important; }
.bg-bsm-accent    { background-color: var(--bsm-accent)  !important; }
.text-bsm-primary { color: var(--bsm-primary) !important; }
.text-bsm-accent  { color: var(--bsm-accent)  !important; }

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn-bsm-primary {
    background-color: var(--bsm-primary);
    color: #fff;
    border: 2px solid var(--bsm-primary);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background-color var(--transition-base),
                border-color var(--transition-base),
                transform var(--transition-base);
}
.btn-bsm-primary:hover,
.btn-bsm-primary:focus {
    background-color: var(--bsm-primary-hover);
    border-color: var(--bsm-primary-hover);
    color: #fff;
    transform: translateY(-1px);
}

.btn-bsm-accent {
    background-color: var(--bsm-accent);
    color: var(--bsm-primary);
    border: 2px solid var(--bsm-accent);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background-color var(--transition-base),
                border-color var(--transition-base),
                transform var(--transition-base);
}
.btn-bsm-accent:hover,
.btn-bsm-accent:focus {
    background-color: var(--bsm-accent-hover);
    border-color: var(--bsm-accent-hover);
    color: var(--bsm-primary);
    transform: translateY(-1px);
}

.btn-bsm-outline {
    background-color: transparent;
    color: var(--bsm-primary);
    border: 2px solid var(--bsm-primary);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background-color var(--transition-base),
                color var(--transition-base),
                transform var(--transition-base);
}
.btn-bsm-outline:hover,
.btn-bsm-outline:focus {
    background-color: var(--bsm-primary);
    color: #fff;
    transform: translateY(-1px);
}

/* ------------------------------------------------------------
   Product Card
   ------------------------------------------------------------ */
.card-product {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow var(--transition-base),
                transform var(--transition-base);
}
.card-product:hover {
    box-shadow: 0 12px 32px rgba(26, 26, 26, 0.14);
    transform: translateY(-4px);
}
.card-product .card-img-top {
    height: 220px;
    object-fit: cover;
}
.card-product .card-body {
    padding: 1.25rem;
}

/* ------------------------------------------------------------
   Section Title
   ------------------------------------------------------------ */
.section-title {
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--bsm-primary);
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--bsm-accent);
    border-radius: 2px;
    margin-top: 8px;
}

/* ------------------------------------------------------------
   Main Content (offset for fixed navbar)
   ------------------------------------------------------------ */
.main-content {
    min-height: calc(100vh - var(--navbar-height));
}

/* ------------------------------------------------------------
   Top Bar
   ------------------------------------------------------------ */
.top-bar {
    background: var(--bsm-dark);
    padding: 7px 0;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar-info {
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-bar-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}
.top-bar-link:hover {
    color: #fff;
}
.top-bar-social {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color 0.3s;
}
.top-bar-social:hover {
    color: var(--bsm-accent);
}
.top-bar-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 11px;
    user-select: none;
}

/* ------------------------------------------------------------
   Navbar BSM — Main
   ------------------------------------------------------------ */
.navbar-bsm {
    background: var(--bsm-primary) !important;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transition: all 0.35s ease;
}
.navbar-bsm.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(201, 168, 76, 0.12);
}

/* Logo */
.navbar-brand-bsm {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-decoration: none;
    transition: opacity 0.3s;
}
.navbar-brand-bsm:hover {
    opacity: 0.88;
}
.navbar-brand-bsm small {
    display: block;
    font-size: 0.62rem;
    color: var(--bsm-accent);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Nav Links */
.navbar-bsm .nav-link {
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.83rem;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.6rem 1.1rem !important;
    transition: color 0.3s;
}
.navbar-bsm .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--bsm-accent);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
}
.navbar-bsm .nav-link:hover,
.navbar-bsm .nav-link.active {
    color: var(--bsm-accent) !important;
}
.navbar-bsm .nav-link:hover::after,
.navbar-bsm .nav-link.active::after {
    width: 60%;
}

/* Cart Icon */
.nav-cart {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.3rem !important;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s, transform 0.3s !important;
}
.nav-cart:hover {
    color: var(--bsm-accent) !important;
    transform: scale(1.1);
}
.nav-cart::after {
    display: none !important; /* nonaktifkan underline pseudo-element */
}
.cart-badge {
    position: absolute;
    top: -2px;
    right: -6px;
    background: var(--bsm-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Badge Bounce Animation */
@keyframes badgeBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.4); }
    50%  { transform: scale(0.9); }
    70%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.badge-bounce { animation: badgeBounce 0.6s ease; }

/* Cart Icon Shake */
@keyframes cartShake {
    0%, 100% { transform: rotate(0deg); }
    25%       { transform: rotate(-10deg); }
    75%       { transform: rotate(10deg); }
}
.cart-shake { animation: cartShake 0.4s ease; display: inline-block; }

/* x-cloak: hide alpine-managed elements before init */
[x-cloak] { display: none !important; }

/* Toast Container */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}
.toast-container > * {
    pointer-events: auto;
}

/* Toast */
.bsm-toast {
    background: #fff;
    border-left: 4px solid #28a745;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bsmSlideIn 0.3s ease;
}
.bsm-toast-error { border-left-color: #dc3545; }
.bsm-toast-leave { animation: bsmFadeOut 0.3s ease forwards; }

@keyframes bsmSlideIn {
    from { transform: translateX(120%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}
@keyframes bsmFadeOut {
    to { opacity: 0; transform: translateX(20px); }
}

/* Cart Item Image */
.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
}
.cart-item-placeholder {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 1px solid #e5e5e5;
    flex-shrink: 0;
}

/* Divider vertikal antar ikon & dropdown */
.nav-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 4px;
    align-self: center;
}

/* Guest Buttons */
.btn-nav-login {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 50px;
    padding: 6px 22px;
    font-size: 0.83rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-nav-login:hover {
    background: #fff;
    color: var(--bsm-primary);
    border-color: #fff;
}
.btn-nav-register {
    display: inline-flex;
    align-items: center;
    background: var(--bsm-accent);
    color: var(--bsm-primary) !important;
    border-radius: 50px;
    padding: 6px 22px;
    font-size: 0.83rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--bsm-accent);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-nav-register:hover {
    background: var(--bsm-accent-hover);
    border-color: var(--bsm-accent-hover);
    transform: translateY(-1px);
}

/* Auth Logout Button (navbar) */
.btn-nav-logout {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    padding: 0.35rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    line-height: 1.5;
}
.btn-nav-logout:hover {
    background: rgba(220, 53, 69, 0.15);
    color: #ff8080;
    border-color: rgba(220, 53, 69, 0.5);
}

/* Dropdown Custom */
.dropdown-menu-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.4rem;
    min-width: 215px;
    margin-top: 10px !important;
    z-index: 1050;
}
.dropdown-menu-custom .dropdown-item {
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.88rem;
    color: #1A1A1A;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
}
.dropdown-menu-custom .dropdown-item:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--bsm-primary);
}
.dropdown-menu-custom .dropdown-item.text-danger:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545 !important;
}

/* Custom Hamburger Button */
.navbar-toggler-bsm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.navbar-toggler-bsm:focus {
    outline: 2px solid rgba(201, 168, 76, 0.5);
    outline-offset: 3px;
    border-radius: 3px;
}
.navbar-toggler-bsm span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.navbar-toggler-bsm[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.navbar-toggler-bsm[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navbar-toggler-bsm[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-bsm .navbar-collapse {
        background: var(--bsm-primary);
        margin-top: 0.75rem;
        border-radius: 12px;
        padding: 1rem 0.75rem;
        border-top: 2px solid rgba(201, 168, 76, 0.3);
    }
    .navbar-bsm .navbar-nav.mx-auto .nav-link {
        text-align: center;
        padding: 0.7rem 1rem !important;
    }
    .navbar-bsm .nav-link::after {
        display: none;
    }
    .navbar-bsm .navbar-nav.ms-auto {
        align-items: center;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
footer {
    background-color: var(--bsm-dark);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    padding: 3rem 0 1.5rem;
}
footer h5,
footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}
footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
}
footer a:hover {
    color: var(--bsm-accent);
}
footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}
footer .footer-bottom {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}

/* ------------------------------------------------------------
   Alert
   ------------------------------------------------------------ */
.alert {
    border-radius: 8px;
    font-size: 0.9rem;
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 991.98px) {
    :root {
        --navbar-height: 64px; /* top-bar hidden, hanya main nav */
    }
    .card-product .card-img-top {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.4rem;
    }
    .card-product .card-img-top {
        height: 160px;
    }
    footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .btn-bsm-primary,
    .btn-bsm-accent,
    .btn-bsm-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ------------------------------------------------------------
   BSM Modal Konfirmasi (Alpine.js — NO Bootstrap JS)
   ------------------------------------------------------------ */
.bsm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.bsm-modal {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    padding: 32px 28px 26px;
    max-width: 440px;
    width: 100%;
    text-align: center;
}

.bsm-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 16px;
    animation: modalIconPop 0.4s ease;
}
.bsm-modal-icon-warning { background: #fff3cd; color: #f59f00; }
.bsm-modal-icon-danger  { background: #fde2e2; color: #dc3545; }
.bsm-modal-icon-default { background: #fff8e8; color: #C9A84C; }

@keyframes modalIconPop {
    0%   { transform: scale(0); }
    60%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.bsm-modal-title {
    color: var(--bsm-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.bsm-modal-message {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.bsm-modal-product {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
    text-align: left;
}
.bsm-modal-product img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    flex-shrink: 0;
}
.bsm-modal-product-placeholder {
    width: 56px;
    height: 56px;
    background: #e9ecef;
    color: #999;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bsm-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.bsm-modal-actions .btn { min-width: 120px; }

/* ── Payment Option Cards ── */
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    background: #fff;
    margin: 0;
}
.payment-option:hover {
    border-color: var(--bsm-accent, #C9A84C);
    background: #fafafa;
}
.payment-option.selected {
    border-color: var(--bsm-primary, #1A1A1A);
    background: #f4f6fb;
}
.payment-option > i:first-child {
    color: var(--bsm-primary, #1A1A1A);
    flex-shrink: 0;
}

/* ── Success / Failed Icon Wrap ── */
.success-icon-wrap,
.failed-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* ------------------------------------------------------------
   Checkout — Pilih Ekspedisi
   ------------------------------------------------------------ */
.bsm-shipping-info {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.bsm-shipping-price {
    color: var(--bsm-primary);
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}

/* ------------------------------------------------------------
   Checkout — Ringkasan Thumbnail
   ------------------------------------------------------------ */
.bsm-summary-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 0.375rem;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.bsm-summary-thumb-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 0.375rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.min-width-0 { min-width: 0; }

/* ============================================ */
/* BSM Order Status Badge                       */
/* ============================================ */

.bsm-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    border-radius: 999px;
    white-space: nowrap;
    border: 1px solid transparent;
}

.bsm-badge i {
    font-size: 0.875rem;
    line-height: 1;
}

.bsm-badge-sm {
    padding: 3px 9px;
    font-size: 0.75rem;
    gap: 4px;
}
.bsm-badge-sm i { font-size: 0.75rem; }

.bsm-badge-lg {
    padding: 8px 16px;
    font-size: 0.9375rem;
    gap: 8px;
}
.bsm-badge-lg i { font-size: 1rem; }

.bsm-badge-pending   { background: #E6F1FB; color: #0C447C; border-color: #B5D4F4; }
.bsm-badge-paid      { background: #EAF3DE; color: #27500A; border-color: #C0DD97; }
.bsm-badge-processed { background: #FAEEDA; color: #633806; border-color: #FAC775; }
.bsm-badge-shipped   { background: #EEEDFE; color: #26215C; border-color: #CECBF6; }
.bsm-badge-delivered { background: #E1F5EE; color: #04342C; border-color: #9FE1CB; }
.bsm-badge-cancelled { background: #FCEBEB; color: #501313; border-color: #F7C1C1; }
.bsm-badge-default   { background: #F1EFE8; color: #2C2C2A; border-color: #D3D1C7; }

/* ============================================ */
/* BSM Payment Status Badge                     */
/* ============================================ */

.bsm-badge-payment-unpaid  { background: #F1EFE8; color: #444441; border-color: #D3D1C7; }
.bsm-badge-payment-paid    { background: #E1F5EE; color: #04342C; border-color: #5DCAA5; }
.bsm-badge-payment-failed  { background: #FCEBEB; color: #501313; border-color: #F09595; }
.bsm-badge-payment-expired { background: #FAEEDA; color: #633806; border-color: #FAC775; }


/* ============================================ */
/* BSM Hero Section — Gradient Navy + Glow Emas */
/* ============================================ */

.bsm-hero {
    position: relative;
    min-height: 620px;
    background-color: #1A1A1A;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
    isolation: isolate;
}

.bsm-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #1A1A1A;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(201, 168, 76, 0.18), transparent 70%),
        radial-gradient(ellipse 55% 70% at 95% 60%, rgba(201, 168, 76, 0.13), transparent 65%),
        radial-gradient(ellipse 55% 70% at 5% 60%, rgba(201, 168, 76, 0.09), transparent 65%);
    background-size:
        64px 64px,
        64px 64px,
        100% 100%,
        100% 100%,
        100% 100%;
    background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
}

.bsm-hero-content {
    position: relative;
    z-index: 2;
}

/* Badge */
.bsm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.45);
    color: #C9A84C;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.bsm-hero-badge i { font-size: 0.875rem; }

/* Heading */
.bsm-hero-title {
    font-size: 2.625rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: white;
    letter-spacing: -0.01em;
}
.bsm-hero-title .text-bsm-accent { color: #C9A84C; }

.bsm-hero-subtitle-inline {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 0.15rem;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.01em;
}

/* Description */
.bsm-hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2rem;
    max-width: 540px;
}

/* CTA Buttons */
.bsm-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 2.5rem;
}

.bsm-btn-primary-gold,
.bsm-btn-outline-white {
    padding: 12px 26px;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
}

.bsm-btn-primary-gold {
    background: #C9A84C;
    color: #1A1A1A;
    border-color: #C9A84C;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
}
.bsm-btn-primary-gold:hover {
    background: #D9B85F;
    border-color: #D9B85F;
    color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(201, 168, 76, 0.55);
}

.bsm-btn-outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.45);
}
.bsm-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Stats */
.bsm-hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.bsm-hero-stat-item {
    display: flex;
    flex-direction: column;
}

.bsm-hero-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #C9A84C;
    line-height: 1;
    margin-bottom: 4px;
}

.bsm-hero-stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}

.bsm-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(201, 168, 76, 0.25);
}

/* Scroll Indicator */
.bsm-hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.5rem;
    z-index: 2;
    animation: bsmBounce 2s ease-in-out infinite;
    pointer-events: none;
}
@keyframes bsmBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* Responsive */
@media (max-width: 991.98px) {
    .bsm-hero { min-height: 540px; padding: 60px 0; }
    .bsm-hero-title { font-size: 2.25rem; }
    .bsm-hero-subtitle-inline { font-size: 1.5rem; }
    .bsm-hero-title { font-size: 2.125rem; }
    .bsm-hero-subtitle-inline { font-size: 1.25rem; }
    .bsm-hero-bg {
        background-image:
            linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            radial-gradient(ellipse 90% 60% at 50% -10%, rgba(201, 168, 76, 0.16), transparent 70%),
            radial-gradient(ellipse 50% 65% at 95% 60%, rgba(201, 168, 76, 0.11), transparent 65%),
            radial-gradient(ellipse 50% 65% at 5% 60%, rgba(201, 168, 76, 0.08), transparent 65%);
        background-size:
            48px 48px,
            48px 48px,
            100% 100%,
            100% 100%,
            100% 100%;
    }
}

@media (max-width: 767.98px) {
    .bsm-hero { min-height: 500px; padding: 50px 0; }
    .bsm-hero-title { font-size: 1.75rem; line-height: 1.2; }
    .bsm-hero-subtitle-inline { font-size: 1.125rem; }
    .bsm-hero-desc { font-size: 0.9375rem; }
    .bsm-hero-badge { font-size: 0.8125rem; padding: 6px 12px; }
    .bsm-hero-cta { flex-direction: column; gap: 10px; margin-bottom: 1.5rem; }
    .bsm-btn-primary-gold,
    .bsm-btn-outline-white { width: 100%; justify-content: center; }
    .bsm-hero-stats { gap: 16px; flex-wrap: wrap; }
    .bsm-hero-stat-number { font-size: 1.375rem; }
    .bsm-hero-stat-label { font-size: 0.75rem; }
    .bsm-hero-stat-divider { display: none; }
    .bsm-hero-bg {
        background-size:
            40px 40px,
            40px 40px,
            100% 100%,
            100% 100%,
            100% 100%;
    }
    .bsm-hero-scroll-indicator { display: none; }
}

@media (min-width: 1400px) {
    .bsm-hero { min-height: 680px; }
    .bsm-hero-title { font-size: 3.25rem; }
    .bsm-hero-subtitle-inline { font-size: 1.75rem; }
}


/* ============================================================
   Notifikasi Customer — Bell Icon & Dropdown
   ============================================================ */

.bsm-notif-wrapper { position: relative; }

.bsm-notif-trigger {
    background: transparent;
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    color: #C9A84C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.bsm-notif-trigger:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: #C9A84C;
    transform: scale(1.05);
}

.bsm-notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #EF4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.1); }
}

.bsm-notif-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 380px;
    max-width: 90vw;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.15);
    overflow: hidden;
    z-index: 1050;
}

.bsm-notif-header {
    background: #1A1A1A;
    color: #fff;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bsm-notif-header h6 { color: #C9A84C; font-size: 0.95rem; }

.bsm-notif-mark-all {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: #C9A84C;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.bsm-notif-mark-all:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: #C9A84C;
}

.bsm-notif-body { max-height: 400px; overflow-y: auto; }

.bsm-notif-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
}

.bsm-notif-empty i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.bsm-notif-empty p { margin: 0; font-size: 0.85rem; }

.bsm-notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #F1F3F7;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: background 0.15s;
}

.bsm-notif-item:hover              { background: #F8F9FB; color: inherit; }
.bsm-notif-item.is-unread          { background: rgba(201, 168, 76, 0.04); }
.bsm-notif-item.is-unread:hover    { background: rgba(201, 168, 76, 0.08); }

.bsm-notif-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bsm-notif-icon.notif-primary  { background: rgba(13,110,253,.12);  color: #0d6efd; }
.bsm-notif-icon.notif-success  { background: rgba(16,185,129,.12);  color: #10B981; }
.bsm-notif-icon.notif-warning  { background: rgba(245,158,11,.12);  color: #F59E0B; }
.bsm-notif-icon.notif-danger   { background: rgba(239,68,68,.12);   color: #EF4444; }
.bsm-notif-icon.notif-info     { background: rgba(6,182,212,.12);   color: #06B6D4; }
.bsm-notif-icon.notif-secondary{ background: rgba(100,116,139,.12); color: #64748B; }

.bsm-notif-content { flex: 1; min-width: 0; }

.bsm-notif-title {
    font-size: 0.83rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2px;
}

.bsm-notif-message {
    font-size: 0.78rem;
    color: #64748B;
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bsm-notif-time {
    font-size: 0.7rem;
    color: #94A3B8;
    font-weight: 500;
}

.bsm-notif-dot {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.bsm-notif-footer {
    background: #F8F9FB;
    padding: 10px 18px;
    text-align: center;
    border-top: 1px solid #F1F3F7;
}

.bsm-notif-footer a {
    color: #1A1A1A;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.bsm-notif-footer a:hover { color: #C9A84C; }

.bsm-notif-body::-webkit-scrollbar       { width: 6px; }
.bsm-notif-body::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
.bsm-notif-body::-webkit-scrollbar-track { background: transparent; }

[x-cloak] { display: none !important; }

/* ============================================================
   Catalog Hero Strip
   ============================================================ */
.catalog-hero-strip {
    position: relative;
    background: var(--bsm-primary);
    padding: 2rem 0 1.75rem;
    overflow: hidden;
}
.catalog-hero-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 600px at 90% 50%, rgba(201,168,76,.22), transparent 70%),
        radial-gradient(circle 300px at 5% 100%, rgba(201,168,76,.1), transparent 70%),
        linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
    z-index: 0;
}
.catalog-hero-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,.65) !important;
}
.catalog-hero-breadcrumb .breadcrumb-item.active {
    color: var(--bsm-accent) !important;
}
.catalog-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.35);
}
.catalog-hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.2;
}
.catalog-hero-sub {
    color: rgba(255,255,255,.6);
    font-size: .9375rem;
}
.catalog-stat-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(201,168,76,.3);
    color: rgba(255,255,255,.85);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: .85rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.catalog-stat-chip strong { color: #C9A84C; margin: 0 3px; }

/* ============================================================
   Catalog Sidebar
   ============================================================ */
.catalog-sidebar-card {
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.07);
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    overflow: hidden;
    position: sticky;
    top: 120px;
}
.catalog-sidebar-header {
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    padding: 14px 18px;
}
.catalog-sidebar-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(201,168,76,.18);
    border: 1px solid rgba(201,168,76,.3);
    color: #C9A84C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}
.catalog-filter-toggle {
    background: var(--bsm-primary);
    color: #fff;
    border-radius: 10px;
    border: none;
    transition: background .2s;
}
.catalog-filter-toggle:hover { background: var(--bsm-primary-hover); color: #fff; }

.catalog-filter-section {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f0f2f5;
}
.catalog-filter-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.catalog-filter-label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #94a3b8;
    margin-bottom: .5rem;
}
.catalog-category-list { display: flex; flex-direction: column; gap: 2px; }
.catalog-category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: .875rem;
    color: #4b5563;
    transition: background .15s, color .15s;
    user-select: none;
    margin: 0;
    line-height: 1.4;
}
.catalog-category-item:hover { background: #f4f7fb; color: var(--bsm-primary); }
.catalog-category-item.active {
    background: rgba(26,26,26,.07);
    color: var(--bsm-primary);
    font-weight: 600;
}
.catalog-category-item.active .catalog-category-dot {
    background: var(--bsm-primary);
    border-color: var(--bsm-primary);
    box-shadow: 0 0 0 3px rgba(26,26,26,.12);
}
.catalog-category-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: transparent;
    flex-shrink: 0;
    transition: background .15s, border-color .15s, box-shadow .15s;
}
.catalog-category-count {
    background: #f1f5f9;
    color: #94a3b8;
    font-size: .68rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 999px;
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
}

/* ---- Price Range Input ---- */
.catalog-price-input {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    min-width: 0;
}
.catalog-price-input:focus-within {
    border-color: var(--bsm-primary);
    box-shadow: 0 0 0 3px rgba(26,26,26,.08);
}
.catalog-price-prefix {
    padding: 0 7px;
    font-size: .75rem;
    font-weight: 600;
    color: #94a3b8;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    align-self: stretch;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}
.catalog-price-field {
    border: none;
    outline: none;
    padding: 7px 8px;
    font-size: .82rem;
    width: 100%;
    min-width: 0;
    background: transparent;
    color: #1e293b;
    -moz-appearance: textfield;
}
.catalog-price-field::-webkit-outer-spin-button,
.catalog-price-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.catalog-price-field::placeholder { color: #c0cad8; }

/* ============================================================
   Catalog Toolbar
   ============================================================ */
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: .75rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 1px 6px rgba(0,0,0,.04);
}
.catalog-result-count {
    font-size: .9rem;
    color: #64748b;
    margin: 0;
}
.catalog-result-count strong { color: var(--bsm-primary); }
.catalog-filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(26,26,26,.06);
    color: var(--bsm-primary);
    border: 1px solid rgba(26,26,26,.14);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.catalog-filter-badge:hover {
    background: var(--bsm-primary);
    color: #fff;
    border-color: var(--bsm-primary);
    text-decoration: none;
}
.catalog-filter-clear {
    font-size: .78rem;
    color: #ef4444;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: color .15s;
}
.catalog-filter-clear:hover { color: #dc2626; text-decoration: none; }
.catalog-sort-select {
    border-radius: 8px;
    font-size: .85rem;
    min-width: 170px;
    border-color: #e2e8f0;
    flex-shrink: 0;
}

/* ============================================================
   Catalog Empty State
   ============================================================ */
.catalog-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #fafbfc;
    border: 2px dashed #e2e8f0;
    border-radius: 16px;
}
.catalog-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f4ff, #e8ecf7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #a0aec0;
    margin-bottom: 1rem;
}

/* ============================================================
   Product Card — Redesigned
   ============================================================ */
.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: #f4f6f9;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}
.card-product:hover .product-img {
    transform: scale(1.07);
}
.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f7;
    color: #c5cdd8;
    font-size: 3rem;
}
.product-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.card-product:hover .product-img-overlay { opacity: 1; }
.product-quick-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.95);
    color: var(--bsm-primary);
    border: none;
    border-radius: 999px;
    padding: 9px 22px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(14px);
    transition: transform .3s ease, background .15s;
    white-space: nowrap;
}
.card-product:hover .product-quick-view { transform: translateY(0); }
.product-quick-view:hover { background: #fff; color: var(--bsm-primary); text-decoration: none; }

.product-unavailable-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.product-unavailable-badge {
    background: rgba(255,255,255,.92);
    color: #374151;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.product-cat-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--bsm-accent);
    color: var(--bsm-primary);
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
    letter-spacing: .2px;
    line-height: 1.4;
}
.product-stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: .68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.product-stock-available {
    background: rgba(16,185,129,.12);
    color: #059669;
    border: 1px solid rgba(16,185,129,.25);
}
.product-stock-empty {
    background: rgba(239,68,68,.1);
    color: #dc2626;
    border: 1px solid rgba(239,68,68,.2);
}
.product-card-inactive { opacity: .75; }
.product-card-inactive .product-img { filter: grayscale(25%); }

.product-card-body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.product-min-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #eff3ff;
    color: #3b5bdb;
    border: 1px solid #d0d9ff;
    font-size: .7rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 6px;
    margin-bottom: .45rem;
    width: fit-content;
}
.product-card-title {
    font-size: .925rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1e293b;
    margin-bottom: .3rem;
}
.product-card-meta {
    font-size: .775rem;
    color: #94a3b8;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}
.product-card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bsm-accent);
    margin-bottom: .85rem;
    margin-top: auto;
    padding-top: .5rem;
    line-height: 1.1;
}
.product-card-price small {
    display: block;
    font-size: .68rem;
    font-weight: 400;
    color: #94a3b8;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* ---- Catalog Responsive ---- */
@media (max-width: 991.98px) {
    .catalog-sidebar-card { position: static; }
    .catalog-hero-title { font-size: 1.5rem; }
    .product-img-wrap { height: 200px; }
}
@media (max-width: 767.98px) {
    .catalog-hero-strip { padding: 1.5rem 0; }
    .catalog-hero-title { font-size: 1.35rem; }
    .catalog-hero-sub { font-size: .875rem; }
    .catalog-stat-chip { font-size: .8rem; padding: 7px 12px; }
    .product-img-wrap { height: 185px; }
}
