/* =========================================================
THE AROMAVERSE
CATALOG.CSS
LUXURY COLLECTION EXPERIENCE
========================================================= */

/* =========================================================
CATALOG FOUNDATION
========================================================= */

.catalog-page {

    position: relative;

}

.catalog-results-section {

    position: relative;

    padding:
        0 0
        5rem;

}

.catalog-product-grid {

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        );

    gap: 2rem;

}

.catalog-card-shell{

cursor:pointer;
}
/* =========================================================
CATALOG HERO
========================================================= */

.catalog-hero {

    position: relative;

    overflow: hidden;

    padding-top:120px;
    padding-bottom:3rem;

    padding-bottom: 5rem;

}

.catalog-hero-bg {

    position: absolute;

    inset: 0;

    pointer-events: none;

}

.catalog-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

}

.catalog-glow-left {

    width: 500px;
    height: 500px;

    left: -180px;
    top: -100px;

    background:
        rgba(
            200,
            176,
            139,
            .12
        );

}

.catalog-glow-right {

    width: 600px;
    height: 600px;

    right: -200px;
    top: 10%;

    background:
        rgba(
            255,
            255,
            255,
            .04
        );

}

.catalog-hero-content {

    position: relative;

    z-index: 2;

    max-width: 860px;

    margin-inline: auto;

    text-align: center;

}

.catalog-overline {

    display: inline-block;

    margin-bottom: 1rem;

    color:
        var(--lux-gold);

    font-size:
        .75rem;

    letter-spacing:
        .35em;

    text-transform:
        uppercase;

}

.catalog-heading {

    margin-bottom:
        1.5rem;

    font-size:
        clamp(
            3rem,
            7vw,
            6rem
        );

    line-height:
        .92;

}

.catalog-description{

max-width:560px;

margin:0 auto;

font-size:1rem;

line-height:1.9;

color:rgba(255,255,255,.65);

}

.catalog-toolbar-label{

display:block;

font-size:.72rem;

letter-spacing:.25em;

text-transform:uppercase;

color:var(--text-muted);

margin-bottom:.35rem;

}

.catalog-results-meta strong{

font-size:1rem;

font-weight:500;

color:var(--lux-cream);

}

/* =========================================================
LUXURY BRAND WALL
========================================================= */

.catalog-brand-wall {

    padding: 1rem 0 3rem;

    overflow: hidden;

}

.catalog-brand-columns {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 1rem;

    height: 140px;

    overflow: hidden;

}

.brand-column {

    display: flex;

    flex-direction: column;

    gap: .75rem;

}

.brand-wall-item {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 44px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.06);

    color:
        var(--text-secondary);

    font-size: .78rem;

    letter-spacing: .18em;

    text-transform: uppercase;

    transition: .3s ease;

}

.brand-wall-item:hover {

    color: var(--lux-gold);

    border-color: rgba(200,176,139,.35);

}

.brand-up {

    animation:
        brandUp 350s linear infinite;

}

.brand-down {

    animation:
        brandDown 350s linear infinite;

}



@keyframes brandUp {

    from {

        transform:
            translateY(0);

    }

    to {

        transform:
            translateY(-50%);

    }

}

@keyframes brandDown {

    from {

        transform:
            translateY(-50%);

    }

    to {

        transform:
            translateY(0);

    }
    
.brand-column:hover {

    animation-play-state: paused;

}
}
/* =========================================================
TRUST POINTS
========================================================= */
.catalog-trust-chips{

justify-content:center;

gap:.5rem;

margin-top:1.25rem;

}

.catalog-trust-chips span{

padding:.45rem .8rem;

font-size:.7rem;

letter-spacing:.12em;

text-transform:uppercase;

}

.catalog-trust-points {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 1rem;

    margin-top: 3rem;

}

