:root {
  --bg:          #fdfaf6;
  --bg-soft:     #f7f1e8;
  --surface:     #ffffff;
  --ink:         #1f1d1b;
  --ink-soft:    #4a4640;
  --ink-muted:   #8c8579;
  --line:        #ebe2d2;
  --line-soft:   #f1ead9;
  --orange:      #ed6a26;
  --orange-soft: #f59658;
  --orange-light:#fef0e6;
  --green:       #22c55e;
  --serif: 'Frank Ruhl Libre', Georgia, serif;
  --sans:  'Heebo', -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);background:var(--bg);
  color:var(--ink);font-size:15px;line-height:1.6;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
::selection{background:var(--orange-light);color:var(--ink)}
.container{max-width:1280px;margin:0 auto;padding:0 28px}

/* ============================================
   ANNOUNCE + HEADER
   ============================================ */
.announce{
  background:var(--ink);color:#fff;
  padding:10px;text-align:center;
  font-size:13px;font-weight:500;
}
.announce strong{color:var(--orange-soft)}

.header{
  position:sticky;top:0;z-index:200;
  background:rgba(253,250,246,.96);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--line-soft);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 28px;max-width:1280px;margin:0 auto;gap:24px;
}
.logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.logo-svg{width:38px;height:38px;flex-shrink:0}
.logo-name{font-family:var(--serif);font-weight:700;font-size:22px;letter-spacing:-.5px;color:var(--ink);line-height:1}
.logo-sub{font-size:10px;color:var(--ink-muted);letter-spacing:1.5px;font-weight:600;text-transform:uppercase;margin-top:3px;display:block}
.nav{display:flex;gap:2px;flex:1;justify-content:center}
.nav-link{padding:8px 16px;font-size:14px;font-weight:500;color:var(--ink-soft);border-radius:8px;transition:all .15s}
.nav-link:hover{color:var(--ink);background:var(--bg-soft)}
.nav-link.active{color:var(--orange);font-weight:600}
.header-actions{display:flex;align-items:center;gap:4px;flex-shrink:0}
.icon-btn{width:40px;height:40px;border-radius:50%;color:var(--ink);display:grid;place-items:center;transition:all .15s;cursor:pointer;position:relative}
.icon-btn:hover{background:var(--bg-soft)}
.icon-btn svg{width:18px;height:18px}
.cart-count{position:absolute;top:4px;right:4px;background:var(--orange);color:#fff;font-size:10px;font-weight:700;min-width:16px;height:16px;padding:0 4px;border-radius:8px;display:grid;place-items:center}
.mobile-menu-btn{display:none}

/* ============================================
   CATEGORY HERO — editorial style
   ============================================ */
.cat-hero{
  position:relative;
  height:440px;
  overflow:hidden;
  background:var(--ink);
}
.cat-hero-bg{
  position:absolute;inset:0;
  background:linear-gradient(135deg,#1f1d1b 0%,#2d2a26 60%,#3a3530 100%);
}
/* wood grain texture overlay */
.cat-hero-bg::after{
  content:'';position:absolute;inset:0;
  background-image:repeating-linear-gradient(
    90deg,transparent 0px,rgba(255,255,255,.015) 1px,
    transparent 2px,transparent 8px
  ),repeating-linear-gradient(
    180deg,transparent 0px,rgba(255,255,255,.01) 1px,
    transparent 2px,transparent 16px
  );
}
.cat-hero-img{
  position:absolute;
  left:0;top:0;bottom:0;width:55%;
  overflow:hidden;
  clip-path:polygon(0 0,88% 0,100% 100%,0 100%);
}
.cat-hero-img img{
  width:100%;height:100%;object-fit:cover;
  opacity:.6;mix-blend-mode:luminosity;
  transition:transform 8s ease;
}
.cat-hero:hover .cat-hero-img img{transform:scale(1.04)}

.cat-hero-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;align-items:center;
  padding:0 60px 0 56%;
}
.cat-hero-inner{color:#fff;max-width:480px}
.cat-hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11px;font-weight:700;
  color:var(--orange-soft);text-transform:uppercase;
  letter-spacing:2.5px;margin-bottom:16px;
}
.cat-hero-eyebrow::before{
  content:'';width:24px;height:1.5px;background:var(--orange-soft);
}
.cat-hero-title{
  font-family:var(--serif);
  font-size:clamp(42px,5.5vw,64px);
  font-weight:700;line-height:1.05;
  letter-spacing:-1.5px;
  margin-bottom:14px;
  color:#fff;
}
.cat-hero-title .accent{
  color:var(--orange-soft);
  font-style:italic;font-weight:500;
}
.cat-hero-desc{
  font-size:16px;color:rgba(255,255,255,.75);
  line-height:1.65;margin-bottom:28px;
  max-width:400px;
}
.cat-hero-stats{
  display:flex;gap:28px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.12);
}
.cat-hero-stat-num{
  font-family:var(--serif);font-size:28px;font-weight:700;
  color:var(--orange-soft);letter-spacing:-.5px;line-height:1;
}
.cat-hero-stat-label{
  font-size:11px;color:rgba(255,255,255,.6);font-weight:600;
  text-transform:uppercase;letter-spacing:1px;margin-top:3px;
}

