@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=Jost:wght@300;400;500;600&display=swap');
:root{
  --bg:       #faf7f4;
  --surface:  #ffffff;
  --surface2: #f2ede8;
  --border:   rgba(100,60,30,.12);

  --accent:   #ea580c;
  --accent2:  #f97316;
  --accent3:  #fb923c;

  --text:     #1a0f0a;
  --muted:    #7a6a5e;
  --red:      #dc2626;
  --shadow:   rgba(234,88,12,.15);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
padding-top: 120px;
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
}

/* ── 02. Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(124,63,142,.3); border-radius: 3px; }
.nx-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 0 2rem;
  background: rgba(250,247,244,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
.nx-nav.scrolled { background: rgba(250,247,244,.99); box-shadow: 0 2px 20px var(--shadow); }

/* Logo */
.nx-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nx-logo img {
  height: 90px;
  width: auto;
  display: block;
}



.nx-links {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 3.25rem;
}

.nx-link-item { position: relative; }

.nx-link-plain {
  color: var(--text); text-decoration: none;
  font-size: 1.1rem; font-weight: 700; font-family: 'Jost', sans-serif;
  transition: color .2s;
}
.nx-link-plain:hover { color: var(--accent); }

.nx-link-btn {
  display: flex; align-items: center; gap: .35rem;
  background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 1.1rem; font-weight: 600;
  font-family: 'Jost', sans-serif; padding: .5rem 0;
  transition: color .2s;
}
.nx-link-btn:hover { color: var(--accent); }
.nx-caret { width: 14px; height: 14px; transition: transform .2s; }
.nx-has-mega.open .nx-caret { transform: rotate(180deg); }
.nx-has-mega.open .nx-link-btn { color: var(--accent); }

/* Mega dropdown panel */
.nx-mega-panel {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 995;
}
.nx-has-mega.open .nx-mega-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.nx-mega-grid {
  max-width: 1100px; margin: 0 auto;
  padding: 1.75rem 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}

.nx-mega-tile {
  display: flex; flex-direction: column; gap: .6rem;
  text-decoration: none; color: var(--text);
  border-radius: 14px; overflow: hidden;
  transition: transform .2s;
}
.nx-mega-tile:hover { transform: translateY(-3px); }

.nx-mega-img-wrap {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 5 / 6;
  background: var(--surface2);
}
.nx-mega-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.nx-mega-tile:hover .nx-mega-img-wrap img { transform: scale(1.05); }

.nx-mega-tile-label {
  font-size: .9rem; font-weight: 600; text-align: center;
  font-family: 'Jost', sans-serif;
}

/* Actions group */
.nx-actions { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; }

.nx-icon-btn {
  position: relative; width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: 50%;
  background: var(--surface); color: var(--text);
  display: grid; place-items: center; cursor: pointer;
  transition: all .2s; text-decoration: none;
}
.nx-icon-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(124,63,142,.07); }
.nx-icon-btn svg { width: 17px; height: 17px; }

.nx-badge {
  position: absolute; top: -5px; right: -5px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: .62rem; font-weight: 700;
  display: grid; place-items: center; border: 2px solid var(--bg);
}
.nx-badge.pop { animation: pop .35s cubic-bezier(.34,1.56,.64,1); }

.nx-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .4rem; }
.nx-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.nx-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nx-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nx-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   MOBILE MENU
   ════════════════════════════════════════════════════════════ */

#nx-mobile-menu {
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0; z-index: 1050;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 0.5rem 1.25rem 2rem;
  display: flex; flex-direction: column; gap: .3rem;
  transform: translateX(-100%); transition: transform .35s cubic-bezier(.77,0,.175,1);
  overflow-y: auto;
}
#nx-mobile-menu.open { transform: translateX(0); }

.nx-mob-link-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem .25rem;
  color: var(--text); text-decoration: none;
  font-size: 1rem; font-weight: 600; font-family: 'Jost', sans-serif;
  border-bottom: 1px solid var(--border);
}

.nx-mob-link-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 1rem; font-weight: 600;
  font-family: 'Jost', sans-serif; padding: 0;
}
.nx-mob-has-sub.open .nx-caret { transform: rotate(180deg); }

.nx-mob-sub-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem;
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.nx-mob-has-sub.open .nx-mob-sub-grid {
  max-height: 600px; padding: .75rem 0 1rem;
}

.nx-mob-sub-tile {
  display: flex; flex-direction: column; gap: .4rem;
  text-decoration: none; color: var(--text);
}
.nx-mob-sub-tile img {
  width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: 10px;
  background: var(--surface2);
}
.nx-mob-sub-tile span { font-size: .82rem; font-weight: 600; text-align: center; }

.nx-mob-divider { height: 1px; background: var(--border); margin: .5rem 0; flex-shrink: 0; }

.nx-mob-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.nx-mob-action-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface2); color: var(--text); font-size: .9rem;
  font-weight: 600; cursor: pointer; font-family: 'Jost', sans-serif; transition: all .2s;
}
.nx-mob-action-btn:hover { border-color: var(--accent); color: var(--accent); }


/* ── 05. Sidebars ── */
.nx-overlay {
  position: fixed; inset: 0; background: rgba(26,15,10,.5);

  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.nx-overlay.open { opacity: 1; pointer-events: auto; }

.nx-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200;
  width: min(420px, 100vw); background: var(--surface);
  border-left: 1px solid var(--border); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.77,0,.175,1);
}
.nx-sidebar.open { transform: translateX(0); }

.nx-sb-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
}
.nx-sb-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }

.nx-sb-close {
  width: 34px; height: 34px; border-radius: 50%; background: var(--surface2);
  border: 1px solid var(--border); color: var(--text); cursor: pointer;
  display: grid; place-items: center; transition: all .2s;
}
.nx-sb-close:hover { border-color: var(--red); color: var(--red); }
.nx-sb-close svg { width: 15px; height: 15px; }

.nx-sb-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.nx-sb-body::-webkit-scrollbar { width: 3px; }
.nx-sb-body::-webkit-scrollbar-thumb { background: var(--border); }

.nx-sb-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 1rem; color: var(--muted); text-align: center; }
.nx-sb-empty svg { width: 52px; height: 52px; opacity: .25; }
.nx-sb-empty p { font-size: .9rem; }

.nx-cart-item { display: flex; gap: .75rem; padding: .85rem 0; border-bottom: 1px solid var(--border); animation: slideIn .3s ease; }
.nx-ci-img { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; background: var(--surface2); flex-shrink: 0; }
.nx-ci-info { flex: 1; min-width: 0; }
.nx-ci-name { font-size: .85rem; font-weight: 500; margin-bottom: .25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nx-ci-brand { font-size: .75rem; color: var(--muted); margin-bottom: .4rem; }
.nx-ci-price { font-size: .9rem; font-weight: 600; color: var(--accent); }
.nx-ci-actions { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.nx-qty { display: flex; align-items: center; gap: .35rem; }
.nx-qty button { width: 26px; height: 26px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); color: var(--text); font-size: .9rem; cursor: pointer; display: grid; place-items: center; transition: all .15s; }
.nx-qty button:hover { border-color: var(--accent); color: var(--accent); }
.nx-qty span { font-size: .85rem; font-weight: 600; min-width: 20px; text-align: center; }
.nx-ci-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: .75rem; display: flex; align-items: center; gap: .25rem; transition: color .2s; }
.nx-ci-remove:hover { color: var(--red); }
.nx-ci-remove svg { width: 13px; height: 13px; }

.nx-sb-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); }
.nx-sb-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: .95rem; }
.nx-sb-total strong { font-family: 'Playfair Display', serif; font-size: 1rem; }
.nx-sb-total span { color: var(--accent); font-size: 1.1rem; font-weight: 700; }
.nx-btn-checkout { display: block; width: 100%; padding: .9rem; background: var(--accent); color: #fff; font-weight: 600; font-size: .9rem; border: none; border-radius: 12px; cursor: pointer; font-family: 'Playfair Display', serif; letter-spacing: .04em; transition: all .25s; text-align: center; text-decoration: none; }
.nx-btn-checkout:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,63,142,.3); }

.nx-wish-item { display: flex; gap: .75rem; padding: .85rem 0; border-bottom: 1px solid var(--border); animation: slideIn .3s ease; }
.nx-wi-img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; background: var(--surface2); flex-shrink: 0; }
.nx-wi-info { flex: 1; min-width: 0; }
.nx-wi-name { font-size: .85rem; font-weight: 500; margin-bottom: .2rem; }
.nx-wi-price { font-size: .875rem; font-weight: 600; color: var(--accent); }
.nx-wi-actions { display: flex; gap: .5rem; margin-top: .5rem; }
.nx-wi-cart, .nx-wi-remove { font-size: .75rem; padding: .3rem .7rem; border-radius: 20px; cursor: pointer; transition: all .2s; font-family: 'Jost', sans-serif; }
.nx-wi-cart { background: var(--accent); color: #fff; border: none; font-weight: 600; }
.nx-wi-cart:hover { opacity: .85; }
.nx-wi-remove { background: none; border: 1px solid var(--border); color: var(--muted); }
.nx-wi-remove:hover { border-color: var(--red); color: var(--red); }

/* ── 06. Toast ── */
.nexus-toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99999;
  background: var(--text); color: #fff; border-left: 3px solid var(--accent);
  padding: .75rem 1.25rem; border-radius: 8px; font-size: .875rem;
  font-family: 'Jost', sans-serif; transform: translateY(20px); opacity: 0;
  transition: all .35s cubic-bezier(.34,1.56,.64,1); box-shadow: 0 8px 32px var(--shadow);
}
.nexus-toast--show  { transform: translateY(0); opacity: 1; }
.nexus-toast--error { border-color: var(--red); }
.nexus-toast--info  { border-color: var(--accent2); }
/* ── RECENTLY VIEWED ── */
.rv-section {display: none; padding: 0rem 0 4rem; }

.rv-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.rv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
  position: relative;
}
.rv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow);
}

.rv-card-img-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--surface2);
}
.rv-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .4s;
}
.rv-card:hover .rv-card-img-wrap img { transform: scale(1.06); }

.rv-remove {
  position: absolute;
  top: 7px; right: 7px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--muted);
  transition: background .18s, color .18s;
  z-index: 2;
}
.rv-remove:hover { background: var(--accent3); color: #fff; }

.rv-card-body { padding: .75rem .9rem .9rem; }
.rv-card-sub {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .25rem;
}
.rv-card-name {
  font-family: 'Playfair Display', serif;
  font-size: .88rem; font-weight: 700;
  color: var(--text); line-height: 1.3;
  margin-bottom: .4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rv-price-row { display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap; }
.rv-price { font-size: .95rem; font-weight: 700; color: var(--accent); }
.rv-old { font-size: .75rem; color: var(--muted); text-decoration: line-through; }
.rv-disc {
  font-size: .6rem; font-weight: 700; color: var(--accent3);
  background: rgba(200,87,107,.1);
  padding: 1px 6px; border-radius: 10px;
}

.ob-section {
  padding: 0rem 0;
  overflow: hidden;
  position: relative;
}

.ob-viewport {
  overflow: hidden;
  position: relative;
  cursor: grab; width: 100%;  
}
.ob-viewport:active { cursor: grabbing; }

/* edge fades */
.ob-viewport::before,
.ob-viewport::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 3;
  pointer-events: none;
}
.ob-viewport::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.ob-viewport::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.ob-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  transition: transform .52s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  padding: 6px 2px 10px;
}

/* Each banner = 50vh tall, ~30vw wide so 3-4 fit */
.ob-banner {
  flex: 0 0 50vw; 
  height: 100vh;
  min-height: 260px;
  max-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--surface2);
  border: 1px solid var(--border);
  transition: transform .22s, box-shadow .22s;
  cursor: pointer;
}
.ob-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow);
}