.trust-point {

    min-width: 140px;

    padding:
        1.25rem
        1.5rem;

    border-radius:
        20px;

    background:
        rgba(
            255,
            255,
            255,
            .03
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    backdrop-filter:
        blur(20px);

}

.trust-point strong {

    display: block;

    margin-bottom: .25rem;

    color:
        var(--lux-cream);

    font-size:
        1.3rem;

}

.trust-point span {

    color:
        var(--text-secondary);

    font-size:
        .8rem;

}

/* =========================================================
SEARCH SECTION
========================================================= */

.catalog-search-section {

    position: relative;

    margin-bottom:
        4rem;

}

.catalog-search-shell {

    padding:
        1.25rem;

    border-radius:
        32px;

    background:
        linear-gradient(
            180deg,
            rgba(18,18,18,.95),
            rgba(10,10,10,.98)
        );

    border:
        1px solid
        rgba(
            200,
            176,
            139,
            .18
        );

}

.catalog-search-form {

    display: flex;

    gap: 1rem;

    align-items: center;

}

.catalog-search-wrapper {

    position: relative;

    flex: 1;

}

.catalog-search-icon {

    position: absolute;

    left: 1.25rem;

    top: 50%;

    width: 20px;
    height: 20px;

    transform:
        translateY(-50%);

    color:
        var(--text-muted);

}

.catalog-search-input {

    width: 100%;

    height: 56px;

    padding:
        0
        1.5rem
        0
        3.5rem;

    border-radius:
        999px;

    background:
        rgba(
            255,
            255,
            255,
            .03
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    color:
        var(--lux-cream);

}

.catalog-search-input:focus {

    border-color:
        rgba(
            200,
            176,
            139,
            .35
        );

}

/* =========================================================
SEARCH SUGGESTIONS
========================================================= */

.catalog-search-suggestions {

    position: absolute;

    top: calc(100% + 12px);

    left: 0;
    right: 0;

    background:
        #090909;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    border-radius:
        24px;

    overflow: hidden;

    display: none;

    z-index: 500;

    max-height: 420px;

    overflow-y: auto;

}

.catalog-search-suggestions.active {

    display: block;

}

/* =========================================================
FEATURED BRAND STRIP
========================================================= */

.catalog-brand-strip {

    display: flex;

    align-items: center;

    gap: .55rem;

    margin-top: 2rem;

    overflow-x: auto;

    scrollbar-width: none;

}

.catalog-brand-strip::-webkit-scrollbar {

    display: none;

}

.catalog-strip-label {

    flex-shrink: 0;

    color:
        var(--text-muted);

    font-size:
        .72rem;

    letter-spacing:
        .18em;

    text-transform:
        uppercase;

}

.catalog-brand-pill {

    flex-shrink: 0;

    padding:
        .65rem
        .95rem;
        
        font-size:
        .82rem;

    border-radius:
        999px;

    background:
        rgba(
            255,
            255,
            255,
            .04
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    transition:
        all .3s ease;

}

.catalog-brand-pill:hover {

    border-color:
        var(--lux-gold);

    transform:
        translateY(-2px);

}

/* =========================================================
DISCOVERY SECTION
========================================================= */

.catalog-discovery-section {

    padding:
        0 0
        5rem;

}

.catalog-discovery-grid {

    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 1.5rem;

}

.discovery-card {

    position: relative;

    padding: 2rem;

    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(18,18,18,.95),
            rgba(8,8,8,.98)
        );

    border:
        1px solid rgba(255,255,255,.08);

    min-height:auto;

}

.discovery-card h3 {

    margin-bottom: 1.5rem;

    font-size: 1.5rem;

}

.discovery-links {

    display: flex;

    flex-direction: column;

    gap: 1rem;

}

.discovery-links a {

    color: var(--text-secondary);

    transition: all .3s ease;

}

.discovery-links a:hover {

    color: var(--lux-gold);

    transform: translateX(4px);

}

/* =========================================================
COLLECTION STATS
========================================================= */

.catalog-stats-section {

    padding:
        0 0
        5rem;

}

.catalog-stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 1.25rem;

}

.catalog-stat {

    text-align: center;

    padding: 2rem;

    border-radius: 24px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.08);

}

.catalog-stat strong {

    display: block;

    margin-bottom: .5rem;

    color: var(--lux-gold);

    font-size: 1.3rem;

}

.catalog-stat span {

    color: var(--text-secondary);

}

/* =========================================================
CATALOG TOOLBAR
========================================================= */

/* =========================================================
STEP 8: Remove sticky from filter toolbar
========================================================= */

.catalog-toolbar-section {
    position: static;           /* Changed from sticky */
    z-index: auto;
    margin-bottom: 2rem;
}

/* Keep search section sticky if you want (optional) */
.catalog-search-section {
    position: sticky;
    top: 70px;
    z-index: 30;
    background: #0A0A0A;
    padding-bottom: 1rem;
}
.catalog-toolbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 1rem;

    padding: 1rem 1.5rem;

    border-radius: 999px;

    background:
        rgba(10,10,10,.82);

    backdrop-filter:
        blur(28px);

    border:
        1px solid rgba(200,176,139,.12);

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);

}