/* ============================================
   SIBLING CATEGORIES (quick nav)
   ============================================ */
.sibling-cats{
  background:var(--surface);
  border-bottom:1px solid var(--line-soft);
  overflow-x:auto;scrollbar-width:none;
}
.sibling-cats::-webkit-scrollbar{display:none}
.sibling-cats-inner{
  display:flex;gap:0;
  max-width:1280px;margin:0 auto;
  padding:0 28px;
}
.sibling-cat{
  display:flex;align-items:center;gap:10px;
  padding:18px 22px;
  font-size:14px;font-weight:600;color:var(--ink-soft);
  border-bottom:2.5px solid transparent;
  transition:all .18s;white-space:nowrap;
  cursor:pointer;
}
.sibling-cat:hover{color:var(--ink)}
.sibling-cat.active{color:var(--orange);border-bottom-color:var(--orange)}
.sibling-cat .cat-emoji{font-size:18px;line-height:1}

/* ============================================
   TOOLBAR — filters + sort
   ============================================ */
.toolbar{
  background:var(--bg);
  padding:20px 0;
  border-bottom:1px solid var(--line-soft);
  position:sticky;top:72px;z-index:100;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  background:rgba(253,250,246,.94);
}
.toolbar-inner{
  display:flex;align-items:center;gap:12px;
  flex-wrap:wrap;
}
.filter-scroll{
  display:flex;gap:8px;flex:1;
  overflow-x:auto;scrollbar-width:none;
}
.filter-scroll::-webkit-scrollbar{display:none}
.filter-pill{
  flex-shrink:0;
  display:inline-flex;align-items:center;gap:6px;
  padding:9px 18px;
  border-radius:100px;
  border:1.5px solid var(--line);
  font-size:13px;font-weight:600;
  color:var(--ink-soft);background:var(--surface);
  cursor:pointer;transition:all .18s;white-space:nowrap;
}
.filter-pill:hover{border-color:var(--ink-soft);color:var(--ink)}
.filter-pill.active{background:var(--ink);color:#fff;border-color:var(--ink)}
.filter-pill.orange.active{background:var(--orange);border-color:var(--orange)}
.filter-pill .count{
  background:rgba(0,0,0,.08);
  border-radius:100px;padding:1px 7px;
  font-size:11px;font-weight:700;
}
.filter-pill.active .count{background:rgba(255,255,255,.2)}

.sort-select{
  border:1.5px solid var(--line);border-radius:100px;
  padding:9px 16px;font-family:var(--sans);font-size:13px;
  font-weight:600;color:var(--ink);background:var(--surface);
  outline:none;cursor:pointer;flex-shrink:0;
  appearance:none;-webkit-appearance:none;
  padding-left:32px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238c8579' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:8px center;
}

.view-toggle{
  display:flex;border:1.5px solid var(--line);
  border-radius:10px;overflow:hidden;flex-shrink:0;
}
.view-btn{
  width:38px;height:38px;display:grid;place-items:center;
  color:var(--ink-muted);transition:all .15s;cursor:pointer;
  background:var(--surface);
}
.view-btn.active{background:var(--ink);color:#fff}
.view-btn svg{width:16px;height:16px}

.results-count{
  font-size:13px;color:var(--ink-muted);font-weight:500;
  flex-shrink:0;white-space:nowrap;
}
.results-count strong{color:var(--ink)}

/* ============================================
   MAIN LAYOUT
   ============================================ */
.cat-main{
  padding:36px 0 80px;
}
.cat-layout{
  display:grid;
  grid-template-columns:256px 1fr;
  gap:36px;
  align-items:start;
}

/* ============================================
   SIDEBAR FILTERS
   ============================================ */
.sidebar{
  position:sticky;top:140px;
}
.sidebar-card{
  background:var(--surface);
  border:1px solid var(--line-soft);
  border-radius:18px;
  overflow:hidden;
  margin-bottom:16px;
}
.sidebar-head{
  padding:16px 20px;
  border-bottom:1px solid var(--line-soft);
  display:flex;align-items:center;justify-content:space-between;
  cursor:pointer;
  user-select:none;
}
.sidebar-head h3{
  font-family:var(--serif);font-size:16px;font-weight:700;
  color:var(--ink);letter-spacing:-.2px;
}
.sidebar-head-icon{
  width:28px;height:28px;border-radius:8px;
  background:var(--bg-soft);display:grid;place-items:center;
  color:var(--ink-soft);transition:transform .2s;
}
.sidebar-head-icon svg{width:14px;height:14px}
.sidebar-card.collapsed .sidebar-head-icon{transform:rotate(180deg)}
.sidebar-body{
  padding:16px 20px;
  display:flex;flex-direction:column;gap:8px;
  transition:all .3s;
}
.sidebar-card.collapsed .sidebar-body{display:none}

/* Price range */
.price-range{padding:4px 0 8px}
.price-slider{
  width:100%;height:4px;
  background:var(--line);border-radius:100px;
  outline:none;-webkit-appearance:none;appearance:none;
  cursor:pointer;margin:12px 0;
}
.price-slider::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:20px;height:20px;border-radius:50%;
  background:var(--ink);cursor:pointer;
  border:2.5px solid var(--surface);
  box-shadow:0 2px 8px rgba(0,0,0,.2);
  transition:transform .15s;
}
.price-slider::-webkit-slider-thumb:hover{transform:scale(1.2)}
.price-vals{
  display:flex;justify-content:space-between;
  font-size:13px;font-weight:700;color:var(--ink);
}

/* Checkbox options */
.sidebar-option{
  display:flex;align-items:center;gap:10px;
  padding:8px 0;cursor:pointer;
  border-radius:8px;transition:all .15s;
}
.sidebar-option:hover .option-label{color:var(--ink)}
.sidebar-check{
  width:20px;height:20px;border-radius:6px;
  border:1.5px solid var(--line);
  display:grid;place-items:center;flex-shrink:0;
  transition:all .15s;background:var(--surface);
}
.sidebar-option.checked .sidebar-check{
  background:var(--orange);border-color:var(--orange);color:#fff;
}
.sidebar-check svg{width:11px;height:11px}
.option-label{font-size:13.5px;font-weight:500;color:var(--ink-soft);flex:1;transition:color .15s}
.option-count{font-size:11px;color:var(--ink-muted);font-weight:600}

/* Color swatch options */
.color-swatches{
  display:flex;flex-wrap:wrap;gap:8px;padding:4px 0;
}
.color-swatch{
  width:32px;height:32px;border-radius:50%;
  cursor:pointer;position:relative;
  transition:transform .15s;border:2px solid transparent;
}
.color-swatch:hover{transform:scale(1.12)}
.color-swatch.active{
  border-color:var(--ink);
  box-shadow:0 0 0 2px var(--surface),0 0 0 4px var(--ink);
}
.color-swatch::after{
  content:'✓';position:absolute;inset:0;
  display:none;place-items:center;
  color:#fff;font-size:12px;font-weight:700;
}
.color-swatch.active::after{display:grid}

/* Active filters */
.active-filters{
  display:flex;flex-wrap:wrap;gap:6px;margin-bottom:20px;
}
.active-filter{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--orange-light);
  border:1px solid #f5c9a0;
  color:var(--orange);
  font-size:12px;font-weight:600;
  padding:5px 12px;border-radius:100px;
  cursor:pointer;transition:all .15s;
}
.active-filter:hover{background:var(--orange);color:#fff;border-color:var(--orange)}
.active-filter svg{width:11px;height:11px}
.clear-all-btn{
  font-size:12px;font-weight:600;color:var(--ink-muted);
  border-bottom:1px solid var(--ink-muted);
  cursor:pointer;align-self:center;margin-right:4px;
  background:none;transition:color .15s;
}
.clear-all-btn:hover{color:var(--orange);border-color:var(--orange)}

/* ============================================
   PRODUCTS AREA
   ============================================ */
.products-area{}

/* Featured banner inside grid */
.featured-banner{
  background:var(--ink);
  border-radius:20px;
  overflow:hidden;
  padding:32px;
  display:grid;grid-template-columns:1fr auto;
  gap:24px;align-items:center;
  margin-bottom:24px;
  position:relative;
}
.featured-banner::before{
  content:'';position:absolute;
  top:-60px;left:-60px;
  width:220px;height:220px;
  background:radial-gradient(circle,rgba(237,106,38,.25) 0%,transparent 70%);
}
.featured-banner-text{position:relative}
.featured-banner-label{
  font-size:11px;font-weight:700;
  color:var(--orange-soft);text-transform:uppercase;
  letter-spacing:2px;margin-bottom:10px;
}
.featured-banner-title{
  font-family:var(--serif);
  font-size:24px;font-weight:700;color:#fff;
  letter-spacing:-.5px;margin-bottom:6px;
}
.featured-banner-sub{
  font-size:14px;color:rgba(255,255,255,.65);
}
.featured-banner-btn{
  background:var(--orange);color:#fff;
  border:none;border-radius:100px;
  padding:13px 24px;font-size:14px;font-weight:700;
  cursor:pointer;flex-shrink:0;transition:all .2s;
  white-space:nowrap;
}
.featured-banner-btn:hover{background:#d85a1a;transform:translateY(-1px)}

/* Products grid — auto-fill so cards don't blow up on wide screens.
   Min 200px gives 4 cards on the typical 932px products-area (after the
   256px sidebar), 5 on a wider 1100px+ area, and degrades cleanly to 2-3
   on tablet without needing manual breakpoints. Cards stay 200-260px wide
   instead of the previous 295px+ which felt oversized. */
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
  gap:18px;
}
.products-grid.list-view{
  grid-template-columns:1fr;gap:14px;
}

/* Product card */
.product-card{
  background:var(--surface);
  border-radius:16px;overflow:hidden;
  border:1px solid var(--line-soft);
  /* Animate transforms only — never layout props (uiux-pro). */
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .2s;
  cursor:pointer;display:flex;flex-direction:column;
  position:relative;
}
.product-card:hover{
  border-color:var(--orange);
  transform:translateY(-4px);
  box-shadow:0 14px 28px -14px rgba(0,0,0,.14);
}
.product-card:focus-visible{
  outline:2px solid var(--orange);outline-offset:3px;
}

/* Image — uiux-pro:
   - object-fit:contain so the FULL product is visible (no crop). User
     explicitly asked for this; product photos are often portrait or have
     subjects near the edges that cover() would slice off.
   - 4:5 aspect-ratio (taller than square) — better silhouette for
     personalised gifts photographed standing up, less wasted whitespace
     than 1:1 + contain produced.
   - 12px internal breathing room so the image doesn't kiss the card edge.
*/
.product-img{
  aspect-ratio:4/5;background:var(--bg-soft);
  overflow:hidden;position:relative;
  padding:10px;
  border-radius:14px 14px 0 0;
}
.product-img img{
  width:100%;height:100%;object-fit:contain;
  transition:transform .45s var(--ease);
}
.product-card:hover .product-img img{transform:scale(1.04)}

/* Badges */
.product-badges{
  position:absolute;top:12px;right:12px;
  display:flex;flex-direction:column;gap:5px;z-index:2;
}
.badge{
  font-size:10px;font-weight:700;
  padding:5px 11px;border-radius:100px;
  letter-spacing:.5px;text-transform:uppercase;
  line-height:1;
}
.badge.new{background:var(--orange);color:#fff}
.badge.sale{background:var(--surface);color:var(--ink);border:1.5px solid var(--ink)}
.badge.top{background:var(--ink);color:#fff}
.badge.custom{background:#fff8e1;color:#b45309;border:1px solid #fde68a}

/* Quick action buttons */
.product-actions{
  position:absolute;top:12px;left:12px;
  display:flex;flex-direction:column;gap:6px;z-index:2;
}
.action-btn{
  width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px);
  display:grid;place-items:center;
  color:var(--ink-soft);border:1px solid rgba(0,0,0,.06);
  cursor:pointer;transition:all .18s;
}
.action-btn:hover{background:var(--surface);color:var(--orange);transform:scale(1.08)}
.action-btn.active{color:var(--orange)}
.action-btn.active svg{fill:var(--orange)}
.action-btn svg{width:15px;height:15px}

/* Design CTA overlay */
.product-design-overlay{
  position:absolute;bottom:0;left:0;right:0;
  padding:14px;z-index:2;
  transform:translateY(100%);
  transition:transform .32s var(--ease);
}
.product-card:hover .product-design-overlay{transform:translateY(0)}
.design-btn{
  width:100%;background:var(--ink);color:#fff;
  border:none;border-radius:10px;padding:12px 16px;
  font-size:13px;font-weight:700;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:8px;
  transition:background .15s;
}
.design-btn:hover{background:var(--orange)}
.design-btn svg{width:14px;height:14px}

/* Info — uiux-pro: 8px-grid spacing, restrained type scale (11→13→14→18),
   2-line clamp on title prevents jumpy heights. */
.product-info{
  padding:12px 14px 14px;display:flex;flex-direction:column;flex:1;gap:6px;
}
.product-cat{
  font-size:10px;font-weight:700;color:var(--orange);
  text-transform:uppercase;letter-spacing:1.1px;
}
.product-name{
  font-family:var(--serif);font-size:14px;font-weight:700;
  color:var(--ink);letter-spacing:-.15px;line-height:1.3;
  flex:1;
  /* Clamp title to 2 lines so card heights stay aligned in the grid. */
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  overflow:hidden;
}
.product-footer{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:10px;margin-top:6px;border-top:1px solid var(--line-soft);
}
.product-price{
  display:flex;align-items:baseline;gap:6px;
}
.price-current{
  font-family:var(--serif);font-size:18px;font-weight:700;
  color:var(--ink);letter-spacing:-.4px;line-height:1;
}
.price-current .currency{font-size:12px;color:var(--ink-muted);margin-left:1px;font-weight:600}
.price-old{font-size:12px;color:var(--ink-muted);text-decoration:line-through;font-weight:500}
.product-rating{
  display:inline-flex;align-items:center;gap:3px;
  background:var(--bg-soft);border-radius:100px;
  padding:3px 8px;font-size:11px;font-weight:700;color:var(--ink-soft);
  line-height:1;
}
.product-rating svg{width:11px;height:11px;fill:var(--orange);color:var(--orange)}

/* Weekly sold indicator — sits between name and footer. */
.product-sold{
  display:flex;align-items:center;gap:5px;
  font-size:11px;color:var(--ink-muted);font-weight:500;
}
.sold-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--green);flex-shrink:0;
  animation:blink 2s ease-in-out infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.4}}

