/* ══════════════════════════════════════════════════
   EROS69 – 12 Premium Features CSS
   ══════════════════════════════════════════════════ */

/* ── 1. IMAGE ZOOM & LIGHTBOX ── */
.zoom-lens {
  position: absolute; width: 120px; height: 120px;
  border: 2px solid var(--ac); border-radius: 50%;
  cursor: zoom-in; pointer-events: none; z-index: 10;
  background: rgba(212,149,106,.15); display: none;
  backdrop-filter: blur(1px);
}
.pd-img:hover .zoom-lens, .pdp-main-img:hover .zoom-lens { display: block; }
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.92);
  z-index: 10000; display: flex; align-items: center;
  justify-content: center; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-overlay img {
  max-width: 85vw; max-height: 85vh; object-fit: contain;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: #fff; font-size: 2rem; cursor: pointer;
  width: 44px; height: 44px; display: flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); border-radius: 50%;
  border: none; transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 2rem; cursor: pointer;
  width: 48px; height: 48px; display: flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border-radius: 50%;
  border: none; transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.15); }
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }
.lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%); color: rgba(255,255,255,.6);
  font-size: .85rem; font-family: var(--bf);
}

/* ── PDP IMAGE NAVIGATION ARROWS ── */
.pdp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 1;
  transition: background .2s ease, transform .2s ease;
  backdrop-filter: blur(4px);
}
.pdp-arrow:hover {
  background: rgba(0,0,0,.7);
  transform: translateY(-50%) scale(1.1);
}
.pdp-arrow:active {
  transform: translateY(-50%) scale(.95);
}
.pdp-arrow-left {
  left: 12px;
}
.pdp-arrow-right {
  right: 12px;
}
.pdp-img-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .72rem;
  font-weight: 500;
  padding: .25rem .7rem;
  border-radius: 20px;
  z-index: 5;
  font-family: var(--bf);
  letter-spacing: .03em;
  backdrop-filter: blur(4px);
}

/* Mobile arrows */
@media(max-width: 768px) {
  .pdp-arrow {
    opacity: 1;
    width: 38px;
    height: 38px;
  }
  .pdp-arrow-left { left: 8px; }
  .pdp-arrow-right { right: 8px; }
  .pdp-arrow svg { width: 20px; height: 20px; }
}

/* ── 2. PRODUCT COMPARE ── */
.compare-bar {
  position: fixed; bottom: -100px; left: 50%;
  transform: translateX(-50%); background: var(--card);
  border: 1px solid var(--bdr); border-radius: 16px 16px 0 0;
  padding: .8rem 1.5rem; display: flex; align-items: center;
  gap: 1rem; z-index: 9000; transition: bottom .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -10px 40px rgba(0,0,0,.4);
  backdrop-filter: blur(20px);
}
.compare-bar.visible { bottom: 0; }
.compare-items { display: flex; gap: .6rem; }
.compare-item {
  width: 52px; height: 52px; border-radius: 8px;
  overflow: hidden; position: relative; border: 2px solid var(--bdr);
}
.compare-item img { width: 100%; height: 100%; object-fit: cover; }
.compare-item .remove-compare {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; background: #e8546a;
  border-radius: 50%; border: none; color: #fff;
  font-size: .6rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; line-height: 1;
}
.compare-btn-bar {
  background: var(--ac); color: #1a1218; border: none;
  padding: .5rem 1.2rem; border-radius: 8px; cursor: pointer;
  font-weight: 600; font-size: .82rem; font-family: var(--bf);
  transition: all .2s;
}
.compare-btn-bar:hover { filter: brightness(1.1); }
.compare-badge {
  position: absolute; top: .4rem; left: .4rem;
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: 6px; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity .2s; z-index: 3;
}
.pc:hover .compare-badge { opacity: 1; }
.compare-badge.active { background: var(--ac); border-color: var(--ac); }
.compare-badge svg { width: 14px; height: 14px; }

/* Compare Modal */
.compare-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.85);
  z-index: 9500; display: flex; align-items: center;
  justify-content: center; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.compare-modal.active { opacity: 1; pointer-events: all; }
.compare-table-wrap {
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: 16px; padding: 2rem; max-width: 900px;
  width: 90%; max-height: 80vh; overflow-y: auto;
}
.compare-grid {
  display: grid; gap: 1px;
  background: var(--bdr);
}
.compare-grid > div {
  background: var(--bg2); padding: .8rem 1rem;
  font-size: .85rem; color: var(--tx2);
}
.compare-grid .cg-head {
  background: var(--card); font-weight: 600;
  color: var(--tx1); text-align: center;
}
.compare-grid .cg-label {
  background: rgba(212,149,106,.05);
  color: var(--ac); font-weight: 600;
  font-size: .75rem; text-transform: uppercase;
  letter-spacing: .1em;
}
.compare-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px;
}