.catalog-toolbar-left {

    display: flex;

    align-items: center;

    gap: 1rem;

}

.catalog-toolbar-right {

    display: flex;

    align-items: center;

}

.catalog-filter-trigger {

    height: 50px;

    padding: 0 1.5rem;

    border-radius: 999px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    color:
        var(--lux-cream);

    cursor: pointer;

    transition: .3s ease;

}

.catalog-filter-trigger:hover {

    border-color:
        var(--lux-gold);

    color:
        var(--lux-gold);

}

.catalog-results-meta {

    color:
        var(--text-secondary);

}

.catalog-sort {

    min-width: 240px;

    height: 50px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

}

.catalog-filter-drawer{

    box-shadow:
    -30px 0 80px
    rgba(0,0,0,.6);

}

.catalog-filter-header{

    position:sticky;

    top:0;

    background:#080808;

    z-index:10;

}

/* =========================================================
ACTIVE FILTERS
========================================================= */

.catalog-active-filters {

    margin-bottom: 2rem;

}

.catalog-active-filter-row {

    display: flex;

    flex-wrap: wrap;

    gap: .75rem;

}

.active-filter-pill {

    padding:
        .75rem 1rem;

    border-radius:
        999px;

    background:
        rgba(200,176,139,.12);

    border:
        1px solid rgba(200,176,139,.25);

}

.clear-filters-link {

    padding:
        .75rem 1rem;

    color:
        var(--lux-gold);

}

/* =========================================================
FILTER BACKDROP
========================================================= */

.catalog-filter-backdrop {

    position: fixed;

    inset: 0;

    background:
        rgba(0,0,0,.65);

    backdrop-filter:
        blur(8px);

    opacity: 0;

    visibility: hidden;

    transition:
        .35s ease;

    z-index: 120;

}

.catalog-filter-backdrop.active {

    opacity: 1;

    visibility: visible;

}

/* =========================================================
FILTER DRAWER
========================================================= */

.catalog-filter-drawer {

    position: fixed;

    top: 0;
    right: 0;

    width:100vw;

    max-width:100vw;

    max-width: 100%;

    height: 100vh;

    overflow-y: auto;

    background:
        #080808;

    border-left:
        1px solid rgba(255,255,255,.08);

    transform:
        translateX(100%);

    transition:
        transform .4s cubic-bezier(.22,.61,.36,1);

    z-index: 130;

}

.catalog-filter-drawer.active {

    transform:
        translateX(0);

}

.catalog-filter-header {

    position: sticky;

    top: 0;

    z-index: 20;

    background: #080808;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 1rem;

    padding: 2rem;

    border-bottom:
        1px solid rgba(255,255,255,.06);

}

.catalog-filter-close{

    position: sticky;

    top: 0;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background: rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    color: var(--lux-cream);

    font-size:1.8rem;

    cursor:pointer;

    z-index:10000;

}

.catalog-filter-form {

    padding: 2rem;

}

.catalog-filter-backdrop{
    z-index:9998;
}

.catalog-filter-drawer{
    z-index:9999;
}

.filter-group {

    margin-bottom: 1.5rem;

}

.filter-group label {

    display: block;

    margin-bottom: .6rem;

    color: var(--lux-gold);

    font-size: .8rem;

    letter-spacing: .14em;

    text-transform: uppercase;

}

.catalog-select {

    width: 100%;

}

.catalog-filter-actions {

    display: flex;

    flex-direction: column;

    gap: 1rem;

    margin-top: 2rem;

}

/* =========================================================
RESULTS HEADER
========================================================= */

.catalog-results-header-section {

    margin-bottom: 2rem;

}

.catalog-results-header {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 2rem;

}

.catalog-results-title {

    margin-top: .5rem;

}

.catalog-results-count {

    color: var(--text-muted);

    font-size: .9rem;

    letter-spacing: .14em;

    text-transform: uppercase;

}

/* =========================================================
PRODUCT GRID
========================================================= */

.catalog-product-grid {

    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 2rem;

}

/* =========================================================
PRODUCT CARD
========================================================= */

.catalog-product-card {

    position: relative;

    min-width: 0;

}