/* LIST VIEW card */
.products-grid.list-view .product-card{
  flex-direction:row;border-radius:16px;
}
.products-grid.list-view .product-img{
  width:160px;flex-shrink:0;aspect-ratio:auto;border-radius:0;
}
.products-grid.list-view .product-info{padding:20px 24px}
.products-grid.list-view .product-name{font-size:18px}
.products-grid.list-view .product-design-overlay{
  top:0;bottom:auto;left:auto;right:0;
  padding:20px;transform:translateX(20px);opacity:0;
  transition:all .3s;
}
.products-grid.list-view .product-card:hover .product-design-overlay{
  transform:translateX(0);opacity:1;
}
.products-grid.list-view .design-btn{width:auto;white-space:nowrap}

/* ============================================
   EDITORIAL BREAK — mid-grid feature
   ============================================ */
.editorial-card{
  grid-column:1/-1;
  background:var(--bg-soft);
  border-radius:20px;
  overflow:hidden;
  display:grid;grid-template-columns:1fr 1fr;
  min-height:260px;
  border:1px solid var(--line-soft);
}
.editorial-img{overflow:hidden;position:relative}
.editorial-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.editorial-card:hover .editorial-img img{transform:scale(1.04)}
.editorial-content{
  padding:40px 36px;
  display:flex;flex-direction:column;justify-content:center;
}
.editorial-label{
  font-size:11px;font-weight:700;color:var(--orange);
  text-transform:uppercase;letter-spacing:2px;margin-bottom:12px;
}
.editorial-title{
  font-family:var(--serif);font-size:28px;font-weight:700;
  color:var(--ink);letter-spacing:-.5px;line-height:1.15;
  margin-bottom:12px;
}
.editorial-title .italic{font-style:italic;color:var(--orange);font-weight:500}
.editorial-desc{font-size:15px;color:var(--ink-soft);line-height:1.6;margin-bottom:20px}
.editorial-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--ink);color:#fff;
  border-radius:100px;padding:12px 22px;
  font-size:13px;font-weight:700;transition:all .2s;
  align-self:flex-start;
}
.editorial-cta:hover{background:var(--orange);transform:translateY(-1px)}
.editorial-cta svg{width:14px;height:14px}