/* ── 3. ADVANCED FILTERS ── */
.adv-filters {
  display: flex; gap: .8rem; flex-wrap: wrap;
  margin-bottom: 1rem; align-items: center;
  margin-top: .5rem;
}
.filter-group {
  position: relative;
}
.filter-btn {
  background: var(--card); border: 1px solid var(--bdr);
  color: var(--tx2); padding: .45rem .9rem; border-radius: 8px;
  font-size: .78rem; cursor: pointer; font-family: var(--bf);
  display: flex; align-items: center; gap: .4rem;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--ac); color: var(--ac); }
.filter-dropdown {
  position: absolute; top: calc(100% + .4rem); left: 50%; transform: translateX(-50%);
  background: #1e1929; border: 1px solid rgba(212,149,106,.2);
  border-radius: 12px; padding: 1rem; min-width: 280px; max-width: 320px;
  z-index: 1002; box-shadow: 0 12px 48px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.04);
  display: none;
}
.filter-dropdown.open { display: block; }
.price-slider-wrap { padding: .3rem 0; }
.price-range-inputs {
  display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem;
}
.price-range-inputs label {
  display: flex; flex-direction: column; gap: .2rem; flex: 1;
}
.price-range-inputs label span {
  font-size: .65rem; color: var(--tx3); text-transform: uppercase; letter-spacing: .05em;
}
.price-input {
  width: 100%; background: var(--bg2, #0e0a14); border: 1px solid var(--bdr);
  color: var(--tx1); padding: .4rem .5rem; border-radius: 6px;
  font-size: .82rem; font-family: var(--bf); text-align: center;
  -moz-appearance: textfield;
}
.price-input::-webkit-inner-spin-button,
.price-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.price-input:focus { border-color: var(--ac); outline: none; }
.price-dash { color: var(--tx3); font-size: .9rem; margin-top: 1rem; }
.price-presets {
  display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .6rem;
}
.price-preset {
  background: rgba(255,255,255,.05); border: 1px solid var(--bdr);
  color: var(--tx2); padding: .25rem .5rem; border-radius: 6px;
  font-size: .68rem; cursor: pointer; font-family: var(--bf);
  transition: all .2s; white-space: nowrap;
}
.price-preset:hover, .price-preset.active {
  background: rgba(212,149,106,.15); border-color: var(--ac); color: var(--ac);
}
.price-apply-btn {
  width: 100%; background: var(--ac); color: #fff; border: none;
  padding: .5rem; border-radius: 8px; font-size: .78rem;
  cursor: pointer; font-family: var(--bf); font-weight: 600;
  transition: opacity .2s;
}
.price-apply-btn:hover { opacity: .85; }
.filter-btn.filter-active { border-color: var(--ac); color: var(--ac); background: rgba(212,149,106,.1); }
/* keep old slider styles for backwards compat */
.price-slider {
  width: 100%; accent-color: var(--ac);
  -webkit-appearance: none; appearance: none; height: 4px;
  background: var(--bdr); border-radius: 4px; outline: none;
}
.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  background: var(--ac); border-radius: 50%; cursor: pointer;
}
.price-label { display: flex; justify-content: space-between; font-size: .75rem; color: var(--tx3); margin-top: .3rem; }
.filter-check {
  display: flex; align-items: center; gap: .5rem;
  padding: .3rem 0; cursor: pointer; font-size: .82rem;
  color: var(--tx2);
}
.filter-check input { accent-color: var(--ac); }
.active-filters { display: flex; gap: .4rem; flex-wrap: wrap; }
.filter-tag {
  background: rgba(212,149,106,.12); border: 1px solid rgba(212,149,106,.3);
  color: var(--ac); padding: .2rem .6rem; border-radius: 6px;
  font-size: .72rem; display: flex; align-items: center; gap: .3rem;
  cursor: pointer; transition: all .2s;
}
.filter-tag:hover { background: rgba(212,149,106,.2); }

/* ── 4. SHARE WISHLIST ── */
.share-wl-btn {
  background: transparent; border: 1px solid var(--bdr);
  color: var(--tx2); padding: .4rem .8rem; border-radius: 8px;
  font-size: .78rem; cursor: pointer; display: flex;
  align-items: center; gap: .4rem; transition: all .2s;
}
.share-wl-btn:hover { border-color: var(--ac); color: var(--ac); }
.share-popup {
  position: absolute; bottom: calc(100% + .5rem); right: 0;
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: 10px; padding: 1rem; min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4); display: none; z-index: 100;
}
.share-popup.open { display: block; }
.share-option {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem; border-radius: 6px; cursor: pointer;
  color: var(--tx2); font-size: .82rem; transition: background .2s;
}
.share-option:hover { background: rgba(255,255,255,.05); }