.catalog-card-shell {

    position: relative;

    display: flex;

    flex-direction: column;

    height: 100%;

    border-radius: 24px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(15,15,15,.98),
            rgba(8,8,8,1)
        );

    border:
        1px solid rgba(255,255,255,.08);

    transition:
        transform .45s cubic-bezier(.22,.61,.36,1),
        border-color .45s cubic-bezier(.22,.61,.36,1),
        box-shadow .45s cubic-bezier(.22,.61,.36,1);

}

.catalog-card-shell::after{

content:'';

position:absolute;

left:0;

right:0;

bottom:0;

height:120px;

background:
linear-gradient(
to top,
rgba(200,176,139,.03),
transparent
);

pointer-events:none;

}

.catalog-card-shell:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(200,176,139,.35);

    box-shadow:
        0 35px 90px rgba(0,0,0,.5);

}

.catalog-product-card{

cursor:pointer;

}

/* =========================================================
IMAGE AREA
========================================================= */

.catalog-card-media {

    position: relative;

    aspect-ratio: 1 / 1.2;

    overflow: hidden;

    border-right:
    1px solid rgba(255,255,255,.06);

background:
    radial-gradient(
        circle at center,
        rgba(200,176,139,.08),
        rgba(255,255,255,.02)
    );

}

.catalog-card-image {

    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 0rem;

    transition:
        transform .8s cubic-bezier(.22,.61,.36,1);

}

.catalog-card-shell:hover
.catalog-card-image {

    transform:
        scale(1.08);

}

.catalog-card-placeholder {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--lux-gold);

    font-size: 4rem;

}

.catalog-card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.55),
            transparent 60%
        );

}

.catalog-card-media::before{

content:'';

position:absolute;

left:50%;

top:50%;

width:65%;

height:65%;

transform:translate(-50%,-50%);

border-radius:50%;

background:
radial-gradient(
circle,
rgba(200,176,139,.16),
transparent 70%
);

filter:blur(40px);

pointer-events:none;

}

/* =========================================================
CARD TOP
========================================================= */

.catalog-card-top {

    position: absolute;

    top: 1rem;
    left: 1rem;
    right: 1rem;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 1rem;

    z-index: 3;

}

.catalog-card-badges {

    display: flex;

    flex-wrap: wrap;

    gap: .5rem;

}

.catalog-badge {

    padding:
        .45rem .7rem;

    border-radius:
        999px;

    background:
        rgba(0,0,0,.6);

    backdrop-filter:
        blur(18px);

    border:
        1px solid rgba(255,255,255,.08);

    font-size:
        .62rem;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

}

.catalog-wishlist {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.08);

    background:
        rgba(0,0,0,.65);

    backdrop-filter:
        blur(18px);

    color:
        var(--lux-cream);

    cursor: pointer;

    transition:
        all .3s ease;

}

.catalog-wishlist:hover {

    color:
        var(--lux-gold);

    transform:
        scale(1.08);

}

/* =========================================================
BOTTOM IMAGE TAGS
========================================================= */

.catalog-card-bottom {

    position: absolute;

    left: 1rem;
    right: 1rem;
    bottom: 1rem;

    display: flex;

    gap: .5rem;

    z-index: 3;

}

.catalog-presence {

    padding:
        .55rem .8rem;

    border-radius:
        999px;

    backdrop-filter:
        blur(20px);

    font-size:
        .68rem;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

}

.catalog-presence.retail {

    background:
        rgba(200,176,139,.18);

    border:
        1px solid rgba(200,176,139,.3);

}

.catalog-presence.decant {

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.12);

}

/* =========================================================
CARD CONTENT
========================================================= */

.catalog-card-content {

    display: flex;
    flex-direction: column;

    padding: 1.25rem;

}

.catalog-card-brand {

    color: var(--lux-gold);

    font-size: .65rem;

    letter-spacing: .28em;

    text-transform: uppercase;

    margin-bottom: .65rem;

    opacity: .9;

}

.catalog-card-title {

    font-size: 1.65rem;

    line-height: 1.05;

    margin-bottom: .75rem;

}

.catalog-card-title-link {

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

.catalog-card-family {

    color: var(--text-muted);

    font-size: .85rem;

    margin-bottom: 1.5rem;

}

.catalog-card-meta {

    display: flex;

    align-items: center;

    gap: .5rem;

    color: var(--text-muted);

    font-size: .8rem;

    margin-bottom: .5rem;

}

.catalog-meta-dot {

    opacity: .5;

}

.catalog-card-spacer {

    flex: 1;

}

/* =========================================================
STOCK ROW
========================================================= */

.catalog-stock-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: .75rem;

    margin-bottom: 1rem;

}