/* ── Image placeholder ── */
.ob-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Dots ── */
.ob-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: .9rem;
}
.ob-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(124,63,142,.2);
  border: none; padding: 0; cursor: pointer;
  transition: background .2s, width .2s, border-radius .2s;
}
.ob-dot.active {
  width: 20px;
  border-radius: 4px;
  background: var(--accent);
}

/* ── Arrow buttons ── */
.ob-arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: .75rem;
}
.ob-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s, border-color .18s;
}
.ob-arrow:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.home-banner{
    width: min(1400px,95%);
    margin: 5rem auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    background: white;
}

.home-banner a{
    display:block;
}

.home-banner img{
    width:100%;
    display:block;
    aspect-ratio: 16 / 6;
    object-fit:contain;
    transition:.5s ease;
}


/* ── 09. Sections ── */
.section { max-width: 1280px; margin: 0 auto; padding: 5rem 2.5rem; }
.section-eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent2); margin-bottom: .5rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -.01em; margin-bottom: 3rem; line-height: 1.15; color: var(--text); }
.title-muted { color: var(--muted); }

/* ── 10. Category Cards ── */
.cats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.cat-card {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); cursor: pointer; transition: all .4s cubic-bezier(.34,1.1,.64,1);
  text-decoration: none; display: block; aspect-ratio: 3/4;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow); }
.cat-img-wrap { position: absolute; inset: 0; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.06); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,.75) 0%, rgba(26,15,10,.2) 50%, transparent 100%);
}
.cat-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  z-index: 1; color: #fff;
}
.cat-label h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: .25rem; }
.cat-label p { font-size: .8rem; opacity: .8; margin-bottom: .75rem; }
.cat-link { font-size: .8rem; font-weight: 600; letter-spacing: .06em; opacity: 0; transform: translateY(6px); display: inline-block; transition: all .3s; color: var(--accent2); }
.cat-card:hover .cat-link { opacity: 1; transform: translateY(0); }

/* ── 11. Features ── */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.feat-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; transition: all .3s; }
.feat-card:hover { border-color: rgba(124,63,142,.25); transform: translateY(-3px); box-shadow: 0 10px 30px var(--shadow); }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(124,63,142,.08); border: 1px solid rgba(124,63,142,.15); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 1rem; }
.feat-title { font-family: 'Playfair Display', serif; font-weight: 700; margin-bottom: .4rem; font-size: 1rem; }
.feat-desc { color: var(--muted); font-size: .83rem; line-height: 1.65; }

/* ── 12. Product Cards ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 1.25rem; }

.prod-card {
  border-radius: 16px; overflow: hidden; transition: all .3s; position: relative;
}
.prod-card:hover { transform: translateY(-7px);   }

.prod-img-wrap {
  height: 300px; display: flex; align-items: center; justify-content: center;
 position: relative; overflow: hidden;
}
.prod-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.04); }

.prod-badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 2;
  background: var(--accent3); color: #fff;
  font-size: .68rem; font-weight: 700; padding: .25rem .6rem;
  border-radius: 20px; letter-spacing: .04em;
}
.prod-badge.new  { background: var(--accent); }
.prod-badge.hot  { background: var(--accent2); color: #1a0f0a; }


.prod-body { padding: 1rem 1.1rem 1.1rem; }
.prod-brand { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .25rem; }
.prod-name { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 600; margin-bottom: .5rem; line-height: 1.35; }
.prod-rating { display: flex; align-items: center; gap: .35rem; margin-bottom: .75rem; }
.stars { color: var(--accent2); font-size: .8rem; letter-spacing: 1px; }
.prod-rating span { color: var(--muted); font-size: .74rem; }
.prod-price { display: flex; align-items: center; gap: .5rem; margin-bottom: .85rem; flex-wrap: wrap; }
.price-now { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.price-old { font-size: .82rem; color: var(--muted); text-decoration: line-through; }
.price-off { font-size: .73rem; color: #2e9e4e; font-weight: 600; background: rgba(46,158,78,.1); padding: .15rem .4rem; border-radius: 4px; }
.prod-actions{
  display:flex;
  gap:5px;
  margin-top:14px;
}

.prod-wish{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:3px;
  padding:5px 5px;
  border:1px solid #ddd;
  border-radius:10px;
  background:#fff;
  cursor:pointer;
  transition:.3s;
}

.prod-wish svg{
  width:18px;
  height:18px;
}

.prod-wish.active{
  background:#ffebee;
  color:#e53935;
  border-color:#e53935;
}
.btn-cart {
 background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); border-radius: 100px; padding: .55rem; font-size: .8rem;
  font-weight: 600; cursor: pointer; transition: all .2s; font-family: 'Jost', sans-serif;
}
.btn-cart:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-buy, .btn-view {
  background: var(--accent); color: #fff; border: none; border-radius: 100px; padding: .55rem 1.1rem;
  font-size: .8rem; font-weight: 600; cursor: pointer; transition: all .2s;
  font-family: 'Jost', sans-serif; text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-buy:hover, .btn-view:hover { opacity: .85; }

/* ── 13. Deals Banner ── */
.deals-banner {
  border-radius: 24px; overflow: hidden; position: relative;
  min-height: 500px; display: flex; align-items: center;
}
.deals-bg-img { position: absolute; inset: 0; }
.deals-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.deals-bg-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,15,10,.85) 0%, rgba(26,15,10,.6) 60%, transparent 100%); }
.deals-content { position: relative; z-index: 1; padding: 3rem; flex: 1; color: #fff; }
.deals-tag { display: inline-block; background: var(--accent3); color: #fff; font-size: .7rem; font-weight: 700; padding: .3rem .75rem; border-radius: 20px; letter-spacing: .06em; margin-bottom: 1rem; }
.deals-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -.01em; margin-bottom: .75rem; line-height: 1.1; }
.deals-h2 span { color: var(--accent2); font-style: italic; }
.deals-sub { font-size: .95rem; line-height: 1.6; margin-bottom: 1.5rem; opacity: .85; max-width: 400px; }
.timer { display: flex; gap: .75rem; }
.timer-block { background: rgba(255,255,255,.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); border-radius: 10px; padding: .75rem 1rem; text-align: center; min-width: 64px; }
.timer-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--accent2); display: block; line-height: 1; }
.timer-lbl { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
/* ── 14. Brands Grid ── */
@keyframes brandFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  cursor: pointer;
  animation: brandFloat 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: transform .25s;
}

.brand-logo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all .3s ease;
}

.brand-name {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--muted);
  transition: color .25s;
  text-align: center;
}

/* Hover — stop float, scale up, show color */
.brand-card:hover {
  animation-play-state: paused;
}

.brand-card:hover .brand-logo-wrap {
  border-color: var(--accent);
  box-shadow: 0 8px 28px var(--shadow);
  transform: scale(1.08);
  background: var(--surface);
}


.brand-card:hover .brand-name {
  color: var(--accent);
}
/* Text fallback for brands without good logo URLs */
.brand-logo-wrap img[alt="Forest Essentials"] {
  display: none;
}

.brand-card:has(img[alt="Forest Essentials"]) .brand-logo-wrap::after {
  content: "Forest\AEssentials";
  white-space: pre;
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.4;
  letter-spacing: .05em;
}
/* ── 15. Reviews ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; transition: all .3s; }
.review-card:hover { border-color: rgba(124,63,142,.2); transform: translateY(-3px); box-shadow: 0 10px 30px var(--shadow); }
.review-stars { color: var(--accent2); font-size: .95rem; margin-bottom: .75rem; }
.review-text { color: var(--muted); font-size: .875rem; line-height: 1.75; margin-bottom: 1.1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: grid; place-items: center; font-family: 'Playfair Display', serif; font-size: .9rem; font-weight: 700; color: #fff; }
.review-name { font-size: .875rem; font-weight: 600; }
.review-meta { font-size: .75rem; color: var(--muted); }

/* ── 16. Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(30px); transition: all .7s cubic-bezier(.34,.8,.64,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ── 17. Products Page ── */
.page-layout {  display: grid; grid-template-columns: 260px 1fr; gap: 2rem; max-width: 1280px; margin: 0 auto; padding: 2rem; }

.filter-sidebar {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.5rem; height: fit-content; position: sticky; top: 90px;
}
.filter-sidebar h3 { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; margin-bottom: 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.filter-reset { font-size: .75rem; color: var(--accent); cursor: pointer; font-weight: 500; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: .75rem; font-weight: 600; }
.filter-option { display: flex; align-items: center; gap: .65rem; padding: .4rem 0; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--accent); width: 14px; height: 14px; }
.filter-option span { font-size: .875rem; }
.range-row { display: flex; justify-content: space-between; margin-bottom: .5rem; }
.range-row span { font-size: .8rem; color: var(--muted); }
input[type=range] { width: 100%; accent-color: var(--accent); }

.products-topbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.products-count { font-size: .875rem; color: var(--muted); }
.products-count strong { color: var(--text); font-weight: 600; }
.sort-select { background: var(--surface); border: 1px solid var(--border); color: var(--text); border-radius: 100px; padding: .45rem 1rem; font-size: .875rem; cursor: pointer; font-family: 'Jost', sans-serif; outline: none; }
.filter-tabs { display: flex; gap: .4rem; flex-wrap: wrap; }
.ftab { padding: .4rem .9rem; border-radius: 100px; border: 1px solid var(--border); font-size: .8rem; cursor: pointer; transition: all .2s; color: var(--muted); background: var(--surface); font-family: 'Jost', sans-serif; }
.ftab.active, .ftab:hover { border-color: var(--accent); color: var(--accent); background: rgba(124,63,142,.07); }

.no-results { text-align: center; padding: 4rem; color: var(--muted); }
.no-results div { font-size: 3rem; margin-bottom: 1rem; }

.filter-toggle-btn { display: none; align-items: center; gap: .5rem; padding: .45rem .9rem; border-radius: 100px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: .85rem; font-weight: 600; cursor: pointer; font-family: 'Jost', sans-serif; transition: all .2s; }
.filter-toggle-btn:hover, .filter-toggle-btn.active { border-color: var(--accent); color: var(--accent); }

.filter-overlay { display: none; position: fixed; inset: 0; z-index: 900; background: rgba(26,15,10,.55); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.filter-overlay.open { opacity: 1; pointer-events: auto; }

.filter-close-btn { display: none; background: var(--surface2); border: 1px solid var(--border); color: var(--muted); border-radius: 6px; width: 26px; height: 26px; cursor: pointer; font-size: .8rem; line-height: 1; transition: all .2s; }
.filter-close-btn:hover { border-color: var(--red); color: var(--red); }

/* ── 18. Product Detail ── */
.detail-wrap { max-width: 1280px; margin: 0 auto; padding: 2.5rem 2.5rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--muted); margin-bottom: 2rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: .4; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.prod-gallery { position: sticky; top: 90px; }
.main-img { height: 440px;  display: flex; align-items: center; justify-content: center; font-size: 7rem; margin-bottom: 1rem; position: relative; overflow: hidden; }
.main-img img{object-fit: contain;}
.main-img-shine { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(181,134,13,.04), transparent); pointer-events: none; }
.thumb-row { display: flex; gap: .75rem; }
.thumb { width: 72px; height: 72px; border-radius: 10px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; cursor: pointer; transition: all .2s; overflow: hidden; }
.thumb.active, .thumb:hover { border-color: var(--accent); }

