/* ─── TOKENS (REFINED OCEAN CAMPUS) ─────────────────────────── */
:root {
    /* Surfaces — Optimized for depth & clarity */
    --cream:    #F5F5F7;   /* cleaner warm base */
    --milk:     #FFFFFF;   /* pure white cards for maximum pop */
    --sand:     #E5E7EB;   /* neutral Slate-200 for borders */
    
    /* Brand Blue — Deep Marine Foundation */
    --blue:     #1E40AF;   /* Blue-800: Trust & Stability */
    --blue-deep:#1E1B4B;   /* Deepest Navy: For interactive weight */
    --blue-light:#F0F7FF;  /* Muted Mist: Harmonic bridge color */
    
    /* Accent Coral — Sun-Baked Contrast */
    --coral:    #EA580C;   /* Deep Orange: Energetic & readable */
    --coral-deep:#C2410C;  /* Darker Coral for active states */
    --coral-light:#FFF7ED; /* Soft peach glow highlights */
    
    /* Text — Professional Slate Scale */
    --text-dark:  #1D1D1F; /* strong dark charcoal (Apple-style anchor) */
    --text-body:  #334155; /* Slate-700: Higher legibility */
    --text-muted: #94A3B8; /* Slate-400 (Boosted contrast per user request) */
    --text-light: #CBD5E1; /* Slate-300 */
    
    /* Semantic Colors */
    --success:  #10B981;
    --error:    #EF4444;
    --warning:  #F59E0B;
    
    /* Neutrals */
    --white:    #FFFFFF;
    --black:    #0F172A;
    
    /* Legacy aliases for component logic compatibility */
    --caramel:  var(--blue);
    --terra:    var(--blue-deep);
    --sage:     var(--coral);
    --coffee:   var(--text-dark);
    --espresso: var(--black);
    --mocha:    var(--text-body);
    
    /* Text tokens */
    --text-h: var(--text-dark);
    --text-b: rgba(15, 23, 42, 0.72);
    --text-m: rgba(15, 23, 42, 0.45);
    
    /* Fonts */
    --f-display: 'Playfair Display', Georgia, serif;
    --f-sans:    'Inter', 'DM Sans', system-ui, sans-serif;
    --f-heading: 'Outfit', sans-serif;
    
    --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Refined soft shadows */
    --sh-xs: 0 4px 12px  rgba(15, 23, 42, 0.03);
    --sh-sm: 0 8px 24px  rgba(15, 23, 42, 0.05);
    --sh-md: 0 16px 48px rgba(15, 23, 42, 0.08);
    --sh-lg: 0 24px 72px rgba(15, 23, 42, 0.12);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
::selection { background: var(--blue); color: #fff; }
body { background: var(--cream); color: var(--text-dark); font-family: var(--f-sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 99px; }
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
.container { max-width: 1380px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 5rem); }

/* ─── CONTROLS BAR (Search & Filters Header) ────────── */
.controls-bar { 
    background: transparent; 
    z-index: 500; 
    padding: 1rem 0 1.25rem 0; 
    margin-bottom: 0.rem;
    transition: all .4s var(--ease-out); 
}

.page-indicator { 
    margin: 0 0 1.75rem 0.25rem; 
    font-family: var(--f-sans); 
    font-size: 0.8rem; 
    font-weight: 700; 
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: none;
}

.controls-inner { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    flex-wrap: nowrap; 
}

.search-wrap { 
    position: relative; 
    flex: 1;
    min-width: 200px; 
}

.controls-right { 
    display: flex; 
    align-items: center; 
    gap: .75rem; 
    flex: 0 0 auto;
    flex-wrap: nowrap;
}

.search-icon { 
    position: absolute; 
    left: 1.5rem; 
    top: 50%; 
    transform: translateY(-50%); 
    color: var(--text-muted); 
    font-size: 1.1rem; 
    pointer-events: none; 
    z-index: 2;
}

.search-wrap input { 
    width: 100%; 
    padding: .85rem 3rem; 
    border: 2px solid var(--sand); 
    border-radius: 99px; 
    font-family: var(--f-sans); 
    font-size: 1rem; 
    background: var(--white); 
    color: var(--text-dark); 
    box-shadow: var(--sh-xs);
    transition: all .3s var(--ease-out); 
}

.search-wrap:hover input {
    box-shadow: var(--sh-sm);
    transform: translateY(-2px);
}

.search-wrap input:focus { 
    outline: none; 
    border-color: var(--blue); 
    box-shadow: 0 0 0 4px var(--blue-light), var(--sh-sm); 
}

.search-wrap input::placeholder { color: var(--text-muted); }

.search-clear { 
    position: absolute; 
    right: .85rem; 
    top: 50%; 
    transform: translateY(-50%); 
    background: none; 
    border: none; 
    color: var(--text-muted); 
    cursor: pointer; 
    font-size: .72rem; 
    padding: .25rem; 
    display: none; 
    align-items: center; 
    transition: color .2s; 
}

.search-clear:hover { color: var(--blue); }
.search-clear.visible { display: flex; }

.active-chips { 
    display: flex; 
    gap: .5rem; 
    flex-wrap: wrap; 
}

.active-chips:not(:empty) {
    margin-top: 1.15rem; 
}

.chip { 
    display: inline-flex; 
    align-items: center; 
    gap: .4rem; 
    background: var(--blue-light); 
    color: var(--blue-deep); 
    font-family: var(--f-sans); 
    font-size: .68rem; 
    font-weight: 600; 
    letter-spacing: .08em; 
    text-transform: uppercase; 
    padding: .3rem .85rem; 
    border-radius: 99px; 
    cursor: pointer; 
    border: none; 
    transition: all .2s; 
}

.chip:hover { 
    background: var(--blue); 
    color: var(--white); 
    transform: translateY(-1px);
}

.sort-wrap { position: relative; }

.sort-wrap select { 
    appearance: none; 
    -webkit-appearance: none; 
    padding: .7rem 2.4rem .7rem 1.1rem; 
    border: 1.5px solid var(--sand); 
    border-radius: 99px; 
    font-family: var(--f-sans); 
    font-size: .82rem; 
    font-weight: 500; 
    color: var(--text-dark); 
    background: var(--white); 
    cursor: pointer; 
    transition: all .3s var(--ease-out); 
}

.sort-wrap:hover select {
    transform: translateY(-2px);
    box-shadow: var(--sh-xs);
}

.sort-wrap select:focus { 
    outline: none; 
    border-color: var(--blue); 
    box-shadow: 0 0 0 3px var(--blue-light);
}

.sort-arrow { 
    position: absolute; 
    right: .9rem; 
    top: 50%; 
    transform: translateY(-50%); 
    font-size: .75rem; 
    color: var(--text-muted); 
    pointer-events: none; 
}

.filter-toggle-btn { 
    display: flex; 
    align-items: center; 
    gap: .55rem; 
    padding: .72rem 1.35rem; 
    background: var(--white); 
    color: var(--text-dark); 
    border: 1.5px solid var(--sand); 
    border-radius: 99px; 
    font-family: var(--f-sans); 
    font-size: .78rem; 
    font-weight: 600; 
    letter-spacing: .05em; 
    cursor: pointer; 
    white-space: nowrap; 
    transition: all .3s var(--ease-out); 
}

.filter-toggle-btn:hover { 
    border-color: var(--blue);
    color: var(--blue); 
    transform: translateY(-2px); 
    box-shadow: var(--sh-xs);
}

.filter-badge { 
    background: var(--coral); 
    color: var(--white); 
    border-radius: 99px; 
    padding: .05rem .42rem; 
    font-size: .62rem; 
    font-weight: 700; 
    min-width: 18px; 
    text-align: center; 
}

/* ─── CATEGORY SCROLLER ────────────────────────────── */
.category-scroller-wrap {
    margin: 0rem 0 1.5rem; /* Reduced space */
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.category-scroller {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    flex: 1;
}

.scroller-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--sand);
    color: var(--text-dark);
    display: none; 
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--sh-sm);
    transition: all 0.3s var(--ease-out);
    position: absolute;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
}