.catalog-stock {

    font-size: .75rem;

    letter-spacing: .12em;

    text-transform: uppercase;

}

.catalog-stock.in-stock {

    color: #66d98f;

}

.catalog-stock.out-stock {

    color: #ff8585;

}

.catalog-gender {

    color: var(--text-muted);

    font-size: .8rem;

}

/* =========================================================
PRICE BLOCK
========================================================= */

.catalog-price-block {

    margin-top: auto;

    margin-bottom: 1.25rem;

    padding-top: 1rem;

    border-top:
        1px solid rgba(255,255,255,.06);

}

.catalog-price-label {

    display: block;

    margin-bottom: .5rem;

    color: var(--text-muted);

    font-size: .65rem;

    letter-spacing: .22em;

    text-transform: uppercase;

}

.catalog-price {

font-size:1.8rem;

font-weight:600;

line-height:1;

margin-bottom:.25rem;

}

/* =========================================================
CTA AREA
========================================================= */

.catalog-card-actions {

    display: flex;

    gap: .75rem;

    margin-top: 1rem;

}

.catalog-card-actions .btn {

    flex: 1;

    min-height: 50px;
    
    position: relative;
z-index: 5;

font-size: .82rem;

letter-spacing: .08em;

}

.catalog-view-product {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 1;

    min-height: 50px;

    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.10);

    background:
    transparent;
    
    color: var(--text-secondary);

    transition: .3s ease;

}

.catalog-view-product:hover {

    color: var(--lux-gold);

    border-color: var(--lux-gold);

}

/* =========================================================
PAGINATION
========================================================= */

.catalog-pagination-section {

    padding: 4rem 0;

}

.catalog-pagination {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: .75rem;

    flex-wrap: wrap;

}

.catalog-page-link,
.catalog-page-arrow {

    min-width: 48px;

    height: 48px;

    padding: 0 1rem;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.03);

    transition: .3s ease;

}

.catalog-page-link:hover,
.catalog-page-arrow:hover {

    border-color: var(--lux-gold);

}

.catalog-page-link.active {

    background: var(--lux-gold);

    color: var(--lux-black);

    border-color: var(--lux-gold);

}

/* =========================================================
DISCOVERY BANNER
========================================================= */

.catalog-discovery-banner {

    padding: 2rem 0 6rem;

}

.catalog-discovery-card {

    padding: 4rem;

    text-align: center;

    border-radius: 40px;

    background:
        linear-gradient(
            180deg,
            rgba(18,18,18,.98),
            rgba(8,8,8,1)
        );

    border:
        1px solid rgba(200,176,139,.18);

}

.catalog-discovery-title {

    margin:
        1rem auto;

    max-width: 12ch;

}

.catalog-discovery-text {

    max-width: 700px;

    margin:
        0 auto 2rem;

    color: var(--text-secondary);

}

/* =========================================================
QUICK ADD MODAL
========================================================= */

.quick-add-modal {

    position: fixed;

    inset: 0;

    z-index: 500;

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;

}

.quick-add-modal.active {

    opacity: 1;

    visibility: visible;

}

.quick-add-modal-backdrop {

    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.75);

    backdrop-filter:
        blur(10px);

}

.quick-add-panel {

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%,-50%);

    width: min(960px,95vw);

    border-radius: 32px;

    overflow: hidden;

    background:
linear-gradient(
180deg,
rgba(18,18,18,.98),
rgba(8,8,8,1)
);

    border:
        1px solid rgba(255,255,255,.08);
        
        max-height: 90vh;

overflow-y: auto;

}

.quick-add-close {

    position: absolute;

    top: 1rem;
    right: 1rem;

    width: 52px;
    height: 52px;
    font-size:1.5rem;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    z-index: 10;

    background:
        rgba(255,255,255,.05);

}

.quick-add-layout {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

}