.prod-info-brand { font-size: .75rem; color: var(--accent2); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: .5rem; }
.prod-info-name { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -.01em; line-height: 1.2; margin-bottom: .75rem; }
.prod-info-rating { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.rating-stars { color: var(--accent2); font-size: 1rem; }
.rating-num { font-weight: 600; }
.rating-count { color: var(--muted); font-size: .875rem; }
.in-stock { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: #2e9e4e; font-weight: 600; }
.in-stock::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #2e9e4e; animation: pulseDot 2s infinite; }

.price-section { margin: 1.25rem 0 1.5rem; padding: 1.25rem; background: var(--surface2); border-radius: 14px; border: 1px solid var(--border); }
.price-main { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--accent); }
.price-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .25rem; }
.price-old2 { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.price-off2 { background: rgba(46,158,78,.1); color: #2e9e4e; font-size: .8rem; font-weight: 700; padding: .2rem .5rem; border-radius: 6px; }
.price-note { font-size: .8rem; color: var(--muted); }

.variant-section { margin-bottom: 1.5rem; }
.variant-label { font-size: .75rem; color: var(--muted); margin-bottom: .6rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.variant-chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.variant-chip { padding: .35rem .85rem; border-radius: 100px; border: 1px solid var(--border); font-size: .82rem; cursor: pointer; transition: all .2s; font-family: 'Jost', sans-serif; }
.variant-chip.active, .variant-chip:hover { border-color: var(--accent); color: var(--accent); background: rgba(124,63,142,.07); }

.cta-row { display: flex; gap: .75rem; margin-bottom: 1.5rem; }
.btn-add-cart { flex: 1; background: var(--surface2); border: 1.5px solid var(--border); color: var(--text); border-radius: 100px; padding: .9rem; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .25s; font-family: 'Jost', sans-serif; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.btn-add-cart:hover { background: var(--surface); border-color: var(--accent); color: var(--accent); }
.btn-add-cart.in-cart { background: rgba(124,63,142,.08); border-color: var(--accent); color: var(--accent); }
.btn-buy-now { flex: 1; background: var(--accent); color: #fff; border: none; border-radius: 100px; padding: .9rem; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .25s; font-family: 'Jost', sans-serif; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.btn-buy-now:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(124,63,142,.3); }

.wish-row { display: flex; align-items: center; gap: .5rem; cursor: pointer; color: var(--muted); font-size: .875rem; transition: color .2s; border: none; background: none; font-family: 'Jost', sans-serif; margin-bottom: 1.5rem; }
.wish-row:hover, .wish-row.active { color: var(--red); }
.wish-row svg { width: 16px; height: 16px; }
.wish-row.active svg { fill: currentColor; }

.info-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.info-pill { background: var(--surface2); border: 1px solid var(--border); border-radius: 100px; padding: .4rem .85rem; font-size: .78rem; display: flex; align-items: center; gap: .35rem; font-family: 'Jost', sans-serif; }

.spec-table { width: 100%; border-collapse: collapse; margin-top: .75rem; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: .65rem .5rem; font-size: .85rem; }
.spec-table td:first-child { color: var(--muted); width: 40%; }
.spec-table td:last-child { font-weight: 500; }

.tabs-nav { display: flex; gap: 0; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.tab-btn { padding: .65rem 1.25rem; border: none; background: none; color: var(--muted); font-size: .875rem; font-weight: 500; cursor: pointer; border-bottom: 2px solid transparent; transition: all .2s; font-family: 'Jost', sans-serif; margin-bottom: -1px; }
.tab-btn.active { color: var(--accent); border-color: var(--accent); }
.tab-content { display: none; animation: fadeIn .25s ease; }
.tab-content.active { display: block; }

/* ── 19. Checkout ── */
.checkout-wrap { max-width: 1100px; margin: 0 auto; padding: 2.5rem 2.5rem; }
.checkout-wrap h1 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }

.steps { display: flex; gap: .5rem; align-items: center; margin-bottom: 2rem; }
.step { display: flex; align-items: center; gap: .5rem; font-size: .8rem; }
.step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); display: grid; place-items: center; font-size: .7rem; font-weight: 700; transition: all .3s; }
.step.active .step-num { background: var(--accent); color: #fff; border-color: var(--accent); }
.step.done  .step-num  { background: #2e9e4e; color: #fff; border-color: #2e9e4e; }
.step-name { color: var(--muted); }
.step.active .step-name, .step.done .step-name { color: var(--text); }
.step-divider { flex: 1; height: 1px; background: var(--border); }

.form-section { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; margin-bottom: 1.25rem; }
.form-section h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: .7rem .9rem; color: var(--text); font-size: .875rem; font-family: 'Jost', sans-serif; outline: none; transition: border-color .2s; width: 100%; }
.form-group input:focus, .form-group select:focus { border-color: var(--accent); }
.form-group select option { background: var(--surface); }

.pay-methods { display: flex; flex-direction: column; gap: .5rem; }
.pay-option { border: 1px solid var(--border); border-radius: 12px; padding: .85rem 1rem; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: .75rem; }
.pay-option:hover, .pay-option.active { border-color: var(--accent); background: rgba(124,63,142,.04); }
.pay-option input { accent-color: var(--accent); }
.pay-label { font-size: .875rem; font-weight: 500; }
.pay-sub { font-size: .75rem; color: var(--muted); }
.card-fields { margin-top: 1rem; animation: fadeIn .3s ease; }

.order-summary { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; position: sticky; top: 90px; }
.order-summary h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.order-item { display: flex; gap: .75rem; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.oi-emoji { width: 50px; height: 50px; background: var(--surface2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; overflow: hidden; }
.oi-info { flex: 1; min-width: 0; }
.oi-name { font-size: .82rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.oi-qty { font-size: .75rem; color: var(--muted); margin-top: .15rem; }
.oi-price { font-size: .9rem; font-weight: 700; color: var(--accent); white-space: nowrap; }

.summary-row { display: flex; justify-content: space-between; padding: .55rem 0; font-size: .875rem; }
.summary-row.total { border-top: 1px solid var(--border); padding-top: .85rem; margin-top: .25rem; }
.summary-row.total span:first-child { font-family: 'Playfair Display', serif; font-weight: 700; }
.summary-row.total span:last-child { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--accent); }
.summary-row span:first-child { color: var(--muted); }
.savings-row { background: rgba(46,158,78,.07); border: 1px solid rgba(46,158,78,.15); border-radius: 8px; padding: .55rem .75rem; font-size: .8rem; color: #2e9e4e; margin: .5rem 0; display: flex; justify-content: space-between; }

.btn-place { width: 100%; background: var(--accent); color: #fff; border: none; border-radius: 100px; padding: 1rem; font-size: .95rem; font-weight: 600; cursor: pointer; transition: all .25s; font-family: 'Jost', sans-serif; margin-top: 1.25rem; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.btn-place:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(124,63,142,.3); }
.btn-place:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.secure-note { text-align: center; font-size: .75rem; color: var(--muted); margin-top: .75rem; display: flex; align-items: center; justify-content: center; gap: .35rem; }

.empty-cart { text-align: center; padding: 4rem; color: var(--muted); }
.empty-cart div { font-size: 3rem; margin-bottom: 1rem; }

.success-overlay { position: fixed; inset: 0; background: rgba(250,247,244,.97); z-index: 9999; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; padding-bottom: 2rem; }
.success-overlay.show { display: flex; }
.success-icon { font-size: 5rem; animation: bounce .6s ease; }
.success-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--text); }
.success-sub { color: var(--muted); font-size: 1rem; max-width: 400px; line-height: 1.65; }
.success-sub1{display:flex;gap:.75rem;margin-top:1rem;flex-wrap:wrap;justify-content:center}
.success-sub2{display:inline-flex;align-items:center;gap:.4rem;background:var(--surface2);border:1px solid var(--border);border-radius:10px;padding:.7rem 1.5rem;color:var(--text);text-decoration:none;font-weight:600}
.success-sub3{background:var(--accent);color:#000;border:none;border-radius:10px;padding:.7rem 1.5rem;font-weight:700;cursor:pointer;font-size:.95rem;font-family:'Syne',sans-serif}
.sum{margin-left: 6rem;}
/* ── Payment panels ── */
#payment-panel { margin-top: 16px; animation: panelIn .2s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* UPI */
.upi-fields { display: flex; flex-direction: column; gap: 14px; }
.upi-qr-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px; border: 1px dashed var(--border); border-radius: 12px; }
.upi-qr { width: 180px; height: 180px; object-fit: contain; border-radius: 8px; }
.upi-qr-placeholder { width: 180px; height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 2rem; gap: 6px; color: var(--muted); border: 1px solid var(--border); border-radius: 8px; }
.upi-qr-placeholder span { font-size: .75rem; }
.upi-qr-label { font-size: .78rem; color: var(--muted); text-align: center; }
.upi-divider { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .75rem; }
.upi-divider::before, .upi-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.upi-hint { font-size: .72rem; color: var(--muted); }

/* EMI */
.emi-fields { display: flex; flex-direction: column; gap: 16px; }
.emi-options { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.emi-opt { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; font-size: .82rem; transition: border-color .2s, background .2s; }
.emi-opt:has(input:checked) { border-color: var(--accent); background: rgba(124,63,142,.06); }
.emi-note { font-size: .75rem; color: var(--muted); padding: 10px 14px; background: rgba(124,63,142,.05); border-radius: 8px; }

/* COD */
.cod-fields { display: flex; flex-direction: column; gap: 16px; }
.cod-info { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--surface2); border-radius: 12px; }
.cod-icon { font-size: 2rem; line-height: 1; }
.cod-title { font-size: .9rem; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.cod-sub { font-size: .78rem; color: var(--muted); line-height: 1.5; }
.cod-points { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; }
.cod-points li { font-size: .82rem; color: var(--muted); }
/* ── 20. Footer ── */
.nx-footer {
  background: #1a0f0a;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 6rem;
}

.nx-footer-top {
  max-width: 1280px; margin: 0 auto;
  padding: 3rem 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 2.5fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Left two columns */
.nx-footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.nx-footer-col ul { list-style: none; }
.nx-footer-col li { margin-bottom: .55rem; }
.nx-footer-col a {
  color: rgba(255,255,255,.75); font-size: .875rem;
  text-decoration: none; transition: color .2s;
}
.nx-footer-col a:hover { color: var(--accent2); }

/* Right panel */
.nx-footer-right { display: flex; flex-direction: column; gap: 1.8rem; }

.nx-footer-address-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nx-footer-address-col{display: flex;flex-direction: column;gap: 0.5rem;}
.nx-addr-label {
  font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .5rem;
  font-family: 'Jost', sans-serif;
}
.nx-addr-text {
  font-size: .8rem; color: rgba(255,255,255,.6);
  line-height: 1.7; font-family: 'Jost', sans-serif;
}
.nx-addr-phone a {
  color: var(--accent2); text-decoration: none;
}
.nx-addr-phone a:hover { text-decoration: underline; }

.nx-footer-social-newsletter {
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start;
}

/* Socials */
.nx-footer-socials { display: flex; gap: .5rem; margin-top: .5rem; }
.nx-footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  color: rgba(255,255,255,.6); transition: all .2s; text-decoration: none;
}
.nx-footer-socials a:hover { border-color: var(--accent2); color: var(--accent2); }
.nx-footer-socials svg { width: 15px; height: 15px; }

/* Newsletter */
.nx-newsletter {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 0.8rem;
}
.nx-newsletter h5 {
  font-family: 'Playfair Display', serif;
  font-size: .88rem; margin-bottom: .25rem;
  color: rgba(255,255,255,.85);
}
.nx-newsletter p { color: rgba(255,255,255,.4); font-size: .76rem; margin-bottom: .65rem; }
.nx-nl-input { display: flex; gap: .4rem; }
.nx-nl-input input {
  flex: 1; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: .28rem .5rem;
  color: #fff; font-size: .82rem;
  font-family: 'Jost', sans-serif; outline: none; transition: border-color .2s;
}
.nx-nl-input input:focus { border-color: var(--accent2); }
.nx-nl-input input::placeholder { color: rgba(255,255,255,.25); }
.nx-nl-input button {
  background: var(--accent2); color: #1a0f0a;
  border: none; border-radius: 100px;
  padding: .48rem 1rem; font-size: .8rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: opacity .2s; font-family: 'Jost', sans-serif;
}
.nx-nl-input button:hover { opacity: .85; }

/* Bottom bar */
.nx-footer-bottom-wrap {
  background: rgba(0,0,0,.25);
}
.nx-footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.nx-footer-bottom-links {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.nx-footer-bottom-links a {
  color: rgba(255,255,255,.45); font-size: .8rem;
  text-decoration: none; transition: color .2s;
  display: flex; align-items: center; gap: .4rem;
}
.nx-footer-bottom-links a:hover { color: var(--accent2); }
.nx-footer-bottom-links span {
  color: rgba(255,255,255,.3); font-size: .8rem;
  padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.1);
}
.nx-payment-icons { display: flex; gap: .4rem; flex-wrap: wrap; }
.nx-pay-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: .28rem .6rem; border-radius: 5px;
  font-size: .68rem; font-weight: 600;
  color: rgba(255,255,255,.4);
}

/* ── Keyframes ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes float    { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pop      { 0%,100% { transform: scale(1); } 50% { transform: scale(1.4); } }
@keyframes slideIn  { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn   { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes bounce   { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .4; } }



.login-page {
  font-family:'Jost',sans-serif;
  background:var(--bg);
  color:var(--text);
  height:100vh;
  max-height:100vh;
  display:flex;
  overflow:hidden;
}

/* ── LEFT VISUAL PANEL ── */
.login-visual {
  width:48%;
  position:relative;
  overflow:hidden;
  flex-shrink:0;
  height:100vh;
}

.visual-img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:brightness(.82);
  animation:slowZoom 12s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform:scale(1); }
  to   { transform:scale(1.06); }
}

.visual-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(124,63,142,.45) 0%,
    rgba(181,134,13,.2)  50%,
    rgba(200,87,107,.3)  100%
  );
}

.visual-grain {
  position:absolute;
  inset:0;
  opacity:.04;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:128px;
}

.visual-content {
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:2.5rem;
}

.visual-logo {
  font-family:'Playfair Display',serif;
  font-size:1.9rem;
  font-weight:700;
  color:#fff;
  letter-spacing:-.02em;
  text-decoration:none;
}

.visual-logo span { color:var(--accent); }

.visual-quote {
  animation:fadeUp .9s ease both;
}

.visual-quote blockquote {
  font-family:'Playfair Display',serif;
  font-size:1.6rem;
  font-weight:600;
  font-style:italic;
  color:#fff;
  line-height:1.35;
  max-width:360px;
  margin-bottom:1rem;
  text-shadow:0 2px 20px rgba(0,0,0,.25);
}

.visual-quote cite {
  font-family:'Jost',sans-serif;
  font-size:.78rem;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.65);
  font-style:normal;
}

/* floating badges */
.visual-badge {
  position:absolute;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.22);
  border-radius:12px;
  padding:.6rem 1rem;
  color:#fff;
  font-size:.75rem;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:.5rem;
  animation:floatBadge 5s ease-in-out infinite;
}