.category-scroller-wrap.loaded .scroller-btn {
    opacity: 1;
    pointer-events: all;
}

@media (min-width: 1025px) {
    .category-scroller-wrap.loaded .scroller-btn { display: flex; }
}

.scroller-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: scale(1.1);
}

.scroller-btn.prev { left: -15px; }
.scroller-btn.next { right: -15px; }

.category-scroller::-webkit-scrollbar {
    display: none;
}

.cat-scroll-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    width: 90px;
}

.cat-scroll-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--sand);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
    box-shadow: var(--sh-xs);
}

.cat-scroll-img i {
    font-size: 1.35rem;
    color: var(--text-body);
}

.cat-scroll-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-scroll-name {
    font-family: var(--f-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-body);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    letter-spacing: 0.02em;
}

.cat-scroll-item:hover .cat-scroll-img {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: var(--sh-sm);
}

.cat-scroll-item.active .cat-scroll-img {
    border-color: var(--blue);
    background: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-light);
}

.cat-scroll-item.active .cat-scroll-img i {
    color: var(--white);
}

.cat-scroll-item.active .cat-scroll-name {
    color: var(--blue);
    font-weight: 700;
}

/* ─── SHOP LAYOUT ────────────────────────────────────── */
.shop-layout {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
}

.sidebar-scrim { 
    position: fixed; 
    inset: 0; 
    background: rgba(28,25,23,.45); 
    backdrop-filter: blur(6px); 
    z-index: 1099; 
    opacity: 0; 
    pointer-events: none; 
    transition: opacity .4s; 
    display: none; 
}