.quick-add-image-wrap {

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.quick-add-image {

    max-width: 80%;

    max-height: 420px;

    object-fit: contain;

}

.quick-add-details {

    padding: 3rem;

}

.quick-add-brand {

    color: var(--lux-gold);

    letter-spacing: .2em;

    text-transform: uppercase;

    margin-bottom: .75rem;

}

.quick-add-title {

    margin-bottom: .75rem;
    
    font-size:2rem;

line-height:1;

}

.quick-add-family {

    color: var(--text-secondary);

    margin-bottom: 1.5rem;

}

.quick-add-price{

font-size:2.25rem;

color:var(--lux-gold);

margin-bottom:2rem;

}

.quick-add-variants {

    display: flex;

    flex-wrap: wrap;

    gap: .75rem;

    margin-bottom: 2rem;

}

.quick-add-trust {

    display: flex;

    flex-wrap: wrap;

    gap: .75rem;

    margin-bottom: 2rem;

    color: var(--text-secondary);

}

.quick-add-actions {

    display: flex;

    gap: 1rem;

}

.quick-buy-variant {

    padding: .75rem 1rem;

    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.12);

    background: rgba(255,255,255,.04);

    color: var(--lux-cream);

    cursor: pointer;

    transition: .3s ease;

}

.quick-buy-variant:hover {

    border-color: var(--lux-gold);

}

.quick-buy-variant.active {

    background: var(--lux-gold);

    color: var(--lux-black);

    border-color: var(--lux-gold);

}

/* =========================================================
SEARCH SUGGESTIONS
NUCLEAR EDITION
========================================================= */

.catalog-suggestion-item {

display: flex;

align-items: center;

gap: 1rem;

padding: 1rem 1.25rem;

transition:
    background .25s ease,
    transform .25s ease;

border-bottom:
    1px solid
    rgba(
        255,
        255,
        255,
        .04
    );

}

.catalog-suggestion-item:last-child {

border-bottom: none;

}

.catalog-suggestion-item:hover {

background:
    rgba(
        200,
        176,
        139,
        .06
    );

}

.catalog-suggestion-image {

width: 60px;

height: 60px;

flex-shrink: 0;

border-radius: 16px;

overflow: hidden;

background:
    rgba(
        255,
        255,
        255,
        .03
    );

border:
    1px solid
    rgba(
        255,
        255,
        255,
        .06
    );

}

.catalog-suggestion-image img {

width: 100%;

height: 100%;

object-fit: contain;

padding: .4rem;

}

.catalog-suggestion-content {

min-width: 0;

flex: 1;

}

.catalog-suggestion-name {

color:
    var(--lux-cream);

font-weight: 600;

margin-bottom: .3rem;

overflow: hidden;

text-overflow: ellipsis;

white-space: nowrap;

}

.catalog-suggestion-brand {

color:
    var(--text-secondary);

font-size: .85rem;

}

.catalog-search-suggestions {

box-shadow:
    0 25px 80px
    rgba(
        0,
        0,
        0,
        .55
    );

}

/* =========================================================
QUICK ADD VARIANTS
NUCLEAR EDITION
========================================================= */

.quick-buy-variant {

border: none;

cursor: pointer;

padding:
    .9rem
    1.2rem;

border-radius:
    999px;

background:
    rgba(
        255,
        255,
        255,
        .04
    );

border:
    1px solid
    rgba(
        255,
        255,
        255,
        .08
    );

color:
    var(--lux-cream);

font-size:
    .85rem;

font-weight:
    500;

transition:
    all .3s ease;

}

.quick-buy-variant:hover {

transform:
    translateY(-2px);

border-color:
    rgba(
        200,
        176,
        139,
        .45
    );

background:
    rgba(
        200,
        176,
        139,
        .08
    );

}

.quick-buy-variant.active {

background:
    linear-gradient(
        135deg,
        rgba(
            200,
            176,
            139,
            .18
        ),
        rgba(
            200,
            176,
            139,
            .10
        )
    );

border-color:
    var(--lux-gold);

color:
    var(--lux-gold);

box-shadow:
    0 0 0 1px
    rgba(
        200,
        176,
        139,
        .25
    ),
    0 12px 30px
    rgba(
        200,
        176,
        139,
        .12
    );

}

.quick-add-variants {

display: flex;

flex-wrap: wrap;

gap: .75rem;

}


/* =========================================================
TOAST
========================================================= */

.cart-toast {

    position: fixed;

    right: 2rem;
    bottom: 2rem;

    width: 360px;

    max-width: calc(100vw - 2rem);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 1rem;

    padding: 1rem;

    border-radius: 20px;

    background:
        rgba(10,10,10,.96);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:
        blur(20px);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .35s ease;

    z-index: 600;

}