.visual-badge .badge-icon { font-size:1.1rem; }
.visual-badge strong { display:block; font-size:.88rem; font-weight:700; }

.badge-1 { top:26%; right:1.5rem; animation-delay:0s; }
.badge-2 { top:50%; right:1.5rem; animation-delay:1.8s; }
.badge-3 { top:72%; right:1.5rem; animation-delay:.9s; }

@keyframes floatBadge {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-7px); }
}

/* ── RIGHT FORM PANEL ── */
.login-form-panel {
  flex:1;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:1.25rem 2.5rem;
  overflow-y:auto;
  height:100vh;
  position:relative;
}

.login-form-panel::before {
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(124,63,142,.06) 0%,transparent 70%);
  top:-100px;
  right:-100px;
  pointer-events:none;
}

.login-form-panel::after {
  content:'';
  position:absolute;
  width:250px;
  height:250px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(200,87,107,.05) 0%,transparent 70%);
  bottom:-60px;
  left:-60px;
  pointer-events:none;
}

.login-box {
  width:100%;
  max-width:400px;
  padding:1.25rem 0;
  animation:fadeUp .7s ease both;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── TABS ── */
.auth-tabs {
  display:flex;
  background:var(--surface2);
  border-radius:100px;
  padding:4px;
  margin-bottom:1.1rem;
  border:1px solid var(--border);
}

.auth-tab {
  flex:1;
  padding:.55rem 1rem;
  border:none;
  border-radius:100px;
  background:transparent;
  font-family:'Jost',sans-serif;
  font-size:.85rem;
  font-weight:500;
  color:var(--muted);
  cursor:pointer;
  transition:all .25s;
}

.auth-tab.active {
  background:var(--surface);
  color:var(--accent);
  font-weight:600;
  box-shadow:0 2px 12px var(--shadow);
}

/* ── HEADING ── */
.login-heading {
  margin-bottom:1rem;
}

.login-heading h1 {
  font-family:'Playfair Display',serif;
  font-size:1.7rem;
  font-weight:700;
  color:var(--text);
  line-height:1.2;
  margin-bottom:.25rem;
}

.login-heading h1 em {
  font-style:italic;
  color:var(--accent);
}

.login-heading p {
  font-size:.84rem;
  color:var(--muted);
}

/* ── SOCIAL ── */
.social-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.65rem;
  margin-bottom:1rem;
}

.social-btn {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.62rem 1rem;
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--surface);
  font-family:'Jost',sans-serif;
  font-size:.82rem;
  font-weight:500;
  color:var(--text);
  cursor:pointer;
  transition:all .22s;
  text-decoration:none;
}

.social-btn:hover {
  border-color:var(--accent);
  background:var(--surface2);
  transform:translateY(-1px);
  box-shadow:0 4px 14px var(--shadow);
}

.social-btn svg { width:16px; height:16px; flex-shrink:0; }

/* ── DIVIDER ── */
.or-divider {
  display:flex;
  align-items:center;
  gap:.65rem;
  margin-bottom:1rem;
  font-size:.74rem;
  color:var(--muted);
  font-weight:500;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.or-divider::before,
.or-divider::after {
  content:'';
  flex:1;
  height:1px;
  background:var(--border);
}

/* ── FIELDS ── */
.field-group { margin-bottom:.75rem; }

.field-label {
  display:block;
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:.38rem;
}

.field-wrap { position:relative; }

.field-input {
  width:100%;
  padding:.7rem 1rem .7rem 2.6rem;
  border:1.5px solid var(--border);
  border-radius:10px;
  background:var(--surface);
  font-family:'Jost',sans-serif;
  font-size:.88rem;
  color:var(--text);
  outline:none;
  transition:border-color .22s, box-shadow .22s;
}

.field-input:focus {
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(124,63,142,.1);
}

.field-input::placeholder { color:rgba(122,106,94,.4); }

.field-icon {
  position:absolute;
  left:.85rem;
  top:50%;
  transform:translateY(-50%);
  color:var(--muted);
  width:15px;
  height:15px;
  pointer-events:none;
}

.field-eye {
  position:absolute;
  right:.85rem;
  top:50%;
  transform:translateY(-50%);
  background:none;
  border:none;
  cursor:pointer;
  color:var(--muted);
  padding:0;
  display:flex;
}

.field-eye:hover { color:var(--accent); }

.field-row-2 {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.65rem;
}

/* ── REMEMBER / FORGOT ── */
.remember-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:.9rem;
  margin-top:.1rem;
}

.check-label {
  display:flex;
  align-items:center;
  gap:.45rem;
  font-size:.82rem;
  color:var(--muted);
  cursor:pointer;
  user-select:none;
}

.check-label input[type="checkbox"] {
  accent-color:var(--accent);
  width:14px;
  height:14px;
}

.forgot-link {
  font-size:.82rem;
  color:var(--accent);
  text-decoration:none;
  font-weight:500;
}

.forgot-link:hover { text-decoration:underline; }

/* ── SUBMIT BTN ── */
.btn-submit {
  width:100%;
  padding:.82rem 1.5rem;
  background:var(--accent);
  color:#fff;
  border:none;
  border-radius:10px;
  font-family:'Jost',sans-serif;
  font-size:.9rem;
  font-weight:600;
  cursor:pointer;
  transition:all .25s;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  letter-spacing:.02em;
  position:relative;
  overflow:hidden;
}

.btn-submit::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.12),transparent);
}

.btn-submit:hover {
  background:#6b3279;
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(124,63,142,.35);
}

.btn-submit:active { transform:translateY(0); }
.btn-submit svg { width:15px; height:15px; }

/* ── SWITCH TEXT ── */
.switch-text {
  text-align:center;
  margin-top:.85rem;
  font-size:.82rem;
  color:var(--muted);
}

.switch-text a {
  color:var(--accent);
  font-weight:600;
  text-decoration:none;
}

.switch-text a:hover { text-decoration:underline; }

/* ── TRUST STRIP ── */
.trust-strip {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.25rem;
  margin-top:.9rem;
  padding-top:.85rem;
  border-top:1px solid var(--border);
}

.trust-item {
  display:flex;
  align-items:center;
  gap:.35rem;
  font-size:.72rem;
  color:var(--muted);
  font-weight:500;
}

.trust-item svg { width:12px; height:12px; color:var(--accent2); }

/* ── PANELS ── */
.auth-panel { display:none; }
.auth-panel.active {
  display:block;
  animation:fadeUp .4s ease both;
}

/* ── PASSWORD STRENGTH ── */
.pw-strength-bar {
  height:3px;
  border-radius:2px;
  background:var(--surface2);
  margin-top:.35rem;
  overflow:hidden;
}

.pw-strength-fill {
  height:100%;
  border-radius:2px;
  width:0%;
  transition:width .3s, background .3s;
}

/* ── TOAST ── */
.ck-toast {
  position:fixed;
  bottom:2rem;
  left:50%;
  transform:translateX(-50%) translateY(20px);
  background:var(--text);
  color:#fff;
  padding:.7rem 1.4rem;
  border-radius:100px;
  font-size:.82rem;
  font-weight:500;
  opacity:0;
  transition:all .3s;
  z-index:9999;
  white-space:nowrap;
  pointer-events:none;
}

.ck-toast.show {
  opacity:1;
  transform:translateX(-50%) translateY(0);
}





/* ── SECTION HEADER ── */
.sec-header{text-align:center;margin-bottom:2.5rem}
.sec-eyebrow{font-family:'Jost',sans-serif;font-size:.7rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--accent2);margin-bottom:.6rem}
.sec-title{font-family:'Playfair Display',serif;font-size:clamp(1.8rem,3.5vw,2.6rem);font-weight:700;color:var(--text);line-height:1.18}
.sec-title em{font-style:italic;color:var(--accent)}

/* ════════════════════════════════
   BENTO GRID – SUMMER EDIT
════════════════════════════════ */
.summer-section{padding:4rem 0 5rem}
.container{max-width:1200px;margin:0 auto;padding:0 clamp(1rem,4vw,2.5rem)}

.bento{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:450px 450px 470px;
  gap:14px;
}



/* Row 1 */
.bento-item:nth-child(1){ grid-column:1/4;  grid-row:1/3; }  /* tall 3 cols × 2 rows */
.bento-item:nth-child(2){ grid-column:4/10; grid-row:1/2; }  /* wide 6 cols */
.bento-item:nth-child(3){ grid-column:10/13;grid-row:1/2; }  /* 3 cols */
/* Row 2 */
.bento-item:nth-child(4){ grid-column:4/7;  grid-row:2/3; }  /* 3 cols */
.bento-item:nth-child(5){ grid-column:7/10; grid-row:2/3; }  /* 3 cols */
.bento-item:nth-child(6){ grid-column:10/13;grid-row:2/3; }  /* 3 cols */
/* Row 3 */
.bento-item:nth-child(7){ grid-column:1/5;  grid-row:3/4; }  /* 4 cols */
.bento-item:nth-child(8){ grid-column:5/9;  grid-row:3/4; }  /* 4 cols */
.bento-item:nth-child(9){ grid-column:9/13; grid-row:3/4; }  /* 4 cols */

