:root {
    --inventory-bg: #f8fafc;
    --card-shadow: 15px 15px 0px #cbd5e1;
    --protocol-green: #064e3b;
    --protocol-accent: #10b981;
}

body.bg-inventory {
    background-color: var(--inventory-bg);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ── HERO ── */
.inventory-hero {
    background: #ffffff;
    color: #000;
    padding-bottom: 80px;
}

.inventory-nav {
    padding: 24px 0;
    border-bottom: 1px solid #1e293b;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-brand img {
    height: 40px;
}

.brand-name {
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 1.2rem;
    color: #000;
}

.search-protocol-wrap {
    flex: 1;
    max-width: 600px;
}

.search-bar-boxy {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border: 1px solid #334155;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.search-bar-boxy:focus-within {
    border-color: var(--protocol-accent);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.search-bar-boxy i {
    color: #64748b;
}

.search-bar-boxy input {
    background: transparent;
    border: none;
    padding: 16px;
    color: #111827;
    width: 100%;
    font-size: 0.95rem;
    outline: none;
}

.search-bar-boxy input::placeholder {
    color: #9ca3af;
}

.cart-trigger-premium {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--protocol-accent);
    transition: transform 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.cart-trigger-premium:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #fff;
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
}

.hero-content-inventory {
    padding-top: 64px;
}

.tagline {
    color: var(--protocol-accent);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.heading-xl {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 16px 0;
    line-height: 1.1;
}

.hero-text-block p {
    color: #0f1010;
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ── CONTROL STRIP ── */
.control-strip {
    background: #fff;
    border: 1px solid #e2e8f0;
    margin-top: -40px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.control-label {
    font-size: 0.65rem;
    font-weight: 900;
    color: #94a3b8;
    margin-right: 12px;
}

.category-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn:hover {
    border-color: #000;
}

.category-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.sort-select-premium {
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

/* ── MAIN ── */
.inventory-main {
    padding-top: 80px;
    padding-bottom: 100px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

/* ══════════════════════════════════════════
   BRAND CARD
   ══════════════════════════════════════════ */
.brand-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 290px;
    padding: 44px 28px 36px;
    gap: 0;
    --shine-x: 50%;
    --shine-y: 50%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.4s ease;
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 220px at var(--shine-x) var(--shine-y), rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.brand-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    height: 3px;
    background: var(--protocol-accent);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: #cbd5e1;
    box-shadow: 15px 15px 0px #cbd5e1;
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover::after {
    right: 0;
}

.brand-card:active {
    transform: translateY(-4px) scale(0.99);
}

.brand-card-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.68rem;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-card-arrow {
    border-color: var(--protocol-accent);
    color: var(--protocol-accent);
    transform: translate(2px, -2px);
}

.brand-card-icon {
    width: 44px;
    height: 44px;
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--protocol-accent);
    margin-bottom: 18px;
    transition: transform 0.35s ease, background 0.3s ease;
}

.brand-card:hover .brand-card-icon {
    transform: rotate(-6deg) scale(1.1);
    background: #dcfce7;
}

.brand-card-name {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 14px;
    transition: color 0.25s ease;
}

.brand-card:hover .brand-card-name {
    color: var(--protocol-green);
}

.brand-card-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.brand-card-pill {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--protocol-accent);
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-card-dot {
    width: 3px;
    height: 3px;
    background: #cbd5e1;
    border-radius: 50%;
}

.brand-card-type {
    font-size: 0.68rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   BRAND MODAL — with series grouping
   ══════════════════════════════════════════ */
.brand-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.brand-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.brand-modal {
    background: #fff;
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 820px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    transform: translateY(28px) scale(0.97);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 24px 24px 0px #cbd5e1;
}

.brand-modal-overlay.open .brand-modal {
    transform: translateY(0) scale(1);
}

.brand-modal-header {
    padding: 28px 32px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-shrink: 0;
    position: relative;
}

.brand-modal-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 72px;
    height: 3px;
    background: var(--protocol-accent);
}

.brand-modal-label {
    font-size: 0.62rem;
    font-weight: 900;
    color: var(--protocol-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.brand-modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 8px;
}

.brand-modal-desc {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.65;
    max-width: 500px;
}

.brand-modal-close {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.brand-modal-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

.brand-modal-body {
    overflow-y: auto;
    flex: 1;
    padding: 24px 32px 32px;
}

.brand-modal-body::-webkit-scrollbar {
    width: 4px;
}

.brand-modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.brand-modal-body::-webkit-scrollbar-thumb {
    background: var(--protocol-accent);
}

.brand-modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.modal-stat-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
    text-align: center;
}

.modal-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--protocol-green);
    line-height: 1;
}

.modal-stat-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ── Series Group ── */
.series-group {
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.series-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #0f172a;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.series-header:hover {
    background: #1e293b;
}

.series-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.series-icon {
    width: 30px;
    height: 30px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--protocol-accent);
    flex-shrink: 0;
}

.series-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
}

.series-count {
    font-size: 0.62rem;
    font-weight: 700;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.series-chevron {
    color: #94a3b8;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.series-group.collapsed .series-chevron {
    transform: rotate(-90deg);
}

.series-group.collapsed .series-body {
    display: none;
}

/* ── Model row (enhanced with cart) ── */
.model-row {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
    animation: slide-row 0.3s ease both;
}

.model-row:last-child {
    border-bottom: none;
}

@keyframes slide-row {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.model-row:hover {
    background: #f0fdf4;
}

.model-row-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 5px;
    flex-shrink: 0;
}

.model-row-img-placeholder {
    width: 56px;
    height: 56px;
    background: #fff;
    border: 1px dashed #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.model-row-info {
    flex: 1;
    min-width: 0;
}

.model-row-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.model-row-type {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 2px;
    text-transform: capitalize;
}

.model-row-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.model-row-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.model-row-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--protocol-green);
    white-space: nowrap;
}

.model-row-stock {
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

.model-row-stock.low {
    color: #f59e0b;
}

/* Cart controls inline */
.model-cart-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    background: #fff;
    overflow: hidden;
}

.qty-btn {
    width: 26px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #64748b;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.qty-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.qty-input {
    width: 34px;
    height: 30px;
    border: none;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    outline: none;
    background: #fff;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-row-btn {
    height: 30px;
    padding: 0 12px;
    background: #0f172a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.add-to-cart-row-btn:hover {
    background: var(--protocol-accent);
    transform: translateY(-1px);
}

.add-to-cart-row-btn:active {
    transform: translateY(0);
}

.add-to-cart-row-btn.added {
    background: var(--protocol-green);
}

.add-to-cart-row-btn i {
    font-size: 0.65rem;
}

/* ── Toast ── */
.cart-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #0f172a;
    color: #fff;
    padding: 14px 20px;
    border: 1px solid #1e293b;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 8px 8px 0px #cbd5e1;
    max-width: 320px;
}