.cart-toast.active {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.cart-toast-title {

    margin-bottom: .25rem;

}

.cart-toast-text {

    color: var(--text-secondary);

}

.cart-toast-link {

    white-space: nowrap;

    color: var(--lux-gold);

}

.catalog-price-range-separator{

display:block;

margin:.25rem 0;

font-size:.7rem;

letter-spacing:.25em;

text-transform:uppercase;

color:var(--text-muted);

}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 1200px) {

    .catalog-product-grid {

        grid-template-columns:
            repeat(3,minmax(0,1fr));

    }

    .catalog-discovery-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

    }

    .catalog-stats-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

    }

}

/* =========================================================
MOBILE
========================================================= */

/* =========================================================
MOBILE — CATALOG (Improved)
========================================================= */

/* =========================================================
MOBILE — CATALOG (All rules combined cleanly)
========================================================= */

@media (max-width: 768px) {

    /* Hero */
    .catalog-hero {
        padding-top: 100px;
        padding-bottom: 2.5rem;
    }

    /* Product Grid */
    .catalog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .catalog-card-content {
        padding: 1rem 0.95rem 1.1rem;
    }

    .catalog-card-title {
        font-size: 1.05rem;
        line-height: 1.15;
        margin-bottom: 0.5rem;
    }

    .catalog-card-brand {
        font-size: 0.62rem;
        margin-bottom: 0.45rem;
    }

    .catalog-card-family {
        font-size: 0.78rem;
        margin-bottom: 1rem;
    }

    .catalog-price {
        font-size: 1.45rem;
    }

    .catalog-card-actions {
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 0.9rem;
    }

    .catalog-card-actions .btn,
    .catalog-view-product {
        width: 100%;
        min-height: 46px;
        font-size: 0.82rem;
    }

    .catalog-view-product {
        display: flex;
        justify-content: center;
    }

    /* Toolbar */
    .catalog-toolbar {
        padding: 0.85rem 1rem;
        border-radius: 20px;
        flex-wrap: wrap;
    }

    .catalog-toolbar-left,
    .catalog-toolbar-right {
        width: 100%;
    }

    .catalog-sort {
        width: 100%;
        min-width: 0;
        height: 46px;
    }

    .catalog-results-meta {
        display: none;
    }

    /* Brand Wall */
    .catalog-brand-columns {
        grid-template-columns: 1fr;
        height: 110px;
    }

    .brand-column:nth-child(2),
    .brand-column:nth-child(3) {
        display: none;
    }

    /* Quick Add Modal */
    .quick-add-layout {
        grid-template-columns: 1fr;
    }

    .quick-add-image-wrap {
        min-height: 220px;
    }

    .quick-add-details {
        padding: 1.6rem 1.4rem;
    }

    .quick-add-title {
        font-size: 1.55rem;
    }

    .quick-add-price {
        font-size: 1.85rem;
        margin-bottom: 1.4rem;
    }

    /* Filter Drawer */
    .catalog-filter-drawer {
        width: 100vw !important;
        max-width: 100vw !important;
    }

    /* Small fixes */
    .catalog-card-meta,
    .catalog-stock,
    .catalog-gender {
        font-size: 0.72rem;
    }

    /* Extra small devices */
    @media (max-width: 520px) {
        .catalog-heading {
            font-size: 2.6rem;
        }

        .catalog-search-form {
            flex-direction: column;
        }

        .catalog-search-form .btn {
            width: 100%;
        }
    }
}


/* =========================================================
STEP 4: Product Cards - Mobile Polish
========================================================= */

@media (max-width: 768px) {

    /* Catalog Product Cards */
    .catalog-card-shell {
        border-radius: 20px;
    }

    .catalog-card-media {
        aspect-ratio: 1 / 1.15;
    }

    .catalog-card-content {
        padding: 1rem 0.9rem 1.05rem;
    }

    .catalog-card-title {
        font-size: 1.02rem;
        margin-bottom: 0.4rem;
    }

    .catalog-price-block {
        padding-top: 0.85rem;
        margin-bottom: 0.9rem;
    }

    .catalog-price {
        font-size: 1.35rem;
    }

    .catalog-card-actions {
        gap: 0.55rem;
    }

    /* Home Page Product Cards (product-card) */
    .product-card-media {
        border-radius: 20px;
    }

    .product-card-content {
        padding: 0.95rem 0.85rem 1rem;
    }

    .product-card-title {
        font-size: 1.1rem;
        margin: 0.35rem 0 0.5rem;
    }

    .product-card-price {
        font-size: 1.15rem;
    }

    .product-actions {
        gap: 0.6rem;
        margin-top: 0.85rem;
    }

    .product-actions .btn {
        min-height: 44px;
        font-size: 0.8rem;
    }
}