/* ── Bento card base ── */
.bento-item{
  position:relative;overflow:hidden;border-radius:18px;
  background:var(--surface);border:1px solid var(--border);
  cursor:pointer;transition:transform .25s,box-shadow .25s;
}
.bento-item:hover{transform:translateY(-3px);box-shadow:0 16px 48px var(--shadow)}

.bento-img{width:100%;height:100%;object-fit:cover;transition:transform .5s;display:block}
.bento-item:hover .bento-img{transform:scale(1.07)}

/* Overlay gradient */
.bento-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(26,15,10,.72) 0%, rgba(26,15,10,.18) 50%, transparent 100%);
}

/* Badge */
.bento-badge{
  position:absolute;top:12px;left:12px;
  font-size:.6rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  padding:3px 10px;border-radius:20px;
  background:rgba(255,255,255,.18);backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.3);color:#fff;
}
.bento-badge.accent{background:var(--accent3);border-color:var(--accent3)}
.bento-badge.gold{background:var(--accent2);border-color:var(--accent2)}

/* Bottom info */
.bento-info{
  position:absolute;bottom:0;left:0;right:0;
  padding:1rem 1.1rem 1.1rem;
}
.bento-sub{font-size:.6rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.7);margin-bottom:.25rem}
.bento-name{font-family:'Playfair Display',serif;font-size:1rem;font-weight:700;color:#fff;line-height:1.25;margin-bottom:.4rem}
.bento-item:nth-child(1) .bento-name,
.bento-item:nth-child(2) .bento-name{font-size:1.2rem}
.bento-price-row{display:flex;align-items:baseline;gap:.45rem}
.bento-price{font-size:.95rem;font-weight:600;color:#fff}
.bento-old{font-size:.75rem;color:rgba(255,255,255,.6);text-decoration:line-through}
.bento-disc{
  font-size:.6rem;font-weight:600;
  background:var(--accent3);color:#fff;
  padding:2px 7px;border-radius:12px;
}

/* Quick-shop pill on hover */
.bento-cta{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) scale(.85);
  background:rgba(255,255,255,.92);backdrop-filter:blur(8px);
  color:var(--accent);font-size:.72rem;font-weight:600;letter-spacing:.08em;
  padding:8px 20px;border-radius:30px;border:none;cursor:pointer;
  opacity:0;transition:opacity .25s,transform .25s;text-transform:uppercase;
  white-space:nowrap;
}
.bento-item:hover .bento-cta{opacity:1;transform:translate(-50%,-50%) scale(1)}



.fp-section { padding: 4rem 0 5rem; }

.fp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.fp-eyebrow {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent2); margin-bottom: .4rem;
}
.fp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; line-height: 1.15; color: var(--text);
}
.fp-title em { font-style: italic; color: var(--accent); }

.fp-view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  transition: color .18s, border-color .18s;
  white-space: nowrap;
}
.fp-view-all:hover { color: var(--accent3); border-color: var(--accent3); }

/* ── Filter pills ── */
.fp-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.fp-pill {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 30px; padding: 6px 16px;
  font-size: .72rem; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all .18s;
}
.fp-pill:hover { border-color: var(--accent); color: var(--accent); }
.fp-pill.active {
  background: var(--accent); border-color: var(--accent);
  color: #fff; font-weight: 600;
}

/* ── Grid ── */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
/* ── Product card ── */
.fp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
  display: flex; flex-direction: column;
  position: relative;
}
.fp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px var(--shadow);
}

/* image */
.fp-img-wrap {
  position: relative; overflow: hidden;
  background: var(--surface2);
  aspect-ratio: 3/4;
}
.fp-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.fp-card:hover .fp-img-wrap img { transform: scale(1.07); }

/* badge */
.fp-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 20px;
  color: #fff;
}
.fp-badge.hot  { background: var(--accent3); }
.fp-badge.new  { background: var(--accent2); }
.fp-badge.sale { background: var(--accent); }

/* wishlist heart */
.fp-wish {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.88);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, transform .18s;
  z-index: 2;
}
.fp-wish:hover { background: #fff; transform: scale(1.12); }
.fp-wish svg { width: 16px; height: 16px; stroke: var(--accent3); transition: fill .18s; }
.fp-wish.active svg { fill: var(--accent3); }

/* quick shop on hover */
.fp-quick {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(26,15,10,.82); backdrop-filter: blur(4px);
  color: #fff; font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 10px; text-align: center; border: none; cursor: pointer;
  opacity: 0; transform: translateY(6px);
  transition: opacity .22s, transform .22s;
}
.fp-card:hover .fp-quick { opacity: 1; transform: translateY(0); }

/* body */
.fp-body { padding: .85rem 1rem 1rem; flex: 1; display: flex; flex-direction: column; gap: .25rem; }
.fp-brand { font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.fp-name {
  font-family: 'Playfair Display', serif;
  font-size: .92rem; font-weight: 700;
  color: var(--text); line-height: 1.3;
  display: -webkit-box; 
  -webkit-box-orient: vertical; overflow: hidden;
}
.fp-rating {
  display: flex; align-items: center; gap: 5px;
  font-size: .68rem; color: var(--muted); margin-top: 2px;
}
.fp-stars { color: var(--accent2); font-size: .72rem; letter-spacing: 1px; }
.fp-price-row { display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap; margin-top: auto; padding-top: .5rem; }
.fp-price { font-size: 1rem; font-weight: 700; color: var(--accent); }
.fp-old   { font-size: .78rem; color: var(--muted); text-decoration: line-through; }
.fp-disc  {
  font-size: .62rem; font-weight: 700; color: var(--accent3);
  background: rgba(200,87,107,.1); border-radius: 10px; padding: 1px 6px;
}

/* ── hidden class for filter ── */
.fp-card.fp-hidden { display: none; }



/* ══ HERO ══ */
.tc-hero { position: relative; background: var(--text); padding: clamp(72px,12vw,140px) clamp(24px,6vw,96px) clamp(56px,8vw,100px); overflow: hidden; }
.tc-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 75% at 85% 40%, rgba(124,63,142,.14) 0%, transparent 58%), radial-gradient(ellipse 40% 55% at 5% 85%, rgba(124,63,142,.07) 0%, transparent 55%); pointer-events: none; }
.tc-hero__deco { position: absolute; right: clamp(20px,6vw,80px); top: 50%; transform: translateY(-50%); font-family: var(--ff-display); font-size: clamp(120px,22vw,280px); font-weight: 700; font-style: italic; color: rgba(250,247,244,.03); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -.04em; }
.tc-hero__eyebrow { font-size: .57rem; letter-spacing: .32em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.tc-hero__title { font-family: var(--ff-display); font-size: clamp(2.4rem,6vw,5rem); font-weight: 400; font-style: italic; color: var(--bg); line-height: 1.05; letter-spacing: -.02em; max-width: 760px; }
.tc-hero__title em { font-style: normal; color: var(--accent); }
.tc-hero__sub { margin-top: 20px; font-size: .8rem; font-weight: 300; color: rgba(250,247,244,.45); letter-spacing: .04em; max-width: 520px; line-height: 1.7; }
.tc-hero__meta { margin-top: 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.tc-hero__date { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,247,244,.3); }
.tc-hero__date span { color: rgba(250,247,244,.55); }
.tc-hero__back { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,247,244,.35); text-decoration: none; border-bottom: 1px solid rgba(250,247,244,.15); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.tc-hero__back:hover { color: var(--accent); border-color: var(--accent); }

/* ══ LAYOUT ══ */
.tc-layout { max-width: 1100px; margin: 0 auto; padding: clamp(48px,8vw,96px) clamp(24px,6vw,80px); display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; }

/* Sidebar */
.tc-toc { position: sticky; top: 32px; }
.tc-toc__label { font-size: 1rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.tc-toc__list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.tc-toc__item a { display: flex; align-items: center; gap: 10px; font-size: 1rem; letter-spacing: .06em; color: var(--muted); text-decoration: none; padding: 7px 10px; border-radius: 6px; transition: background .2s, color .2s; line-height: 1.4; }
.tc-toc__item a::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--surface2); flex-shrink: 0; transition: background .2s, transform .2s; }
.tc-toc__item a:hover, .tc-toc__item a.active { background: rgba(124,63,142,.06); color: var(--text); }
.tc-toc__item a:hover::before, .tc-toc__item a.active::before { background: var(--accent); transform: scale(1.4); }

/* Content */
.tc-content { min-width: 0; }
.tc-section { padding-bottom: clamp(40px,6vw,64px); border-bottom: 1px solid var(--border); margin-bottom: clamp(40px,6vw,64px); opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.tc-section.visible { opacity: 1; transform: translateY(0); }
.tc-section:last-child { border-bottom: none; margin-bottom: 0; }
.tc-section__header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 24px; }
.tc-section__num { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 700; font-style: italic; color: var(--surface2); line-height: 1; flex-shrink: 0; letter-spacing: -.03em; min-width: 48px; }
.tc-section__title { font-family: var(--ff-display); font-size: clamp(1.15rem,2.2vw,1.55rem); font-weight: 400; color: var(--text); line-height: 1.2; padding-top: 6px; }
.tc-section p { font-size: 1.2rem; line-height: 1.85; color: var(--); margin-bottom: 16px; font-weight: 300; }
.tc-section p:last-child { margin-bottom: 0; }
.tc-section ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.tc-section ul li { font-size: 1.2rem; line-height: 1.7; color: var(--muted); font-weight: 300; padding-left: 20px; position: relative; }
.tc-section ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 5px; height: 1px; background: var(--accent); }
.tc-section ul li strong { color: var(--text); font-weight: 400; }

/* Note box */
.tc-note { border-left: 2px solid var(--accent); background: rgba(124,63,142,.04); border-radius: 0 10px 10px 0; padding: 18px 22px; margin-top: 18px; }
.tc-note p { font-size: .82rem !important; margin-bottom: 0 !important; color: var(--muted); }
.tc-note strong { color: var(--text); font-weight: 400; }

/* Jurisdiction banner */
.tc-banner { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 24px 28px; margin-top: 20px; display: flex; align-items: flex-start; gap: 16px; }
.tc-banner__icon { width: 36px; height: 36px; background: rgba(124,63,142,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tc-banner__icon svg { width: 16px; height: 16px; color: var(--accent); }
.tc-banner__text p { font-size: .82rem; line-height: 1.7; color: var(--muted); font-weight: 300; }
.tc-banner__text strong { color: var(--text); font-weight: 400; display: block; margin-bottom: 4px; font-size: .78rem; letter-spacing: .06em; }

/* Contact box */
.tc-box { border-left: 2px solid var(--accent); background: rgba(124,63,142,.04); border-radius: 0 10px 10px 0; padding: 20px 24px; margin-top: 20px; }
.tc-box p { margin-bottom: 6px; font-size: .82rem; color: var(--muted); font-weight: 300; }
.tc-box p:last-child { margin-bottom: 0; }
.tc-box strong { color: var(--text); font-weight: 400; }

/* CTA */
.tc-contact { background: var(--text); border-radius: 20px; padding: clamp(40px,6vw,64px) clamp(32px,5vw,56px); text-align: center; position: relative; overflow: hidden; margin-top: 24px; }
.tc-contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 30%, rgba(124,63,142,.12) 0%, transparent 60%); pointer-events: none; }
.tc-contact__eyebrow { font-size: .55rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.tc-contact__title { font-family: var(--ff-display); font-size: clamp(1.4rem,3vw,2.2rem); font-weight: 400; font-style: italic; color: var(--bg); margin-bottom: 10px; line-height: 1.1; }
.tc-contact__sub { font-size: .78rem; font-weight: 300; color: rgba(250,247,244,.45); margin-bottom: 32px; line-height: 1.7; }
.tc-contact__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.tc-contact__btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-family: var(--ff-body); font-size: .67rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s; cursor: pointer; border: none; }
.tc-contact__btn--primary { background: var(--accent); color: var(--bg); }
.tc-contact__btn--outline { background: transparent; color: var(--bg); border: 1.5px solid rgba(250,247,244,.25); }
.tc-contact__btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px var(--shadow); }
.tc-contact__btn--outline:hover { border-color: rgba(250,247,244,.55); }


