/* =========================================================
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 HERO
========================================================= */

.catalog-hero {

    position: relative;

    overflow: hidden;

    padding-top:
        calc(
            var(--header-height)
            + 5rem
        );

    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:
        760px;

    margin:
        0 auto;

    color:
        var(--text-secondary);

    font-size:
        1.05rem;

}

/* =========================================================
TRUST POINTS
========================================================= */

.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
========================================================= */

.catalog-toolbar-section {

    position: sticky;

    top: 120px;

    z-index: 30;

    margin-bottom: 2rem;

}

.catalog-toolbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 1rem;

    padding: 1rem 1.25rem;

    border-radius: 22px;

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

    backdrop-filter:
        blur(20px);

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

}

.catalog-toolbar-left {

    display: flex;

    align-items: center;

    gap: 1rem;

}

.catalog-toolbar-right {

    display: flex;

    align-items: center;

}

.catalog-filter-trigger {

    height: 48px;

    padding:
        0 1.2rem;

    border-radius: 999px;

    cursor: pointer;

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

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

    color:
        var(--lux-cream);

}

.catalog-results-meta {

    color:
        var(--text-secondary);

}

.catalog-sort {

    min-width: 220px;

    height: 48px;

    border-radius: 999px;

    padding:
        0 1rem;

}

.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: 420px;

    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 {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 1rem;

    padding: 2rem;

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

}

.catalog-filter-close {

    border: none;

    background: none;

    color: var(--lux-cream);

    font-size: 2rem;

    cursor: pointer;

}

.catalog-filter-form {

    padding: 2rem;

}

.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:hover {

    transform:
        translateY(-8px);

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

    box-shadow:
        0 30px 70px rgba(0,0,0,.45);

}

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

.catalog-card-media {

    position: relative;

    aspect-ratio: 1 / 0.82;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.05),
            rgba(255,255,255,0)
        );

}

.catalog-card-image {

    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 1.75rem;

    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%
        );

}

/* =========================================================
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;

    flex: 1;

    padding: 1.5rem;

    min-height: 260px;

}

.catalog-card-brand {

    color:
        var(--lux-gold);

    font-size:
        .72rem;

    letter-spacing:
        .22em;

    text-transform:
        uppercase;

    margin-bottom: .75rem;

}

.catalog-card-title {

    margin-bottom: .6rem;

    line-height: 1.05;

}

.catalog-card-title-link {

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

.catalog-card-family {

    color:
        var(--text-secondary);

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    margin-bottom: 1rem;

}

.catalog-card-meta {

    display: flex;

    align-items: center;

    gap: .5rem;

    color:
        var(--text-muted);

    font-size: .85rem;

}

.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-bottom: 1.25rem;

}

.catalog-price-label {

    display: block;

    margin-bottom: .35rem;

    color: var(--text-muted);

    font-size: .72rem;

    letter-spacing: .16em;

    text-transform: uppercase;

}

.catalog-price {

    color: var(--lux-cream);

    font-size: 1.45rem;

    font-weight: 600;

}

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

.catalog-card-actions {

    display: flex;

    gap: .75rem;

    margin-top: auto;

}

.catalog-card-actions .btn {

    flex: 1;

    min-height: 50px;

}

.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: rgba(255,255,255,.03);

    transition: .3s ease;

}

.catalog-view-product:hover {

    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:
        #090909;

    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;

}

.quick-add-family {

    color: var(--text-secondary);

    margin-bottom: 1.5rem;

}

.quick-add-price {

    font-size: 1.6rem;

    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;

}

@media (max-width: 768px) {

.catalog-suggestion-image {

    width: 52px;

    height: 52px;

}

.quick-buy-variant {

    width: 100%;

    justify-content: center;

}

}


/* =========================================================
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);

}

/* =========================================================
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
========================================================= */

@media (max-width: 768px) {

    .catalog-toolbar {

        flex-direction: column;

        align-items: stretch;

    }

    .catalog-toolbar-left {

        flex-direction: column;

        align-items: stretch;

    }

    .catalog-product-grid {

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

        gap: .75rem;

    }

    .catalog-card-content {

        min-height: 220px;

        padding: 1rem;

    }

    .catalog-card-title {

        font-size: 1.1rem;

    }

    .catalog-card-actions {

        flex-direction: column;

    }

    .catalog-discovery-grid {

        grid-template-columns: 1fr;

    }

    .catalog-stats-grid {

        grid-template-columns: 1fr;

    }

    .quick-add-layout {

        grid-template-columns: 1fr;

    }

    .quick-add-image-wrap {

        min-height: 260px;

    }

    .quick-add-details {

        padding: 1.5rem;

    }
    
    .quick-add-panel{

        top:auto;

        left:0;

        bottom:0;

        width:100%;

        max-width:none;

        border-radius:
            32px 32px 0 0;

        transform:none;

        max-height:85vh;

        overflow-y:auto;

    }
    
    .quick-add-image-wrap{

    min-height:180px;

}

.quick-add-image{

    max-height:180px;

}

} 

@media (max-width: 520px) {

    .catalog-product-grid {

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

    }


    .catalog-heading {

        font-size: 2.8rem;

    }

    .catalog-search-form {

        flex-direction: column;

    }

    .catalog-search-form .btn {

        width: 100%;

    }

}