/* ── 5. SALE COUNTDOWN ── */
.sale-countdown {
  display: flex; gap: .3rem; margin-top: .4rem;
}
.cd-unit {
  background: rgba(232,84,106,.12); border: 1px solid rgba(232,84,106,.2);
  border-radius: 6px; padding: .2rem .4rem; text-align: center;
  min-width: 36px;
}
.cd-num {
  font-size: .85rem; font-weight: 700; color: #e8546a;
  font-variant-numeric: tabular-nums;
}
.cd-lbl { font-size: .55rem; color: rgba(232,84,106,.6); text-transform: uppercase; letter-spacing: .05em; }
.sale-banner-timer {
  background: linear-gradient(135deg, rgba(232,84,106,.1), rgba(212,149,106,.1));
  border: 1px solid rgba(232,84,106,.2); border-radius: 10px;
  padding: .8rem 1.2rem; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.sale-banner-timer .sbt-text { color: var(--tx1); font-size: .9rem; font-weight: 600; }
.sale-banner-timer .sbt-sub { color: var(--tx2); font-size: .75rem; }

/* ── 6. LIVE CHAT WIDGET ── */
.chat-bubble {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #e8355a 0%, #c02060 50%, #8a1040 100%);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 8000;
  box-shadow: 0 4px 24px rgba(220,50,90,.55), 0 0 0 3px rgba(220,50,90,.15);
  transition: transform .2s, box-shadow .2s;
  border: none;
  animation: chatPulse 3s ease-in-out infinite;
}
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(220,50,90,.55), 0 0 0 3px rgba(220,50,90,.15); }
  50%        { box-shadow: 0 6px 32px rgba(220,50,90,.75), 0 0 0 8px rgba(220,50,90,.08); }
}
.mob-menu-overlay.open ~ #chatBubble,
body.menu-open #chatBubble { opacity: 0 !important; pointer-events: none !important; }
.chat-bubble:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(220,50,90,.8), 0 0 0 6px rgba(220,50,90,.2); animation: none; }
.chat-bubble svg { width: 26px; height: 26px; color: #fff; }
.chat-badge {
  position: absolute; top: -2px; right: -2px;
  width: 16px; height: 16px; background: #e8546a;
  border-radius: 50%; font-size: .6rem; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.chat-window {
  position: fixed; bottom: 5.5rem; right: 1.5rem;
  width: 340px; height: 440px; background: var(--bg2);
  border: 1px solid var(--bdr); border-radius: 16px;
  z-index: 8001; display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transform: translateY(20px) scale(.95); opacity: 0;
  pointer-events: none; transition: all .3s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.chat-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.chat-header {
  padding: .8rem 1rem; background: linear-gradient(135deg, rgba(160,40,80,.15), rgba(120,30,60,.1));
  border-bottom: 1px solid rgba(201,64,112,.2);
  display: flex; align-items: center; justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: .6rem; }
.chat-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #c94070, #a8305a);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: #fff;
}
.chat-name { font-size: .85rem; font-weight: 600; color: var(--tx1); }
.chat-status { font-size: .65rem; color: #5ec99a; display: flex; align-items: center; gap: .3rem; }
.chat-status::before { content: ''; width: 6px; height: 6px; background: #5ec99a; border-radius: 50%; }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: .6rem;
  scrollbar-width: thin; scrollbar-color: var(--bdr) transparent;
}
.chat-msg {
  max-width: 85%; padding: .6rem .8rem; border-radius: 12px;
  font-size: .82rem; line-height: 1.5; animation: chatIn .3s ease;
}
@keyframes chatIn { from { opacity: 0; transform: translateY(8px); } }
.chat-msg.bot {
  background: var(--card); color: var(--tx2);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: linear-gradient(135deg, #c94070, #a8305a); color: #fff;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.chat-msg .msg-time { font-size: .6rem; opacity: .5; margin-top: .2rem; }
.chat-quick-btns { display: flex; gap: .3rem; flex-wrap: wrap; margin-top: .4rem; }
.chat-quick-btn {
  background: rgba(201,64,112,.1); border: 1px solid rgba(201,64,112,.25);
  color: #e8637a; padding: .25rem .5rem; border-radius: 6px;
  font-size: .7rem; cursor: pointer; transition: all .2s;
}
.chat-quick-btn:hover { background: rgba(201,64,112,.2); border-color: rgba(201,64,112,.4); }
.chat-input-wrap {
  padding: .6rem; border-top: 1px solid var(--bdr);
  display: flex; gap: .4rem;
}
.chat-input {
  flex: 1; background: var(--card); border: 1px solid var(--bdr);
  border-radius: 8px; padding: .5rem .7rem; color: var(--tx1);
  font-size: .82rem; outline: none; font-family: var(--bf);
}
.chat-input:focus { border-color: #c94070; }
.chat-send {
  background: linear-gradient(135deg, #c94070, #a8305a); border: none; border-radius: 8px;
  width: 36px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: filter .2s;
}
.chat-send:hover { filter: brightness(1.15); }
.chat-send svg { width: 16px; height: 16px; color: #fff; }

/* ── 7. PRODUCT REVIEWS ── */
.review-section {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--bdr);
}
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.review-header h3 { font-family: var(--sf); font-size: 1.1rem; color: var(--tx1); font-weight: 400; }
.write-review-btn {
  background: transparent; border: 1px solid var(--ac);
  color: var(--ac); padding: .4rem .8rem; border-radius: 8px;
  font-size: .78rem; cursor: pointer; font-family: var(--bf);
  transition: all .2s;
}
.write-review-btn:hover { background: var(--ac); color: #1a1218; }
.review-form { background: var(--card); border-radius: 10px; padding: 1rem; margin-bottom: 1rem; display: none; }
.review-form.open { display: block; }
.review-stars { display: flex; gap: .3rem; margin-bottom: .6rem; }
.review-star {
  font-size: 1.3rem; cursor: pointer; color: var(--bdr);
  transition: color .15s;
}
.review-star.lit { color: #f0c040; }
.review-textarea {
  width: 100%; background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: 8px; padding: .6rem; color: var(--tx1);
  font-size: .85rem; min-height: 80px; resize: vertical;
  font-family: var(--bf); outline: none;
}
.review-textarea:focus { border-color: var(--ac); }
.review-submit {
  margin-top: .5rem; background: var(--ac); color: #1a1218;
  border: none; padding: .5rem 1rem; border-radius: 8px;
  font-weight: 600; cursor: pointer; font-size: .82rem;
}
.review-card {
  background: var(--card); border-radius: 10px;
  padding: .8rem; margin-bottom: .5rem;
}
.review-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .4rem;
}
.review-author { font-size: .82rem; font-weight: 600; color: var(--tx1); }
.review-date { font-size: .7rem; color: var(--tx3); }
.review-text { font-size: .82rem; color: var(--tx2); line-height: 1.6; }

/* ── 8. ORDER TRACKING ── */
.tracking-wrap { max-width: 600px; margin: 0 auto; padding: 2rem; }
.tracking-input-row {
  display: flex; gap: .5rem; margin-bottom: 2rem;
}
.tracking-input {
  flex: 1; background: var(--card); border: 1px solid var(--bdr);
  border-radius: 8px; padding: .7rem 1rem; color: var(--tx1);
  font-size: .9rem; font-family: var(--bf); outline: none;
}
.tracking-input:focus { border-color: var(--ac); }
.tracking-btn {
  background: var(--ac); color: #1a1218; border: none;
  padding: .7rem 1.2rem; border-radius: 8px; cursor: pointer;
  font-weight: 600; font-family: var(--bf);
}
.tracking-progress {
  position: relative; padding: 0 0 0 2rem;
}
.tracking-step {
  position: relative; padding-bottom: 2rem; padding-left: 1.5rem;
  border-left: 2px solid var(--bdr);
}
.tracking-step:last-child { border-left-color: transparent; padding-bottom: 0; }
.tracking-step.done { border-left-color: var(--ac); }
.tracking-step.done::before {
  content: '✓'; position: absolute; left: -11px; top: 0;
  width: 20px; height: 20px; background: var(--ac);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: .6rem; color: #1a1218;
  font-weight: 700;
}
.tracking-step.active::before {
  content: ''; position: absolute; left: -9px; top: 2px;
  width: 16px; height: 16px; background: var(--ac);
  border-radius: 50%; box-shadow: 0 0 12px var(--ac);
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(212,149,106,.4); } 50% { box-shadow: 0 0 0 8px rgba(212,149,106,0); } }
.tracking-step.pending::before {
  content: ''; position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; background: var(--bdr);
  border-radius: 50%;
}
.tracking-step-title { font-size: .9rem; font-weight: 600; color: var(--tx1); }
.tracking-step-info { font-size: .78rem; color: var(--tx3); margin-top: .2rem; }

/* ── 9. LOYALTY POINTS ── */
.loyalty-badge {
  display: flex; align-items: center; gap: .3rem;
  font-size: .72rem; color: var(--ac); cursor: pointer;
  padding: .3rem .5rem; background: rgba(212,149,106,.08);
  border-radius: 6px; transition: background .2s;
}
.loyalty-badge:hover { background: rgba(212,149,106,.15); }
.loyalty-badge svg { width: 14px; height: 14px; }
.loyalty-popup {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: 16px; padding: 2rem; width: 380px;
  z-index: 9500; opacity: 0; pointer-events: none;
  transition: all .3s; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.loyalty-popup.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }
.loyalty-tiers { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.loyalty-tier {
  display: flex; align-items: center; gap: .8rem;
  padding: .6rem; border-radius: 8px; background: var(--card);
  border: 1px solid var(--bdr);
}
.loyalty-tier.current { border-color: var(--ac); background: rgba(212,149,106,.05); }
.loyalty-tier-icon { font-size: 1.5rem; }
.loyalty-tier-name { font-size: .85rem; font-weight: 600; color: var(--tx1); }
.loyalty-tier-desc { font-size: .72rem; color: var(--tx3); }
.loyalty-points-display {
  text-align: center; padding: 1rem;
  background: linear-gradient(135deg, rgba(212,149,106,.08), rgba(212,149,106,.02));
  border-radius: 10px; margin-bottom: 1rem;
}
.loyalty-points-num { font-size: 2rem; font-weight: 700; color: var(--ac); font-family: var(--sf); }
.loyalty-points-label { font-size: .75rem; color: var(--tx3); }
.pts-earn { font-size: .72rem; color: var(--ac); margin-top: .2rem; }

/* ── 10. RECENTLY VIEWED (enhanced) ── */
.rv-slider {
  display: flex; gap: .8rem; overflow-x: auto;
  scrollbar-width: none; padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
}
.rv-slider::-webkit-scrollbar { display: none; }
.rv-card {
  flex: 0 0 160px; scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: 10px; overflow: hidden; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.rv-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.rv-card-img { aspect-ratio: 1; overflow: hidden; }
.rv-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.rv-card:hover .rv-card-img img { transform: scale(1.05); }
.rv-card-info { padding: .5rem; }
.rv-card-name { font-size: .75rem; color: var(--tx1); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-card-price { font-size: .78rem; color: var(--ac); font-weight: 600; margin-top: .2rem; }
.rv-quick-add {
  width: 100%; background: rgba(212,149,106,.1); border: none;
  color: var(--ac); padding: .3rem; font-size: .7rem;
  cursor: pointer; transition: background .2s; font-family: var(--bf);
}
.rv-quick-add:hover { background: rgba(212,149,106,.2); }

/* ── 11. BUNDLE DEALS ── */
.bundle-section {
  margin-top: 1.5rem; padding: 1rem; background: var(--card);
  border: 1px solid var(--bdr); border-radius: 12px;
}
.bundle-title {
  font-size: .9rem; color: var(--tx1); font-weight: 600;
  margin-bottom: .8rem; display: flex; align-items: center; gap: .4rem;
}
.bundle-badge {
  background: rgba(94,201,154,.15); color: #5ec99a;
  font-size: .65rem; padding: .15rem .4rem; border-radius: 4px;
  font-weight: 700;
}
.bundle-items { display: flex; align-items: center; gap: .5rem; margin-bottom: .8rem; }
.bundle-product {
  flex: 1; text-align: center; background: var(--bg2);
  border-radius: 8px; padding: .5rem; border: 1px solid var(--bdr);
  max-width: 45%; overflow: hidden;
}
.bundle-product img { width: 80px; height: 80px; object-fit: contain; border-radius: 6px; display: block; margin: 0 auto; }
.bundle-product-name { font-size: .7rem; color: var(--tx2); margin-top: .3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; margin-left: auto; margin-right: auto; }
.bundle-plus { color: var(--tx3); font-size: 1.2rem; font-weight: 300; }
.bundle-price-row {
  display: flex; align-items: center; justify-content: space-between;
}
.bundle-old-price { text-decoration: line-through; color: var(--tx3); font-size: .85rem; }
.bundle-new-price { color: #5ec99a; font-size: 1.1rem; font-weight: 700; }
.bundle-add-btn {
  background: #5ec99a; color: #1a1218; border: none;
  padding: .5rem 1rem; border-radius: 8px; cursor: pointer;
  font-weight: 600; font-size: .82rem; transition: filter .2s;
}
.bundle-add-btn:hover { filter: brightness(1.1); }

/* ── 12. NEWSLETTER POPUP ── */
.nl-popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  z-index: 9800; display: flex; align-items: center;
  justify-content: center; opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.nl-popup-overlay.active { opacity: 1; pointer-events: all; }
.nl-popup {
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: 20px; padding: 2.5rem; max-width: 440px;
  width: 90%; text-align: center; position: relative;
  transform: translateY(20px); transition: transform .4s;
}
.nl-popup-overlay.active .nl-popup { transform: translateY(0); }
.nl-popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--tx3);
  font-size: 1.3rem; cursor: pointer; line-height: 1;
}
.nl-popup-badge {
  background: linear-gradient(135deg, var(--ac), #c4845a);
  color: #1a1218; font-size: 1.8rem; font-weight: 800;
  padding: .4rem 1.2rem; border-radius: 10px;
  display: inline-block; margin-bottom: 1rem;
  font-family: var(--sf);
}
.nl-popup h2 {
  font-family: var(--sf); font-size: 1.5rem;
  color: var(--tx1); font-weight: 400; margin-bottom: .5rem;
}
.nl-popup p { color: var(--tx2); font-size: .88rem; line-height: 1.6; margin-bottom: 1.2rem; }
.nl-popup-input {
  width: 100%; background: var(--card); border: 1px solid var(--bdr);
  border-radius: 10px; padding: .7rem 1rem; color: var(--tx1);
  font-size: .9rem; margin-bottom: .6rem; outline: none;
  font-family: var(--bf); text-align: center;
}
.nl-popup-input:focus { border-color: var(--ac); }
.nl-popup-submit {
  width: 100%; background: linear-gradient(135deg, var(--ac), #c4845a);
  color: #1a1218; border: none; padding: .7rem;
  border-radius: 10px; font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: filter .2s; font-family: var(--bf);
}
.nl-popup-submit:hover { filter: brightness(1.1); }
.nl-popup-skip {
  display: block; margin-top: .8rem; color: var(--tx3);
  font-size: .75rem; cursor: pointer; background: none;
  border: none; font-family: var(--bf);
}
.nl-popup-skip:hover { color: var(--tx2); }

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  .chat-window { width: calc(100% - 2rem); right: 1rem; bottom: 5rem; height: 400px; }
  .chat-bubble { bottom: 4.5rem; right: 1rem; width: 48px; height: 48px; }
  .chat-bubble svg { width: 22px; height: 22px; }
  .compare-bar.visible ~ .chat-bubble,
  .compare-bar.visible + .chat-bubble { bottom: 5rem; }
  .compare-bar { width: calc(100% - 2rem); left: 1rem; transform: none; padding: .6rem 1rem; }
  .nl-popup { padding: 1.5rem; }
  .loyalty-popup { width: calc(100% - 2rem); }
  
  /* Hide loyalty badge on mobile to free nav space */
  .loyalty-badge,
  #loyaltyBadge,
  nav .loyalty-badge,
  .nr .loyalty-badge {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Language switcher compact */
  .lang-sw { gap: 2px !important; }
  .lang-btn { font-size: .6rem !important; padding: .2rem .35rem !important; min-width: 22px !important; }
  
  /* PDP mobile: reduce main image height, compact info */
  .pdp-main-img { aspect-ratio: 4/3 !important; max-height: 55vh; }
  .pdp-thumbs { gap: .4rem !important; margin-top: .6rem !important; padding: .3rem 0; }
  .pdp-thumb { flex: 0 0 64px !important; width: 64px !important; height: 64px !important; border-radius: 8px; }
  .pdp-title { font-size: 1.3rem !important; margin-bottom: .6rem !important; }
  .pdp-price { font-size: 1.5rem !important; }
  .pdp-info { padding: 1rem .8rem 1.5rem !important; }
  .pdp-bullets { margin-bottom: .8rem; gap: .3rem; }
  .pdp-bullets li { font-size: .82rem; }
  
  /* Color variant buttons smaller on mobile */
  .pdp-color-btn { width: 58px !important; height: 58px !important; border-radius: 10px !important; }
  .pdp-color-check { width: 15px !important; height: 15px !important; }
  .pdp-color-check svg { width: 8px !important; height: 8px !important; }
  
  /* Size buttons compact */
  .pdp-sz-btn { padding: .35rem .7rem !important; font-size: .75rem !important; }
  
  /* ATC button stretch */
  .pdp-atc { padding: .85rem !important; font-size: .78rem !important; }
  
  /* Trust badges compact */
  .pdp-trust { gap: .35rem; margin-top: .8rem; padding-top: .7rem; }
  .pdp-trust-item { font-size: .76rem; gap: .4rem; }
  
  /* Tabs compact on mobile */
  .pdp-tabs-section { padding: 0 .8rem; margin: 1rem auto; }
  .pdp-tab-btn { padding: .5rem .7rem; font-size: .78rem; }
  
  /* Related products */
  .pdp-related { padding: 1.5rem 1rem; }
  .pdp-related h3 { font-size: 1.1rem; margin-bottom: 1rem; }
  .pdp-related-grid { grid-template-columns: repeat(2,1fr); gap: .6rem; }
  
  /* Review section mobile */
  .review-section { margin-top: 1rem; }
  .review-header { flex-direction: column; gap: .5rem; align-items: flex-start; }
  .write-review-btn { font-size: .72rem !important; padding: .4rem .8rem !important; }
  
  /* Bundle section compact */
  .bundle-section { padding: .8rem !important; }
  .bundle-items { gap: .3rem !important; }
  .bundle-product img { width: 40px !important; height: 40px !important; }
  
  /* Newsletter popup mobile */
  .nl-popup-overlay .nl-popup { width: calc(100% - 2rem); max-width: 340px; }
  
  /* Pay chips wrap better */
  .pis, .pay-chips { gap: 3px !important; }
  .pay-chip { padding: .2rem .4rem !important; font-size: .6rem !important; }
}

/* Extra small phones */
@media(max-width:380px) {
  .chat-bubble { width: 44px; height: 44px; bottom: 4rem; }
  .chat-bubble svg { width: 20px; height: 20px; }
  .pdp-main-img { max-height: 45vh; }
  .pdp-thumb { flex: 0 0 52px !important; width: 52px !important; height: 52px !important; }
  .pdp-color-btn { width: 50px !important; height: 50px !important; }
  .pdp-title { font-size: 1.1rem !important; }
}

/* ══════════════════════════════════════════════════
   PREMIUM VISUAL UPGRADES
   ══════════════════════════════════════════════════ */

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for grid items */
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── ENHANCED PRODUCT CARDS ── */
.pc {
  transition: transform .35s ease, box-shadow .35s ease, z-index 0s !important;
  position: relative;
  z-index: 1;
}
.pc:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.35) !important;
  z-index: 10 !important;
}

/* Badge + Button animations removed for performance */

/* ── ENHANCED BACK TO TOP BUTTON ── */
.btt {
  transition: transform .3s ease !important;
}
.btt:hover {
  transform: translateY(-2px) !important;
}

/* Glassmorphism removed for performance */

/* ── TRUST BAR ICONS ANIMATION ── */
.trust-bar .ti svg, .trust-bar .ti .trust-icon {
  transition: transform .3s ease, color .3s ease;
}
.trust-bar .ti:hover svg, .trust-bar .ti:hover .trust-icon {
  transform: scale(1.15) rotate(-3deg);
  color: var(--ac);
}

/* ── CATEGORY CARD ENHANCEMENTS ── */
.cat-card, .kc {
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease !important;
  overflow: hidden;
}
.cat-card:hover, .kc:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(212,149,106,.12) !important;
}
.cat-card img, .kc img {
  transition: transform .6s cubic-bezier(.4,0,.2,1) !important;
}
.cat-card:hover img, .kc:hover img {
  transform: scale(1.08) !important;
}

/* ── SMOOTH SECTION DIVIDERS ── */
.sec-div {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--bdr) 20%, rgba(212,149,106,.2) 50%, var(--bdr) 80%, transparent 100%);
  margin: 3rem 0;
  border: none;
}

/* ── HERO STATS COUNTER GLOW ── */
.hero-stats .stat-num, .hero-stat strong {
  text-shadow: 0 0 20px rgba(212,149,106,.2);
}

/* ── PRICE TAG ENHANCEMENT ── */
.pc .sale-price, .price-new, .pdp-price {
  text-shadow: 0 0 12px rgba(212,149,106,.15);
}
.old-price, .price-old {
  text-decoration-color: var(--rd) !important;
  text-decoration-thickness: 1.5px !important;
}

/* ── WISHLIST HEART ANIMATION ── */
.wl-btn.active svg, .wishlist-btn.active svg {
  animation: heartBeat .6s ease;
}
@keyframes heartBeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.3); }
  40% { transform: scale(.95); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Skeleton, star filter, and modal blur removed for performance */

/* ── SMOOTH FOCUS STYLES ── */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(212,149,106,.15);
  transition: box-shadow .2s ease, border-color .2s ease;
}

/* ── SCROLLBAR STYLING ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bdr); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ac3); }

/* Nav underline pseudo-elements removed – caused layout issues */

/* ── SELECTION COLOR ── */
::selection {
  background: rgba(212,149,106,.3);
  color: #fff;
}

/* ── RESPONSIVE EXTRAS ── */
@media(max-width:768px) {
  .reveal { transform: translateY(20px); }
  .pc:hover { transform: translateY(-3px) !important; z-index: 10 !important; }
  .cat-card:hover, .kc:hover { transform: translateY(-3px) !important; }
}

/* ── PDP BULLETS ── */
.pdp-bullets {
  list-style: none; padding: 0; margin: 0 0 1.2rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.pdp-bullets li {
  font-size: .88rem; color: var(--tx2);
  display: flex; align-items: flex-start; gap: .5rem;
  line-height: 1.5;
}
.pdp-bullets li::before {
  content: '✓'; color: var(--ac); flex-shrink: 0; font-weight: 600;
}

/* ── PDP TRUST BADGES ── */
.pdp-trust {
  display: flex; flex-direction: column; gap: .5rem;
  margin-top: 1.2rem; padding-top: 1rem;
  border-top: 1px solid var(--bdr);
}
.pdp-trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; color: var(--tx2);
}
.pdp-trust-icon {
  font-size: .9rem; width: 20px; text-align: center; flex-shrink: 0;
}

/* ── PDP TABS (Premium style) ── */
.pdp-tabs-section {
  max-width: 1200px; margin: 2rem auto; padding: 0 2rem;
}
.pdp-tabs-nav {
  display: flex; gap: 0; border-bottom: 2px solid var(--bdr);
  margin-bottom: 1.5rem;
}
.pdp-tab-btn {
  background: none; border: none; border-bottom: 3px solid transparent;
  padding: .8rem 1.5rem; font-size: .95rem; font-weight: 500;
  color: var(--tx3); cursor: pointer; transition: all .2s;
  font-family: var(--bf); margin-bottom: -2px;
}
.pdp-tab-btn:hover { color: var(--tx); }
.pdp-tab-btn.active {
  color: var(--ac); border-bottom-color: var(--ac); font-weight: 600;
}
.pdp-tab-content { animation: fadeIn .3s ease; }

/* ── PDP DESCRIPTION PARAGRAPHS ── */
.pdp-desc-para {
  font-size: .92rem; line-height: 1.75; color: var(--tx2);
  margin-bottom: 1rem;
}
.pdp-desc-bullets {
  list-style: disc; padding-left: 1.5rem; margin: 0 0 1.2rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.pdp-desc-bullets li {
  font-size: .9rem; line-height: 1.6; color: var(--tx2);
}

/* ── PDP SPECS TABLE ── */
.pdp-specs-table {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--bdr); border-radius: 10px; overflow: hidden;
}
.pdp-spec-row {
  display: flex; padding: .7rem 1rem;
  border-bottom: 1px solid var(--bdr);
}
.pdp-spec-row:last-child { border-bottom: none; }
.pdp-spec-row:nth-child(even) { background: rgba(255,255,255,.03); }
.pdp-spec-label {
  width: 40%; font-weight: 600; font-size: .85rem; color: var(--tx);
}
.pdp-spec-value {
  width: 60%; font-size: .85rem; color: var(--tx2);
}

@media(max-width:768px) {
  .pdp-tabs-section { padding: 0 1rem; margin: 1.5rem auto; }
  .pdp-tab-btn { padding: .6rem .9rem; font-size: .82rem; }
  .pdp-spec-label { width: 45%; }
  .pdp-spec-value { width: 55%; }
  /* Limit description height on mobile for readability */
  .pdp-tab-content .pdp-desc-para { font-size: .86rem; }
  .pdp-tabs-nav { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .pdp-tabs-nav::-webkit-scrollbar { display: none; }
}

/* === GLOBAL MOBILE OVERFLOW FIX === */
/* Prevent any horizontal scrolling / content shift on mobile */
@media(max-width: 768px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  #app, main#app {
    max-width: 100vw;
    overflow-x: hidden;
  }
}

/* ════════════════════════════════════════════════════════════
   SUBCATEGORY CHIPS — Sinful-style category filter strip
   ════════════════════════════════════════════════════════════ */
.cat-subchips {
  display: flex;
  gap: .5rem;
  padding: 1rem 1.5rem;
  overflow-x: auto;
  background: var(--bg);
  border-bottom: 1px solid var(--bdr);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-subchips::-webkit-scrollbar { display: none; }

.cat-subchip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--bdr);
  background: transparent;
  color: var(--tx2);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s ease;
  font-family: inherit;
}
.cat-subchip:hover {
  border-color: var(--ac);
  color: var(--ac);
  background: rgba(212,149,106,.08);
}
.cat-subchip.active {
  background: var(--ac);
  border-color: var(--ac);
  color: var(--bg);
  font-weight: 600;
}
.cat-subchip-emoji {
  font-size: 1rem;
}

/* ════════════════════════════════════════════════════════════
   SEARCH OVERLAY — Premium upgrade
   ════════════════════════════════════════════════════════════ */
.sov {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.sov.op {
  opacity: 1;
  pointer-events: all;
}
.sbx {
  width: min(680px, 95vw);
  background: var(--bg2);
  border-radius: 1.2rem;
  border: 1px solid var(--bdr);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}
.swp {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--bdr);
}
.swp svg { width: 20px; height: 20px; opacity: .5; flex-shrink: 0; }
#sIn {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--tx);
  font-size: 1.1rem;
  font-family: inherit;
  padding: .25rem 0;
}
#sIn::placeholder { color: var(--tx3); }
.xb {
  background: none;
  border: none;
  color: var(--tx3);
  cursor: pointer;
  padding: .25rem .5rem;
  font-size: 1.4rem;
  line-height: 1;
  transition: color .15s;
}
.xb:hover { color: var(--tx); }

/* Search results container */
#sRes {
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--bdr) transparent;
}