.sidebar-scrim.open { opacity: 1; pointer-events: all; display: block; }

.shop-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    height: calc(100vh - 140px);
    background: transparent;
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.shop-sidebar::-webkit-scrollbar {
    width: 4px;
}

.shop-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.shop-sidebar::-webkit-scrollbar-thumb {
    background: var(--sand);
    border-radius: 99px;
}

.sidebar-top {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--sand);
    margin-bottom: 1rem;
}

.sidebar-title {
    font-family: var(--f-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
}

.sidebar-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--milk);
    border: none;
    color: var(--text-dark);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .3s var(--ease-out);
    font-size: 1.1rem;
}

.sidebar-close:hover {
    background: var(--blue);
    color: var(--white);
    transform: rotate(90deg);
}

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

/* ─── SHOP BODY ──────────────────────────────────────── */
.shop-body { 
    padding: 120px 0 8rem; 
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .shop-body.container {
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

.results-bar { margin-bottom: 2rem; }

.results-count { 
    font-family: var(--f-sans); 
    font-size: .83rem; 
    color: var(--text-body); 
    font-weight: 500; 
}

/* ─── SIDEBAR FILTERS ────────────────────────────────── */
.filter-group { 
    padding: 1.6rem 0; 
    border-bottom: 1px solid var(--sand); 
}

.filter-group:last-of-type { border-bottom: none; }

.filter-label { 
    font-family: var(--f-sans); 
    font-size: .67rem; 
    font-weight: 700; 
    letter-spacing: .28em; 
    text-transform: uppercase; 
    color: var(--text-muted); 
    margin-bottom: 1.1rem; 
}

.filter-list { 
    display: flex; 
    flex-direction: column; 
    gap: .3rem; 
}

.filter-item, .filter-item-gender { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: .65rem 1rem; 
    border-radius: .75rem; 
    font-family: var(--f-sans); 
    font-size: .9rem; 
    color: var(--text-body); 
    cursor: pointer; 
    transition: all .22s; 
    user-select: none; 
    border: 1.5px solid transparent; /* reserved space for outline */
}

.filter-item:hover, .filter-item-gender:hover { 
    background: var(--blue-light); 
    color: var(--blue-deep); 
}

.filter-item.active, .filter-item-gender.active, .filter-item-condition.active { 
    background: transparent; 
    border-color: var(--blue);
    color: var(--blue); 
    font-weight: 700; 
}

.filter-x { 
    display: none; 
    margin-left: 0.5rem; 
    font-size: 0.7rem; 
    opacity: 0.7; 
}

.filter-item.active .filter-x { display: inline-block; }

.filter-item.active .filter-count, 
.filter-item-gender.active .filter-count, 
.filter-item-condition.active .filter-count { 
    color: var(--blue); 
}

.filter-count { 
    font-size: .72rem; 
    font-weight: 600; 
    color: var(--text-muted); 
}

.filter-item-condition { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: .65rem 1rem; 
    border-radius: .75rem; 
    font-family: var(--f-sans); 
    font-size: .9rem; 
    color: var(--text-body); 
    cursor: pointer; 
    transition: all .22s; 
    user-select: none; 
}

.filter-item-condition:hover { 
    background: var(--blue-light); 
    color: var(--blue-deep); 
}

.price-inputs { 
    display: flex; 
    align-items: center; 
    gap: .65rem; 
    margin-bottom: .9rem; 
}

.price-inputs input { 
    flex: 1; 
    width: 0; 
    padding: .65rem .9rem; 
    border: 1.5px solid var(--sand); 
    border-radius: .75rem; 
    font-family: var(--f-sans); 
    font-size: .85rem; 
    color: var(--text-dark); 
    background: var(--white); 
    transition: border-color .22s; 
}

.price-inputs input:focus { 
    outline: none; 
    border-color: var(--blue); 
    box-shadow: 0 0 0 3px var(--blue-light);
}

.price-sep { 
    color: var(--text-muted); 
    font-weight: 600; 
    flex-shrink: 0; 
}

.apply-price-btn { 
    width: 100%; 
    padding: .75rem; 
    background: var(--blue); 
    border: none; 
    border-radius: 99px; 
    font-family: var(--f-sans); 
    font-size: .75rem; 
    font-weight: 600; 
    letter-spacing: .08em; 
    text-transform: uppercase; 
    color: var(--white); 
    cursor: pointer; 
    transition: all .3s; 
}

.apply-price-btn:hover { 
    background: var(--blue-deep); 
    transform: translateY(-2px);
    box-shadow: var(--sh-sm);
}

.toggle-label { 
    display: flex; 
    align-items: center; 
    gap: .85rem; 
    cursor: pointer; 
    font-family: var(--f-sans); 
    font-size: .9rem; 
    color: var(--text-body); 
    user-select: none; 
}

.toggle-label input { display: none; }

.toggle-track { 
    width: 42px; 
    height: 24px; 
    border-radius: 99px; 
    background: var(--sand); 
    position: relative; 
    flex-shrink: 0; 
    transition: background .3s; 
}

.toggle-thumb { 
    position: absolute; 
    top: 3px; 
    left: 3px; 
    width: 18px; 
    height: 18px; 
    border-radius: 50%; 
    background: var(--white); 
    box-shadow: 0 1px 4px rgba(0,0,0,.2); 
    transition: transform .3s var(--ease-out); 
}

.toggle-label input:checked ~ .toggle-track { background: var(--blue); }
.toggle-label input:checked ~ .toggle-track .toggle-thumb { transform: translateX(18px); }

.clear-filters-btn { 
    margin-top: 2rem; 
    width: 100%; 
    padding: .85rem; 
    background: none; 
    border: 1.5px solid var(--sand); 
    border-radius: 99px; 
    font-family: var(--f-sans); 
    font-size: .75rem; 
    font-weight: 600; 
    letter-spacing: .08em; 
    text-transform: uppercase; 
    color: var(--text-body); 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: .5rem; 
    transition: all .3s; 
}

.clear-filters-btn:hover { 
    border-color: var(--blue); 
    color: var(--blue); 
    background: var(--blue-light);
}

/* ─── PRODUCT GRID ───────────────────────────────────── */
.shop-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem; 
}

@media (min-width: 1600px) {
    .shop-grid { 
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .shop-grid { 
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ─── PRODUCT CARD ───────────────────────────────────── */
.prod-card { 
    position: relative; 
    border-radius: 1.35rem; 
    overflow: hidden; 
    background: var(--white); 
    box-shadow: var(--sh-xs); 
    cursor: pointer; 
    opacity: 0; 
    transform: translateY(22px); 
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), box-shadow .5s var(--ease-out); 
}

.prod-card.visible { opacity: 1; transform: translateY(0); }

.prod-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--sh-lg); 
}

.prod-img { 
    position: relative; 
    aspect-ratio: 1; 
    background: var(--milk); 
    overflow: hidden; 
}

.prod-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform .65s var(--ease-out); 
}