body:has(.catalog-filter-drawer.active) #site-header{
    display:none !important;
}

body:has(.catalog-filter-drawer.active) .catalog-toolbar-section{
    display:none !important;
}

body:has(.catalog-filter-drawer.active) .catalog-product-card{
    visibility:hidden !important;
}

.catalog-finder-results-banner {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px 0;
    margin-bottom: 20px;
}

.catalog-finder-results-content {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.catalog-finder-results-title {
    font-size: 2rem;
    color: #fff;
    margin: 12px 0 8px;
    font-weight: 600;
}

.catalog-finder-results-text {
    color: #aaa;
    font-size: 1.05rem;
}

/* =========================================================
STEP 13: Fix Text Cutting Inside Filter Drawer
========================================================= */

@media (max-width: 768px) {

    .catalog-filter-drawer {
        padding-bottom: 40px;           /* Extra space at bottom */
    }

    .catalog-filter-form {
        padding: 1.5rem 1.25rem 2rem;
    }

    .filter-group label {
        font-size: 0.78rem;
        margin-bottom: 0.5rem;
    }

    .catalog-select,
    select.catalog-select {
        font-size: 0.95rem;
        padding: 0.7rem 0.9rem;
        height: auto;
    }

    .catalog-filter-actions {
        margin-top: 1.5rem;
        padding-bottom: 1rem;
    }

    /* Prevent any text from getting cut */
    .catalog-filter-drawer * {
        max-width: 100%;
        word-wrap: break-word;
    }
}

/* =========================================================
STEP 14: Fix "Featured" Text Cutting in Sort Dropdown
========================================================= */

@media (max-width: 768px) {

    .catalog-sort {
        min-width: 100% !important;
        max-width: 100% !important;
        font-size: 0.9rem !important;
        padding: 0 1rem !important;
        height: 46px !important;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .catalog-filter-trigger {
        min-width: 100% !important;
        max-width: 100% !important;
        font-size: 0.9rem !important;
        padding: 0 1rem !important;
        height: 46px !important;
    }

    .catalog-toolbar {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.85rem 1rem;
    }

    .catalog-toolbar-left,
    .catalog-toolbar-right {
        width: 100%;
    }
}

/* =========================================================
FINAL FIX: RETAIL & DECANTS Tags - No Overlapping
========================================================= */

.catalog-card-bottom {
    position: static !important;     /* Force normal flow */
    display: flex;
    gap: 0.5rem;
    margin: 0 0 0.6rem 0;
    flex-wrap: wrap;
    z-index: auto;
}

.catalog-presence {
    display: inline-flex;
    align-items: center;
    font-size: 0.62rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-weight: 500;
    white-space: nowrap;
}

.catalog-presence.retail {
    background: rgba(200, 176, 139, 0.15);
    color: #C5A46E;
    border: 1px solid rgba(200, 176, 139, 0.3);
}

.catalog-presence.decant {
    background: rgba(255, 255, 255, 0.06);
    color: #EDE5D5;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .catalog-card-bottom {
        margin-bottom: 0.5rem;
        gap: 0.4rem;
    }

    .catalog-presence {
        font-size: 0.58rem;
        padding: 0.3rem 0.55rem;
    }
}

/* =========================================================
FINAL NUCLEAR FIX - Toast must win
========================================================= */

#cart-toast,
.cart-toast {
    position: fixed !important;
    z-index: 9999999 !important;
    bottom: 20px !important;
    right: 20px !important;
}

/* Force concierge very low + move it up a bit on mobile */
.whatsapp-concierge,
a.whatsapp-concierge {
    z-index: 10 !important;
    position: fixed !important;
}

/* Extra safety for mobile */
@media (max-width: 768px) {
    .whatsapp-concierge,
    a.whatsapp-concierge {
        bottom: 90px !important;   /* Push it above the mobile buy bar */
        z-index: 10 !important;
    }
}