/* ══ PP HERO ══ */
.pp-hero { position: relative; background: var(--text); padding: clamp(72px,12vw,140px) clamp(24px,6vw,96px) clamp(56px,8vw,100px); overflow: hidden; }
.pp-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(124,63,142,.13) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(124,63,142,.07) 0%, transparent 55%); pointer-events: none; }
.pp-hero__deco { position: absolute; right: clamp(20px,6vw,80px); top: 50%; transform: translateY(-50%); font-family: var(--ff-display); font-size: clamp(120px,22vw,280px); font-weight: 700; font-style: italic; color: rgba(250,247,244,.03); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -.04em; }
.pp-hero__eyebrow { font-size: .57rem; letter-spacing: .32em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.pp-hero__title { font-family: var(--ff-display); font-size: clamp(2.4rem,6vw,5rem); font-weight: 400; font-style: italic; color: var(--bg); line-height: 1.05; letter-spacing: -.02em; max-width: 680px; }
.pp-hero__title em { font-style: normal; color: var(--accent); }
.pp-hero__sub { margin-top: 20px; font-size: .8rem; font-weight: 300; color: rgba(250,247,244,.45); letter-spacing: .04em; max-width: 480px; line-height: 1.7; }
.pp-hero__meta { margin-top: 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.pp-hero__date { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,247,244,.3); }
.pp-hero__date span { color: rgba(250,247,244,.55); }
.pp-hero__back { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,247,244,.35); text-decoration: none; border-bottom: 1px solid rgba(250,247,244,.15); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.pp-hero__back:hover { color: var(--accent); border-color: var(--accent); }

.pp-layout { max-width: 1100px; margin: 0 auto; padding: clamp(48px,8vw,96px) clamp(24px,6vw,80px); display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; }
.pp-toc { position: sticky; top: 32px; }
.pp-toc__label { font-size: 1rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.pp-toc__list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.pp-toc__item a { display: flex; align-items: center; gap: 10px; font-size: 1rem; letter-spacing: .06em; color: var(--muted); text-decoration: none; padding: 7px 10px; border-radius: 6px; transition: background .2s, color .2s; line-height: 1.4; }
.pp-toc__item a::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--surface2); flex-shrink: 0; transition: background .2s, transform .2s; }
.pp-toc__item a:hover, .pp-toc__item a.active { background: rgba(124,63,142,.06); color: var(--text); }
.pp-toc__item a:hover::before, .pp-toc__item a.active::before { background: var(--accent); transform: scale(1.4); }

.pp-content { min-width: 0; }
.pp-section { padding-bottom: clamp(40px,6vw,64px); border-bottom: 1px solid var(--border); margin-bottom: clamp(40px,6vw,64px); opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.pp-section.visible { opacity: 1; transform: translateY(0); }
.pp-section:last-child { border-bottom: none; margin-bottom: 0; }
.pp-section__header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 24px; }
.pp-section__num { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 700; font-style: italic; color: var(--surface2); line-height: 1; flex-shrink: 0; letter-spacing: -.03em; min-width: 48px; }
.pp-section__title { font-family: var(--ff-display); font-size: clamp(1.15rem,2.2vw,1.55rem); font-weight: 400; color: var(--text); line-height: 1.2; padding-top: 6px; }
.pp-section p { font-size: 1.2rem; line-height: 1.85; color: var(--muted); margin-bottom: 16px; font-weight: 300; }
.pp-section p:last-child { margin-bottom: 0; }
.pp-section ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.pp-section ul li { font-size: 1.2rem; line-height: 1.7; color: var(--muted); font-weight: 300; padding-left: 20px; position: relative; }
.pp-section ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 5px; height: 1px; background: var(--accent); }
.pp-section ul li strong { color: var(--text); font-weight: 400; }

.pp-box { border-left: 2px solid var(--accent); background: rgba(124,63,142,.04); border-radius: 0 10px 10px 0; padding: 20px 24px; margin-top: 20px; }
.pp-box p { margin-bottom: 6px !important; font-size: .82rem !important; }
.pp-box p:last-child { margin-bottom: 0 !important; }
.pp-box strong { color: var(--text); font-weight: 400; }

.pp-contact { background: var(--text); border-radius: 20px; padding: clamp(40px,6vw,64px) clamp(32px,5vw,56px); text-align: center; position: relative; overflow: hidden; margin-top: 24px; }
.pp-contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 30%, rgba(124,63,142,.12) 0%, transparent 60%); pointer-events: none; }
.pp-contact__eyebrow { font-size: .55rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.pp-contact__title { font-family: var(--ff-display); font-size: clamp(1.4rem,3vw,2.2rem); font-weight: 400; font-style: italic; color: var(--bg); margin-bottom: 10px; line-height: 1.1; }
.pp-contact__sub { font-size: .78rem; font-weight: 300; color: rgba(250,247,244,.45); margin-bottom: 32px; line-height: 1.7; }
.pp-contact__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pp-contact__btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-family: var(--ff-body); font-size: .67rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s; cursor: pointer; border: none; }
.pp-contact__btn--primary { background: var(--accent); color: var(--bg); }
.pp-contact__btn--outline { background: transparent; color: var(--bg); border: 1.5px solid rgba(250,247,244,.25); }
.pp-contact__btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px var(--shadow); }
.pp-contact__btn--outline:hover { border-color: rgba(250,247,244,.55); }

.pp-section, .tc-section ,.rp-section{
  opacity: 1 !important;
  transform: none !important;
}



/* ── READING PROGRESS ── */
#read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--accent);
  width: 0%;
  z-index: 9999;
  transition: width .15s linear;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.rp-hero {
  position: relative;
  background: var(--text);
  padding: clamp(72px, 12vw, 140px) clamp(24px, 6vw, 96px) clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.rp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 85% 40%, rgba(124, 63, 142, .14) 0%, transparent 58%),
    radial-gradient(ellipse 40% 55% at 5% 85%,  rgba(124, 63, 142, .07) 0%, transparent 55%);
  pointer-events: none;
}
.rp-hero__deco {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  top: 50%; transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 700; font-style: italic;
  color: rgba(250, 247, 244, .03);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -.04em;
}
.rp-hero__eyebrow {
  font-size: .57rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.rp-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 400; font-style: italic;
  color: var(--bg);
  line-height: 1.05; letter-spacing: -.02em;
  max-width: 720px;
}
.rp-hero__title em { font-style: normal; color: var(--accent); }
.rp-hero__sub {
  margin-top: 20px;
  font-size: .8rem; font-weight: 300;
  color: rgba(250, 247, 244, .45);
  letter-spacing: .04em; max-width: 520px; line-height: 1.7;
}
.rp-hero__meta {
  margin-top: 32px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.rp-hero__date {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(250, 247, 244, .3);
}
.rp-hero__date span { color: rgba(250, 247, 244, .55); }
.rp-hero__back {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(250, 247, 244, .35); text-decoration: none;
  border-bottom: 1px solid rgba(250, 247, 244, .15); padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.rp-hero__back:hover { color: var(--accent); border-color: var(--accent); }

/* ══════════════════════════════
   SUMMARY CARDS
══════════════════════════════ */
.rp-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
  transform: translateY(-36px);
  gap: 16px;
}
.rp-summary__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.rp-summary__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}
.rp-summary__icon {
  width: 44px; height: 44px;
  background: rgba(124, 63, 142, .08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: var(--accent); font-size: 1rem;
}
.rp-summary__value {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700; font-style: italic;
  color: var(--text);
  line-height: 1.1; margin-bottom: 4px;
}
.rp-summary__label {
  font-size: .72rem; color: var(--muted);
  letter-spacing: .04em; font-weight: 300;
}

/* ══════════════════════════════
   LAYOUT
══════════════════════════════ */
.rp-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(12px, 4vw, 32px) clamp(24px, 6vw, 80px) clamp(48px, 8vw, 96px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* ══════════════════════════════
   TOC
══════════════════════════════ */
.rp-toc { position: sticky; top: 32px; }
.rp-toc__label {
  font-size: .54rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.rp-toc__list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.rp-toc__item a {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; letter-spacing: .06em;
  color: var(--muted); text-decoration: none;
  padding: 7px 10px; border-radius: 6px;
  transition: background .2s, color .2s; line-height: 1.4;
}
.rp-toc__item a::before {
  content: ''; display: block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--surface2); flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.rp-toc__item a:hover,
.rp-toc__item a.active {
  background: rgba(124, 63, 142, .06);
  color: var(--text);
}
.rp-toc__item a:hover::before,
.rp-toc__item a.active::before { background: var(--accent); transform: scale(1.4); }

/* ══════════════════════════════
   CONTENT
══════════════════════════════ */
.rp-content { min-width: 0; }

.rp-section {
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(40px, 6vw, 64px);
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.rp-section.visible { opacity: 1; transform: translateY(0); }
.rp-section:last-child { border-bottom: none; margin-bottom: 0; }

.rp-section__header {
  display: flex; align-items: flex-start; gap: 18px; margin-bottom: 24px;
}
.rp-section__num {
  font-family: var(--ff-display);
  font-size: 2.8rem; font-weight: 700; font-style: italic;
  color: var(--surface2); line-height: 1; flex-shrink: 0;
  letter-spacing: -.03em; min-width: 48px;
}
.rp-section__title {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 400; color: var(--text); line-height: 1.2; padding-top: 6px;
}
.rp-section p {
  font-size: 1.2rem; line-height: 1.85;
  color: var(--muted); margin-bottom: 16px; font-weight: 300;
}
.rp-section p:last-child { margin-bottom: 0; }
.rp-section ul {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 16px;
}
.rp-section ul li {
  font-size: 1.2rem; line-height: 1.7;
  color: var(--muted); font-weight: 300;
  padding-left: 20px; position: relative;
}
.rp-section ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 5px; height: 1px; background: var(--accent);
}
.rp-section ul li strong { color: var(--text); font-weight: 400; }

/* ── NOTE BOXES ── */
.rp-note {
  border-left: 2px solid var(--accent);
  background: rgba(124, 63, 142, .04);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin-top: 18px;
}
.rp-note p { font-size: .82rem !important; margin-bottom: 0 !important; color: var(--muted); }
.rp-note strong { color: var(--text); font-weight: 400; }
.rp-note--warn {
  border-left-color: #C0713A;
  background: rgba(192, 113, 58, .04);
}

/* ── TABLE ── */
.rp-table-wrap { margin: 20px 0; overflow-x: auto; border-radius: 12px; border: 1px solid var(--border); }
.rp-table {
  width: 100%; border-collapse: collapse;
  font-size: .82rem;
}
.rp-table thead { background: var(--text); }
.rp-table thead th {
  padding: 14px 18px; text-align: left;
  color: rgba(250, 247, 244, .8);
  font-weight: 400; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.rp-table tbody td {
  padding: 13px 18px;
  color: var(--muted); font-weight: 300;
  border-bottom: 1px solid var(--border);
}
.rp-table tbody tr:last-child td { border-bottom: none; }
.rp-table tbody tr:hover td { background: rgba(124, 63, 142, .03); }
.rp-table td strong { color: var(--text); font-weight: 400; }

/* ── STEPS ── */
.rp-steps { display: flex; flex-direction: column; gap: 0; margin: 20px 0; }
.rp-step {
  display: flex; gap: 20px;
  padding-bottom: 28px; position: relative;
}
.rp-step::before {
  content: ''; position: absolute;
  left: 18px; top: 44px; bottom: 0;
  width: 1px; background: var(--border);
}
.rp-step:last-child::before { display: none; }
.rp-step__num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent);
  color: var(--bg); font-family: var(--ff-display);
  font-size: .95rem; font-weight: 700; font-style: italic;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.rp-step__body { padding-top: 6px; }
.rp-step__body strong { display: block; font-size: .88rem; font-weight: 400; color: var(--text); margin-bottom: 4px; }
.rp-step__body p { font-size: .82rem; color: var(--muted); font-weight: 300; line-height: 1.6; margin-bottom: 0; }

/* ── JURISDICTION BANNER ── */
.rp-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 20px;
  display: flex; align-items: flex-start; gap: 16px;
}
.rp-banner__icon {
  width: 36px; height: 36px;
  background: rgba(124, 63, 142, .1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rp-banner__icon svg { width: 16px; height: 16px; color: var(--accent); }
.rp-banner__text p { font-size: .82rem; line-height: 1.7; color: var(--muted); font-weight: 300; }
.rp-banner__text strong {
  color: var(--text); font-weight: 400; display: block;
  margin-bottom: 4px; font-size: .78rem; letter-spacing: .06em;
}

/* ── CONTACT BOX ── */
.rp-box {
  border-left: 2px solid var(--accent);
  background: rgba(124, 63, 142, .04);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px; margin-top: 20px;
}
.rp-box p { margin-bottom: 6px; font-size: .82rem; color: var(--muted); font-weight: 300; }
.rp-box p:last-child { margin-bottom: 0; }
.rp-box strong { color: var(--text); font-weight: 400; }

/* ── CTA ── */
.rp-cta {
  background: var(--text);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 64px) clamp(32px, 5vw, 56px);
  text-align: center; position: relative; overflow: hidden; margin-top: 24px;
}
.rp-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 30%, rgba(124, 63, 142, .12) 0%, transparent 60%);
  pointer-events: none;
}
.rp-cta__eyebrow {
  font-size: .55rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.rp-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400; font-style: italic;
  color: var(--bg); margin-bottom: 10px; line-height: 1.1;
}
.rp-cta__title em { font-style: normal; color: var(--accent); }
.rp-cta__sub {
  font-size: .78rem; font-weight: 300;
  color: rgba(250, 247, 244, .45);
  margin-bottom: 32px; line-height: 1.7;
}
.rp-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.rp-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-family: var(--ff-body);
  font-size: .67rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s;
  cursor: pointer; border: none;
}
.rp-cta__btn--primary { background: var(--accent); color: var(--bg); }
.rp-cta__btn--outline {
  background: transparent; color: var(--bg);
  border: 1.5px solid rgba(250, 247, 244, .25);
}
.rp-cta__btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px var(--shadow); }
.rp-cta__btn--outline:hover { border-color: rgba(250, 247, 244, .55); }