.prod-card:hover .prod-img img { transform: scale(1.07); }

.prod-badge { 
    position: absolute; 
    top: .85rem; 
    left: .85rem; 
    font-family: var(--f-sans); 
    font-size: .59rem; 
    font-weight: 700; 
    letter-spacing: .1em; 
    text-transform: uppercase; 
    padding: .28rem .82rem; 
    border-radius: 99px; 
    z-index: 2; 
    background: var(--coral); 
    color: var(--white); 
}

.prod-badge.oos { 
    background: var(--error); 
    left: auto; 
    right: .85rem; 
}

.prod-quick { 
    position: absolute; 
    bottom: -56px; 
    left: 0; 
    right: 0; 
    z-index: 3; 
    padding: 0 1rem; 
    transition: bottom .4s var(--ease-out); 
}

.prod-card:hover .prod-quick { bottom: .85rem; }

.prod-quick button { 
    width: 100%; 
    padding: .78rem; 
    background: var(--blue); 
    color: var(--white); 
    border: none; 
    border-radius: 99px; 
    font-family: var(--f-sans); 
    font-size: .7rem; 
    font-weight: 600; 
    letter-spacing: .1em; 
    text-transform: uppercase; 
    cursor: pointer; 
    transition: all .25s; 
}

.prod-quick button:hover { 
    background: var(--blue-deep); 
    transform: scale(1.02); 
}