.cart-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-toast i {
    color: var(--protocol-accent);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── MOBILE NAV ── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.mobile-nav-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.mobile-nav-content a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ── FOOTER ── */
footer {
    background: #000;
    color: #fff;
    padding: 6rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-col h4 {
    color: #10b981;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-col a,
.footer-col p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.footer-col a:hover {
    color: #10b981;
}

.footer-col .brand img {
    height: 55px;
}

/* ── HAMBURGER ── */
.inventory-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hamburger-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    padding: 0 10px;
    transition: all 0.2s ease;
}

.hamburger-btn:hover {
    border-color: #000;
    transform: translateY(-1px);
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0f172a;
    transition: all 0.2s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-split {
        flex-wrap: wrap;
    }

    .search-protocol-wrap {
        flex: 1 1 100%;
        max-width: 100%;
        order: 3;
    }

    .brand-name {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .inventory-hero {
        padding-bottom: 56px;
    }

    .inventory-nav {
        padding: 18px 0;
    }

    .nav-split {
        gap: 18px;
    }

    .nav-brand {
        width: 100%;
    }

    .nav-brand img {
        height: 36px;
    }

    .inventory-actions {
        margin-left: auto;
    }

    .hero-content-inventory {
        padding-top: 40px;
    }

    .heading-xl {
        font-size: clamp(1.9rem, 6vw, 2.9rem);
    }

    .hero-text-block p {
        font-size: 1rem;
        max-width: 100%;
    }

    .control-strip {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        margin-top: -16px;
    }

    .filter-group,
    .sort-group {
        width: 100%;
    }

    .sort-controls,
    .sort-select-premium {
        width: 100%;
    }

    .inventory-main {
        padding-top: 56px;
        padding-bottom: 72px;
    }

    .brand-modal-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .inventory-hero {
        padding-bottom: 48px;
    }

    .inventory-nav {
        padding: 16px 0;
    }

    .nav-brand img {
        height: 34px;
    }

    .brand-name {
        font-size: 0.86rem;
    }

    .search-bar-boxy {
        padding: 0 14px;
        border-radius: 10px;
    }

    .search-bar-boxy input {
        padding: 14px 12px;
        font-size: 0.9rem;
    }

    .cart-trigger-premium {
        font-size: 1.3rem;
    }

    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 0.58rem;
        top: -4px;
        right: -8px;
    }

    .hero-content-inventory {
        padding-top: 32px;
    }

    .tagline {
        font-size: 0.62rem;
        letter-spacing: 1.6px;
    }

    .heading-xl {
        font-size: clamp(1.65rem, 8vw, 2.4rem);
        margin: 12px 0;
    }

    .hero-text-block p {
        font-size: 0.95rem;
    }

    .control-strip {
        padding: 16px;
        gap: 16px;
    }

    .control-label {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .category-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .category-btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.68rem;
        text-align: center;
    }

    .sort-select-premium {
        width: 100%;
        padding: 12px 14px;
        font-size: 0.72rem;
    }

    .inventory-main {
        padding-top: 48px;
        padding-bottom: 64px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-card {
        min-height: 220px;
        padding: 36px 20px 28px;
    }

    .brand-card-name {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .brand-modal {
        max-height: 90vh;
    }

    .brand-modal-header {
        padding: 20px;
    }

    .brand-modal-body {
        padding: 16px 20px 24px;
    }

    .brand-modal-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .modal-stat-value {
        font-size: 1.2rem;
    }

    .brand-modal-title {
        font-size: 1.6rem;
    }

    .model-row {
        padding: 10px 14px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .model-cart-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .cart-toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand-name {
        font-size: 0.78rem;
    }

    .heading-xl {
        font-size: 1.45rem;
    }

    .category-filters {
        grid-template-columns: 1fr;
    }

    .category-btn {
        font-size: 0.66rem;
        padding: 10px;
    }

    .brand-modal-stats {
        grid-template-columns: 1fr;
    }
}

.cart-icon-img-premium {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.cart-trigger-premium:hover .cart-icon-img-premium {
    transform: scale(1.1);
}