/* ════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════ */
   @media (prefers-reduced-motion: reduce) {
  .rp-section { opacity: 1; transform: none; transition: none; }
  .rp-summary__card { transition: none; }
}

@media (max-width: 1024px) {
  .fp-grid{ grid-template-columns:repeat(3,1fr); }
  .cats-grid { grid-template-columns: repeat(2,1fr); }
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
    .bento{
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:unset;
  }
  .bento-item{
    grid-column:unset!important;grid-row:unset!important;
    height:240px;
  }
    .tc-layout { grid-template-columns: 1fr; gap: 40px; }
  .tc-toc { position: static; background: var(--bg); border-radius: 14px; padding: 20px; border: 1px solid var(--border); }
  .tc-toc__list { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .tc-toc__item a { font-size: .62rem; padding: 5px 10px; }
  
    .home-banner{  width:94%; margin:4rem auto; border-radius:22px; }

    .home-banner img{aspect-ratio:16/7;}
}
@media (max-width: 768px) {


  .nx-logo img{height: 50px;}
  .nx-hide-mobile { display: none !important; }
  .nx-hamburger { display: flex; }
  .nx-mega-grid { grid-template-columns: repeat(2, 1fr); }
  .nx-filter-inner{justify-content: flex-start;}
    .rp-summary { grid-template-columns: repeat(2, 1fr); }
  .rp-layout { grid-template-columns: 1fr; gap: 32px; }
  .rp-toc { position: static; }
  .rp-toc__list { flex-direction: row; flex-wrap: wrap; gap: 4px; }

  .nx-sidebar{padding-bottom: 12rem;}
  .nx-footer{padding-bottom: 13rem;}
  .sum{margin-left: 0px;}
    .pp-layout { grid-template-columns: 1fr; gap: 40px; }
  .pp-toc { position: static; background: var(--bg); border-radius: 14px; padding: 20px; border: 1px solid var(--border); }
  .pp-toc__list { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .pp-toc__item a { font-size: .62rem; padding: 5px 10px; }
  .fp-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .bento{grid-template-columns:1fr}
  .bento-item{height:220px}
  .cats-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
  }

  .products-grid .prod-img-wrap {
    height: 140px;
  }

  .prod-name {
    font-size: .75rem;
  }

  .price-now {
    font-size: .85rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
  }

  .brand-logo-wrap {
    width: 68px;
    height: 68px;
    padding: .65rem;
    border-radius: 12px;
  }

  .brand-name {
    font-size: .65rem;
  }

  .hero-h1 {
    font-size: 1.75rem;
  }

  .btn-primary,
  .btn-ghost {
    padding: .52rem 1rem;
    font-size: .74rem;
  }

  .section {
    padding: 2rem .85rem 2.5rem;
  }

  .social-row {
    grid-template-columns: 1fr;
  }

  .login-form-panel {
    padding: 1.25rem .85rem 2.5rem;
  }

  .deals-h2 {
    font-size: 1.25rem;
  }

  .timer-block {
    min-width: 46px;
    padding: .45rem .55rem;
  }

  .timer-num {
    font-size: 1rem;
  }


  *, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
  }

  body {
    overflow-x: hidden;
    font-size: 14px;
  }

  /* ── BUTTON SIZES GLOBALLY CHHOTI ── */
  .btn-primary {
    padding: .6rem 1.25rem;
    font-size: .78rem;
    letter-spacing: .02em;
  }

  .btn-ghost {
    padding: .6rem 1.25rem;
    font-size: .78rem;
  }

  .btn-outline {
    padding: .55rem 1.25rem;
    font-size: .78rem;
  }

  .btn-cart {
    padding: .45rem .6rem;
    font-size: .72rem;
  }

  .btn-buy, .btn-view {
    padding: .45rem .85rem;
    font-size: .72rem;
  }

  .btn-place {
    padding: .8rem;
    font-size: .85rem;
  }

  .btn-checkout {
    padding: .75rem;
    font-size: .82rem;
  }

  .nx-sb-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: .85rem 1.1rem;
    /* Scroll visible rehne ke liye padding bottom */
    padding-bottom: 1.5rem;
  }

  .nx-sb-foot {
    flex-shrink: 0;
    padding: 1rem 1.1rem;
  }

  .nx-sb-title {
    font-size: .95rem;
  }

  /* Cart items */
  .nx-ci-img {
    width: 60px;
    height: 60px;
  }

  .nx-ci-name {
    font-size: .8rem;
  }

  .nx-ci-price {
    font-size: .82rem;
  }

  /* ── HERO ── */
  .hero {
    min-height: auto;
    padding: 5rem 1.25rem 3rem;
  }

  .hero-h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-sub {
    font-size: .9rem;
    margin: 1rem 0 1.5rem;
  }

  .hero-cta {
    gap: .65rem;
  }

  .hero-stats {
    gap: 1.25rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-num {
    font-size: 1.3rem;
  }

  .hero-stat-label {
    font-size: .7rem;
  }

  /* ── MARQUEE ── */
  .marquee-section {
    padding: .65rem 0;
  }

  .marquee-item {
    font-size: .68rem;
    gap: .5rem;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 2.5rem 1.1rem 3rem; /* bottom zyada */
  }

  .section-title {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
    margin-bottom: 1.75rem;
  }

  .section-eyebrow {
    font-size: .65rem;
  }

  /* ── CATEGORY CARDS ── */
  .cats-grid {
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
  }

  .cat-label h3 {
    font-size: 1.05rem;
  }

  .cat-label p {
    font-size: .72rem;
    display: none; /* mobile pe item count chhupa do */
  }

  /* ── FEATURES ── */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
  }

  .feat-card {
    padding: 1.1rem;
  }

  .feat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
    margin-bottom: .65rem;
  }

  .feat-title {
    font-size: .88rem;
  }

  .feat-desc {
    font-size: .76rem;
    line-height: 1.55;
  }

  /* ── PRODUCT CARDS ── */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
  }

  .products-grid .prod-img-wrap {
    height: 160px;
  }

  .prod-body {
    padding: .75rem .85rem .85rem;
  }

  .prod-name {
    font-size: .82rem;
  }

  .prod-brand {
    font-size: .63rem;
  }

  .price-now {
    font-size: .95rem;
  }

  .price-old,
  .price-off {
    font-size: .68rem;
  }

  .prod-rating {
    margin-bottom: .55rem;
  }

  .stars {
    font-size: .72rem;
  }

  .prod-rating span {
    font-size: .66rem;
  }

  .prod-actions {
    gap: .35rem;
  }

  .prod-wish {
    width: 28px;
    height: 28px;
  }

  .prod-wish svg {
    width: 12px;
    height: 12px;
  }

  /* ── DEALS BANNER ── */
  .deals-banner {
    border-radius: 16px;
    min-height: auto;
  }

  .deals-content {
    padding: 1.75rem 1.25rem;
  }

  .deals-h2 {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
    margin-bottom: .5rem;
  }

  .deals-sub {
    font-size: .82rem;
    margin-bottom: 1.1rem;
  }

  .timer {
    gap: .5rem;
    flex-wrap: wrap;
  }

  .timer-block {
    padding: .55rem .7rem;
    min-width: 52px;
    border-radius: 8px;
  }

  .timer-num {
    font-size: 1.2rem;
  }

  .timer-lbl {
    font-size: .58rem;
  }

  .deals-tag {
    font-size: .63rem;
    padding: .22rem .6rem;
  }

  /* ── BRANDS GRID ── */
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: .85rem;
    margin-top: 1.75rem;
    padding: 0;
  }

  .brand-logo-wrap {
    width: 80px;
    height: 80px;
    padding: .85rem;
    border-radius: 16px;
  }

  .brand-name {
    font-size: .72rem;
  }

  /* ── REVIEWS ── */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .review-card {
    padding: 1.1rem;
  }

  .review-text {
    font-size: .8rem;
  }

  .review-name {
    font-size: .8rem;
  }

  .review-meta {
    font-size: .68rem;
  }

  /* ── PRODUCTS PAGE ── */
  .page-layout {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem 3rem;
    gap: 1rem;
  }

  .products-topbar {
    gap: .65rem;
    margin-bottom: 1rem;
  }

  .products-count {
    font-size: .78rem;
  }

  .sort-select {
    font-size: .78rem;
    padding: .38rem .85rem;
  }

  .filter-tabs {
    gap: .3rem;
  }

  .ftab {
    padding: .32rem .7rem;
    font-size: .72rem;
  }

  .filter-toggle-btn {
    display: flex;
    font-size: .78rem;
    padding: .38rem .8rem;
  }

  /* Filter sidebar mobile drawer */
  .filter-sidebar {
    display: flex;
    position: fixed;
    top: 58px; /* updated navbar height */
    left: 0;
    bottom: 0;
    z-index: 950;
    width: min(290px, 85vw);
    border-radius: 0 16px 16px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-110%);
    transition: transform .35s cubic-bezier(.77,0,.175,1);
    flex-direction: column;
    padding-bottom: 3rem; /* scroll ke liye bottom space */
  }

  .filter-sidebar.mobile-open {
    transform: translateX(0);
  }

  .filter-overlay {
    display: block;
  }

  .filter-close-btn {
    display: grid;
    place-items: center;
  }

  .filter-group label {
    font-size: .66rem;
  }

  .filter-option span {
    font-size: .8rem;
  }

  /* ── PRODUCT DETAIL ── */
  .detail-wrap {
    padding: 1.25rem 1rem 3rem;
  }

  .breadcrumb {
    font-size: .72rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: .35rem;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .main-img {
    height: 280px;
    border-radius: 14px;
  }

  .thumb {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }

  .prod-info-name {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .price-main {
    font-size: 1.6rem;
  }

  .price-section {
    padding: 1rem;
    border-radius: 12px;
  }

  .cta-row {
    gap: .55rem;
  }

  .btn-add-cart,
  .btn-buy-now {
    padding: .75rem .5rem;
    font-size: .82rem;
    gap: .35rem;
  }

  .variant-chip {
    padding: .28rem .7rem;
    font-size: .75rem;
  }

  .info-pills {
    gap: .4rem;
  }

  .info-pill {
    padding: .32rem .7rem;
    font-size: .7rem;
  }

  .tabs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .tabs-nav::-webkit-scrollbar { display: none; }

  .tab-btn {
    padding: .55rem .95rem;
    font-size: .8rem;
    white-space: nowrap;
  }

  /* ── CHECKOUT ── */
  .checkout-wrap {
    padding: 1.25rem 1rem 3rem;
  }

  .checkout-wrap h1 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .steps {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .25rem;
    margin-bottom: 1.25rem;
    gap: .35rem;
  }

  .steps::-webkit-scrollbar { display: none; }

  .step-name {
    font-size: .72rem;
    white-space: nowrap;
  }

  .step-num {
    width: 20px;
    height: 20px;
    font-size: .62rem;
    flex-shrink: 0;
  }

  .form-section {
    padding: 1.1rem;
    border-radius: 12px;
  }

  .form-section h3 {
    font-size: .88rem;
    margin-bottom: 1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  .form-group label {
    font-size: .65rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: .6rem .8rem;
    font-size: .82rem;
    border-radius: 8px;
  }

  .pay-option {
    padding: .7rem .85rem;
  }

  .pay-label {
    font-size: .82rem;
  }

  .pay-sub {
    font-size: .68rem;
  }

  .order-summary {
    border-radius: 12px;
    padding: 1.1rem;
    position: static;
  }

  .order-summary h3 {
    font-size: .88rem;
    margin-bottom: 1rem;
  }

  .oi-emoji {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }

  .oi-name {
    font-size: .76rem;
  }

  .oi-qty {
    font-size: .68rem;
  }

  .oi-price {
    font-size: .82rem;
  }

  .summary-row {
    font-size: .8rem;
  }

  .summary-row.total span:last-child {
    font-size: 1rem;
  }

  /* ── LOGIN PAGE ── */
  .login-page {
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
  }

  .login-visual {
    display: none;
  }

  .login-form-panel {
    width: 100%;
    padding: 1.5rem 1.1rem 3rem; /* bottom padding zyada */
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .login-box {
    padding: 1rem 0 10rem;
    max-width: 100%;
  }

  .login-heading h1 {
    font-size: 1.4rem;
  }

  .login-heading p {
    font-size: .78rem;
  }

  .auth-tab {
    padding: .48rem .75rem;
    font-size: .78rem;
  }

  .social-row {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }

  .social-btn {
    padding: .55rem .75rem;
    font-size: .76rem;
    border-radius: 8px;
  }

  .field-input {
    padding: .62rem .9rem .62rem 2.3rem;
    font-size: .84rem;
    border-radius: 8px;
  }

  .field-label {
    font-size: .64rem;
  }

  .field-group {
    margin-bottom: .62rem;
  }

  .field-row-2 {
    grid-template-columns: 1fr;
    gap: .55rem;
  }

  .btn-submit {
    padding: .72rem 1.25rem;
    font-size: .84rem;
    border-radius: 8px;
  }

  .switch-text {
    font-size: .76rem;
    margin-top: .7rem;
  }

  .trust-strip {
    gap: .85rem;
    margin-top: .7rem;
    padding-top: .7rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-item {
    font-size: .66rem;
  }

  .remember-row {
    margin-bottom: .7rem;
  }

  .check-label {
    font-size: .76rem;
  }

  .forgot-link {
    font-size: .76rem;
  }

  .nx-pay-badge {
    font-size: .62rem;
    padding: .22rem .5rem;
  }

  .nx-newsletter {
    padding: 1.1rem;
    border-radius: 12px;
  }

  .nx-newsletter h5 {
    font-size: .82rem;
  }

  .nx-newsletter p {
    font-size: .72rem;
  }

  .nx-nl-input input {
    font-size: .78rem;
    padding: .48rem .85rem;
  }

  .nx-nl-input button {
    font-size: .78rem;
    padding: .48rem .9rem;
  }

  /* ── TOAST ── */
  .nexus-toast {
    bottom: 1.25rem;
    right: 1rem;
    left: 1rem;
    font-size: .78rem;
    padding: .65rem 1rem;
    border-radius: 7px;
  }

  /* ── MISC OVERFLOW FIXES ── */
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-cta {
    justify-content: center;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* Tables scroll horizontal agar zarurat ho */
  .spec-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* No-results block */
  .no-results {
    padding: 2.5rem 1rem;
  }

  .no-results div {
    font-size: 2.2rem;
  }
      .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-cta   { justify-content: center; }
  .hero-stats { justify-content: center; }
  .cats-grid  { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .deals-banner  { flex-direction: column; }
  .page-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .detail-grid { grid-template-columns: 1fr; }
  .prod-gallery { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
    .filter-toggle-btn { display: flex; }
    .filter-overlay    { display: block; }  .cats-grid     { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }  .login-visual { display:none; }
  .login-form-panel { padding:1.5rem; }
  .section       { padding: 3rem 1.25rem; }
    .filter-close-btn  { display: grid; place-items: center; }.form-grid { grid-template-columns: 1fr; }
    .filter-sidebar { position: fixed; top: 72px; left: 0; bottom: 0; z-index: 950; width: min(300px,85vw); border-radius: 0 16px 16px 0; overflow-y: auto; transform: translateX(-110%); transition: transform .35s cubic-bezier(.77,0,.175,1); display: flex; flex-direction: column; }
    .filter-sidebar.mobile-open { transform: translateX(0); }
  .nx-footer-top { grid-template-columns: 1fr; padding: 2rem 1.25rem; }
  .nx-footer-address-block { grid-template-columns: 1fr; }
  .nx-footer-bottom { flex-direction: column; align-items: flex-start; padding: 1rem 1.25rem; }
  .nx-footer-bottom-links { gap: 1rem; }
    .nx-footer-top { grid-template-columns: 1fr 1fr; }
  .nx-footer-right { grid-column: 1 / -1; }
  .nx-footer-social-newsletter { grid-template-columns: 1fr; }
    .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .brand-logo-wrap {
    width: 80px;
    height: 80px;
    padding: .9rem;
    border-radius: 16px;
  }
  .brand-name {
    font-size: .75rem;
  }
    .nx-hide-mobile { display: none !important; }
  .nx-search-wrap { display: none !important; }
  .nx-nav { padding: 0 1rem; gap: .75rem; }

  /* Hide login button on small screens to save space */
  #nx-login-btn { display: none; }

  /* Shorter search placeholder on mobile */
  .nx-search-wrap input::placeholder { content: 'Search…'; }

  .nx-hamburger { display: flex; }

  .nx-filter-bar { top: 68px; }
  .nx-filter-inner { padding: .5rem 1rem; gap: .4rem; }
  .nx-ftab { padding: .38rem .85rem; font-size: .78rem; }
      .home-banner{
        margin:3rem auto;
        border-radius:18px;
    }

    .home-banner img{
        aspect-ratio:16/8;
    }

}

@media (max-width: 480px) {
     img.ui { width: 15%; margin-left: 110px; margin-top: -8px; }
  .rp-summary { grid-template-columns: 1fr 1fr; transform: translateY(-20px); }
  .tc-hero__deco { display: none; }
  .tc-section__num { font-size: 2rem; }
  .tc-contact__btns { flex-direction: column; align-items: center; }
  .tc-banner { flex-direction: column; gap: 12px; }
    .prod-body { padding: .75rem .85rem .85rem; }
  .prod-name { font-size: .82rem; }
  .prod-brand { font-size: .63rem; }
  .price-now { font-size: .95rem; }
  .price-old, .price-off { font-size: .68rem; }
  .prod-actions { gap: .35rem; margin-top: 10px; }
  .prod-wish { width: 30px; height: 30px; padding: 4px; border-radius: 8px; }
  .prod-wish svg { width: 14px; height: 14px; }
  .btn-cart { padding: .42rem .6rem; font-size: .7rem; border-radius: 8px; flex: 1; text-align: center; }
  .btn-buy, .btn-view { padding: .42rem .7rem; font-size: .7rem; border-radius: 8px; }
  .brands-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; gap: 12px; padding: .5rem 1.1rem 1rem; margin-top: 1.5rem; }
  .brands-grid::-webkit-scrollbar { display: none; }
  .brand-card { flex: 0 0 auto; scroll-snap-align: start; animation: none; }
  .brand-logo-wrap { width: 80px; height: 80px; padding: .85rem; border-radius: 16px; }
  .brand-name { font-size: .72rem; }
    .rv-section { padding: 0 0 3rem; }
  .rv-track { display: flex; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; gap: 10px; padding: 4px 1.1rem 10px; }
  .rv-track::-webkit-scrollbar { display: none; }
  .rv-card { flex: 0 0 62vw; scroll-snap-align: start; border-radius: 12px; }
  .rv-card-img-wrap { height: 200px; }
  .rv-card-name { font-size: .82rem; }
  .rv-price { font-size: .88rem; }
    .ob-section { padding: 0; }
  .ob-viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .ob-viewport::-webkit-scrollbar { display: none; }
  .ob-track { flex-wrap: nowrap; gap: 10px; padding: 6px 1.1rem 10px; }
  .ob-banner { flex: 0 0 78vw; scroll-snap-align: start; height: 220px; border-radius: 14px; }
  .ob-arrows { display: none; }
  .ob-dots { margin-top: .6rem; }
  .fp-grid{ grid-template-columns:1fr; }
    .login-form-panel { padding:1.25rem; }
  .login-heading h1 { font-size:1.45rem; }
  .social-row { grid-template-columns:1fr; }
  .field-row-2 { grid-template-columns:1fr; }
  .trust-strip { flex-direction:column; gap:.6rem; }
    .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nx-nav { height: 60px; }
  .nx-logo { font-size: 1.2rem; }
  .nx-search-wrap { padding: 0 .85rem; }
  .nx-search-wrap input { font-size: .82rem; }
  .nx-icon-btn { width: 36px; height: 36px; }
  .nx-icon-btn svg { width: 15px; height: 15px; }

  .nx-filter-bar { top: 60px; }
  .pp-hero__deco { display: none; }
  .pp-section__num { font-size: 2rem; }
  .pp-contact__btns { flex-direction: column; align-items: center; }
    .home-banner{
        width:92%;
        margin:2.5rem auto;
        border-radius:14px;
    }

    .home-banner img{
        aspect-ratio:4/3;
    }

}