.prod-quick button:disabled { 
    opacity: .5; 
    cursor: not-allowed; 
}

/* Redesigned Card Like Button */
.prod-like-btn {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    border: 1.5px solid var(--sand);
    box-shadow: var(--sh-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(-8px);
}

.prod-card:hover .prod-like-btn {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .prod-like-btn { opacity: 1; transform: translateY(0); }
}

.prod-like-btn:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--coral);
    box-shadow: var(--sh-md);
}

.prod-like-btn.active {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.prod-like-btn.active i {
    animation: heartBeat 0.4s ease-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.prod-info { padding: 1.2rem 1.35rem 1.45rem; }

.prod-cat { 
    font-family: var(--f-sans); 
    font-size: .62rem; 
    font-weight: 600; 
    letter-spacing: .18em; 
    text-transform: uppercase; 
    color: var(--blue); 
    margin-bottom: .38rem; 
}

.prod-name { 
    font-family: var(--f-heading); 
    font-size: 1.05rem; 
    font-weight: 400; 
    line-height: 1.25; 
    color: var(--text-dark); 
    margin-bottom: .8rem;
    /* Force one line and ellipse */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.prod-footer { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.prod-price { 
    font-family: var(--f-heading); 
    font-size: 1.2rem; /* increased */
    font-weight: 500; /* reduced weight */
    color: var(--text-dark); 
    /* Force one line and ellipse */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.prod-cat, .prod-meta { display: none !important; }

.prod-card:nth-child(1) { transition-delay:.02s; }
.prod-card:nth-child(2) { transition-delay:.06s; }
.prod-card:nth-child(3) { transition-delay:.10s; }
.prod-card:nth-child(4) { transition-delay:.14s; }
.prod-card:nth-child(5) { transition-delay:.18s; }
.prod-card:nth-child(6) { transition-delay:.22s; }
.prod-card:nth-child(7) { transition-delay:.26s; }
.prod-card:nth-child(8) { transition-delay:.30s; }

/* ─── NO RESULTS ─────────────────────────────────────── */
.no-results { padding: 7rem 2rem; text-align: center; }
.no-results-inner { max-width: 360px; margin: 0 auto; }

.no-results-icon { 
    font-size: 3.5rem; 
    display: block; 
    margin-bottom: 1.5rem; 
}

.no-results-inner h3 { 
    font-family: var(--f-display); 
    font-size: 2rem; 
    color: var(--text-dark); 
    margin-bottom: .75rem; 
}

.no-results-inner p { 
    color: var(--text-body); 
    margin-bottom: 2rem; 
    font-size: .95rem; 
}

.reset-btn { 
    display: inline-flex; 
    align-items: center; 
    padding: .9rem 2.25rem; 
    background: var(--blue); 
    color: var(--white); 
    border: none; 
    border-radius: 99px; 
    font-family: var(--f-sans); 
    font-size: .78rem; 
    font-weight: 600; 
    letter-spacing: .08em; 
    text-transform: uppercase; 
    cursor: pointer; 
    transition: all .3s var(--ease-out); 
}

.reset-btn:hover { 
    background: var(--blue-deep); 
    transform: translateY(-3px); 
    box-shadow: var(--sh-md);
}

/* ─── EXPLORE MORE ───────────────────────────────────── */
.pagination { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-top: 5rem; 
    padding-bottom: 2rem;
}

.explore-more-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 3rem;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-family: var(--f-sans);
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--sh-md);
}

.explore-more-btn:hover {
    background: var(--coral);
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
}

.explore-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.explore-more-btn:hover i {
    transform: translateY(3px);
}

/* ─── FAB (Floating Action Button) ───────────────────── */
.shop-fab-side {
    position: fixed;
    top: 4.5rem; 
    left: 1.5rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white); 
    color: var(--black);
    border: 1.5px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 600;
    box-shadow: var(--sh-md);
    opacity: 0;
    transform: translateX(-16px);
    pointer-events: none;
    transition: opacity .4s, transform .4s var(--ease-out), background .25s, scale .3s;
}

.shop-fab-side.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.shop-fab-side:hover {
    background: var(--blue);
    color: var(--white);
    transform: scale(1.1);
}

.shop-fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
}

.shop-fab-group { 
    position: fixed; 
    bottom: 2rem; 
    right: 2rem; 
    display: flex; 
    flex-direction: column; 
    gap: .75rem; 
    z-index: 600; 
    opacity: 0; 
    transform: translateY(16px); 
    pointer-events: none; 
    transition: opacity .4s, transform .4s var(--ease-out); 
}

.shop-fab-group.visible { 
    opacity: 1; 
    transform: translateY(0); 
    pointer-events: all; 
}

.shop-fab { 
    width: 52px; 
    height: 52px; 
    border-radius: 50%; 
    border: 1.5px solid transparent; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1rem; 
    cursor: pointer; 
    position: relative; 
    box-shadow: var(--sh-md); 
    transition: transform .35s var(--ease-out), box-shadow .35s, background .25s, color .25s, border-color .25s; 
}

.shop-fab:hover { 
    transform: scale(1.12) translateY(-2px); 
    box-shadow: var(--sh-lg); 
}

.shop-fab-cart { display: none !important; } /* Hidden per request */
.shop-fab-top { background: var(--white); color: var(--text-dark); border: 1.5px solid var(--sand); }

.shop-fab-top:hover { 
    background: var(--blue); 
    color: var(--white); 
    border-color: var(--blue); 
}

.shop-fab-count { 
    position: absolute; 
    top: -4px; 
    right: -4px; 
    background: var(--coral); 
    color: var(--white); 
    font-size: .58rem; 
    font-weight: 700; 
    width: 18px; 
    height: 18px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 2px solid var(--cream); 
}

/* ─── TOAST ──────────────────────────────────────────── */
.toast { 
    position: fixed; 
    top: 6rem; 
    right: 1.5rem; 
    background: var(--text-dark); 
    color: var(--white); 
    font-family: var(--f-sans); 
    font-size: .85rem; 
    font-weight: 500; 
    padding: .9rem 1.75rem; 
    border-radius: 99px; 
    box-shadow: var(--sh-lg); 
    z-index: 9999; 
    transform: translateX(140%); 
    transition: transform .45s var(--ease-out); 
    pointer-events: none; 
}

.toast.show { transform: translateX(0); }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (min-width: 1025px) {
    .filter-toggle-btn { display: none; }
    .shop-fab-side { display: none !important; }
}

@media (max-width: 1024px) {
    .shop-layout { gap: 0; }
    .shop-sidebar {
        position: fixed; 
        top: 0; 
        left: 0; 
        width: min(300px, 75vw); 
        height: 100vh; 
        background: var(--cream); 
        transform: translateX(-110%); 
        transition: transform .55s var(--ease-out); 
        overflow-y: auto; 
        padding: 2.5rem 2rem 5rem;
        box-shadow: var(--sh-lg);
        z-index: 1100;
    }
    .shop-sidebar.open { transform: translateX(0); }
    .sidebar-top { display: flex; }
    .filter-toggle-btn { display: flex; }
    .prod-quick { display: none; }
    .shop-body { padding-left: 1.5rem; padding-right: 1.5rem; }
    .shop-grid { grid-template-columns: repeat(2,1fr); gap: 1.75rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .shop-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
}

@media (max-width: 600px) {
    .controls-bar {
        padding: 0.5rem 0 1.5rem;
    }
    .no-hero .controls-bar {
        padding-top: 1rem;
    }
    
    .controls-inner { flex-wrap: wrap; gap: 0.85rem; }
    .search-wrap { width: 100%; flex: none; }
    .search-wrap input { padding: .75rem 2.5rem; }
    .controls-right { width:100%; display: flex; gap: .75rem; }
    .controls-right > * { flex: 1; }
    .sort-wrap select { width: 100%; text-align: center; padding-right: 2rem; }
    .filter-toggle-btn { justify-content: center; width: 100%; }
    .active-chips { margin-top: 1rem; }
    .prod-name { font-size: .88rem; margin-bottom: 0.5rem; }
    .prod-price { font-size: .88rem; }
    .prod-info { padding: 0.85rem 0.85rem 1rem; }
    .shop-grid { grid-template-columns: repeat(2,1fr); gap: 0.85rem; }
    .shop-body { padding: 100px 1rem 6rem; }
    .category-scroller-wrap { margin-bottom: 1.5rem; }
    .category-scroller { gap: 1rem; }
    .cat-scroll-item { width: 75px; }
    .cat-scroll-img { width: 58px; height: 58px; }
    .cat-scroll-name { font-size: 0.68rem; }
}

/* ─── SKELETON LOADING ──────────────────────────────── */
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, 
        rgba(41,37,36,0.03) 25%, 
        rgba(41,37,36,0.06) 37%, 
        rgba(41,37,36,0.03) 63%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite linear;
    border-radius: 4px;
}

.skel-card {
    background: var(--white);
    border-radius: 1.35rem;
    overflow: hidden;
    padding: 0;
    box-shadow: var(--sh-xs);
}

.skel-img {
    aspect-ratio: 1;
    width: 100%;
    border-radius: 0;
}

.skel-info {
    padding: 1.2rem 1.35rem 1.45rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.skel-cat {
    width: 30%;
    height: 10px;
}

.skel-name {
    width: 80%;
    height: 18px;
    margin-bottom: 0.4rem;
}

.skel-price {
    width: 40%;
    height: 14px;
}

.skel-cat-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 90px;
}

.skel-cat-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
}

.skel-cat-name {
    width: 50px;
    height: 10px;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .skel-cat-item { width: 75px; }
    .skel-cat-circle { width: 58px; height: 58px; }
}

.is-loading #pagination,
.is-loading #noResults {
    display: none !important;
}

/* ─── CUSTOM SELECT ────────────────────────────────── */
.shop-select {
    width: 100%;
    padding: 0.75rem 1.1rem;
    border: 1.5px solid var(--sand);
    border-radius: 0.75rem;
    font-family: var(--f-sans);
    font-size: 0.85rem;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s var(--ease-out);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2357534E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.shop-select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-light);
}
/* ════════ LOAD MORE BUTTON ════════ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    width: 100%;
}

.load-more-btn {
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
    border-radius: 99px;
    font-family: var(--f-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.load-more-btn:active {
    transform: translateY(-2px);
}

/* Response for small devices */
@media (max-width: 768px) {
    .pagination {
        padding: 3rem 0;
    }
    .load-more-btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
    }
}