/* ============================================
   INSPIRATION TAGS (below grid)
   ============================================ */
.inspiration{
  margin-top:48px;
  padding:32px;
  background:var(--surface);
  border:1px solid var(--line-soft);
  border-radius:20px;
}
.inspiration-title{
  font-family:var(--serif);font-size:18px;font-weight:700;
  color:var(--ink);margin-bottom:16px;letter-spacing:-.3px;
}
.inspiration-tags{display:flex;flex-wrap:wrap;gap:8px}
.inspiration-tag{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--bg-soft);border:1px solid var(--line);
  padding:9px 18px;border-radius:100px;
  font-size:13.5px;font-weight:600;color:var(--ink-soft);
  cursor:pointer;transition:all .2s;
}
.inspiration-tag:hover{background:var(--ink);color:#fff;border-color:var(--ink);transform:translateY(-2px)}
.inspiration-tag .emoji{font-size:16px}

/* ============================================
   PAGINATION
   ============================================ */
.pagination{
  display:flex;align-items:center;justify-content:center;
  gap:6px;margin-top:48px;
}
.page-btn{
  width:42px;height:42px;border-radius:12px;
  display:grid;place-items:center;
  font-size:14px;font-weight:600;color:var(--ink-soft);
  border:1.5px solid var(--line);background:var(--surface);
  cursor:pointer;transition:all .15s;
}
.page-btn:hover{border-color:var(--ink);color:var(--ink)}
.page-btn.active{background:var(--ink);color:#fff;border-color:var(--ink)}
.page-btn.arrow svg{width:16px;height:16px}
.page-btn:disabled{opacity:.35;cursor:not-allowed}
.page-dots{color:var(--ink-muted);padding:0 4px}

/* ============================================
   FOOTER MINIMAL
   ============================================ */
.footer-minimal{
  background:var(--ink);color:rgba(255,255,255,.6);
  padding:28px 0;text-align:center;font-size:13px;
  margin-top:60px;
}
.footer-minimal a{color:rgba(255,255,255,.8);margin:0 10px}
.footer-minimal a:hover{color:var(--orange-soft)}

/* ============================================
   MOBILE
   ============================================ */
@media(max-width:1024px){
  .cat-layout{grid-template-columns:220px 1fr;gap:24px}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .cat-hero-content{padding:0 40px 0 50%}
}
@media(max-width:900px){
  .cat-layout{grid-template-columns:1fr}
  .sidebar{
    position:static;
    display:grid;grid-template-columns:repeat(2,1fr);
    gap:12px;
  }
  .sidebar-card{margin-bottom:0}
  .cat-hero{height:320px}
  .cat-hero-img{width:45%;clip-path:polygon(0 0,80% 0,95% 100%,0 100%)}
  .cat-hero-content{padding:0 32px 0 48%}
  .cat-hero-title{font-size:36px}
}
@media(max-width:768px){
  .container{padding:0 16px}
  .nav{display:none}
  .mobile-menu-btn{
    display:grid;place-items:center;
    width:40px;height:40px;border-radius:50%;
    background:var(--ink);color:#fff;
  }
  .mobile-menu-btn svg{width:18px;height:18px}
  .cat-hero{height:260px}
  .cat-hero-img{display:none}
  .cat-hero-content{padding:32px;justify-content:center}
  .cat-hero-inner{max-width:100%;text-align:center}
  .cat-hero-eyebrow{justify-content:center}
  .cat-hero-stats{justify-content:center}
  .sidebar{grid-template-columns:1fr}
  .products-grid{grid-template-columns:repeat(2,1fr);gap:14px}
  .editorial-card{grid-template-columns:1fr}
  .editorial-img{height:200px}
  .editorial-content{padding:28px 24px}
  .featured-banner{grid-template-columns:1fr;text-align:center}
  .featured-banner-btn{width:100%}
  .toolbar-inner{gap:8px}
  .results-count{display:none}
}
@media(max-width:480px){
  .cat-hero-title{font-size:28px}
  .products-grid{gap:10px}
  .product-name{font-size:14px}
  .price-current{font-size:18px}
  .cat-hero-stats{gap:16px}
  .cat-hero-stat-num{font-size:22px}
}