/* Search categories shortcut block */
.s-cat-shortcuts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: .5rem 0 1rem;
}
.s-cat-shortcut {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease;
  color: var(--tx);
  font-size: .88rem;
  font-weight: 500;
  border: none;
  background: none;
  text-align: left;
}
.s-cat-shortcut:hover {
  background: rgba(255,255,255,.05);
  color: var(--ac);
}
.s-cat-shortcut svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: .55;
  stroke: currentColor;
}
.s-cat-shortcut small {
  display: block;
  font-size: .72rem;
  color: var(--tx3);
  font-weight: 400;
  margin-top: 1px;
}
.s-cat-shortcut > div { display: flex; flex-direction: column; }
.s-cat-shortcut > div > span { white-space: nowrap; font-weight: 600; }

/* Search result item */
.sri {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1.25rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s ease;
}
.sri:hover { background: rgba(255,255,255,.04); }
.sri:last-child { border-bottom: none; }
.sic {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: .6rem;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}
.sd { flex: 1; min-width: 0; }
.sn {
  font-size: .9rem;
  font-weight: 500;
  color: var(--tx);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp {
  font-size: .85rem;
  color: var(--ac);
  font-weight: 600;
  margin-top: .2rem;
}
.s-cat-tag {
  font-size: .68rem;
  color: var(--tx3);
  margin-top: .1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.s-all-link {
  display: block;
  text-align: center;
  padding: .9rem;
  font-size: .83rem;
  color: var(--ac);
  cursor: pointer;
  border-top: 1px solid var(--bdr);
  transition: background .15s;
}
.s-all-link:hover { background: rgba(212,149,106,.08); text-decoration: underline; }
.s-header {
  padding: .5rem 1.25rem .25rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tx3);
  font-weight: 600;
}

@media(max-width: 600px) {
  .cat-subchips { padding: .75rem 1rem; }
  .sbx { border-radius: .75rem .75rem 0 0; }
  .sov { align-items: flex-end; padding-top: 0; }
  .s-cat-shortcuts { grid-template-columns: repeat(2, 1fr); }
}
