/* ── VeloNav Shop CSS ─────────────────────────────────────────
   Extends main.css. Uses same --primary, --fg, --muted, --border,
   --bg, --sh, --rx, --rxl tokens.
   ──────────────────────────────────────────────────────────── */

/* ── SHOP HERO ─────────────────────────────────────────────── */
.shop-hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at 20% 50%, rgba(37,99,235,.08), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(59,130,246,.05), transparent 40%);
  text-align: center;
}
.shop-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--fg);
}
.shop-hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.sh-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-dim); color: var(--primary);
  border: 1px solid rgba(37,99,235,.18);
  padding: 5px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 18px;
}
.sh-trust {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: center;
}
.sh-trust span {
  font-size: 13px; font-weight: 600; color: var(--muted);
}

/* ── PRODUCTS GRID ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
  border-color: var(--primary);
}
.pc-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--primary-dim2);
}
.pc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s;
}
.product-card:hover .pc-img-wrap img { transform: scale(1.04); }
.pc-badge {
  position: absolute; top: 12px; left: 12px;
  color: #fff; padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
}
.pc-category {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  color: var(--fg); padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
}
.pc-body {
  padding: 20px 20px 16px;
  display: flex; flex-direction: column; flex: 1;
}
.pc-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 800;
  margin-bottom: 4px; color: var(--fg);
}
.pc-tagline { font-size: 12px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.pc-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; flex: 1; }
.pc-features { margin-bottom: 14px; }
.pc-feat {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--muted); margin-bottom: 5px;
}
.pc-feat span { font-size: 14px; }
.pc-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto;
}
.pc-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.pc-sell { font-size: 18px; font-weight: 800; color: var(--fg); }
.pc-mrp  { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.pc-off  { font-size: 11px; font-weight: 700; color: #10b981;
           background: rgba(16,185,129,.1); padding: 2px 6px; border-radius: 4px; }
.pc-btn  { flex-shrink: 0; font-size: 12px; padding: 8px 14px; }

/* ── WHY SHOP SECTION ──────────────────────────────────────── */
.shop-why {
  background: radial-gradient(circle at 10% 50%, rgba(37,99,235,.06), transparent 40%),
              #fafbff;
  padding: 80px 0;
}
.why-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.why-shop-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rx);
  padding: 24px 22px;
  transition: box-shadow .2s;
}
.why-shop-card:hover { box-shadow: var(--sh); }
.wsc-icon { font-size: 28px; margin-bottom: 12px; }
.why-shop-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 7px; color: var(--fg); }
.why-shop-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--primary-dim2);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted); flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span:last-child { color: var(--fg); font-weight: 600; }

/* ── PRODUCT HERO ───────────────────────────────────────────── */
.prod-hero {
  padding: 40px 0 50px;
  background: radial-gradient(circle at 80% 20%, rgba(37,99,235,.05), transparent 40%);
}
.prod-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.prod-gallery {}
.prod-main-img {
  position: relative;
  border-radius: var(--rxl);
  overflow: hidden;
  background: var(--primary-dim2);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  margin-bottom: 10px;
}
.prod-main-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-badge {
  position: absolute; top: 14px; left: 14px;
  color: #fff; padding: 5px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
}
.pg-off-badge {
  position: absolute; top: 14px; right: 14px;
  background: #ef4444; color: #fff;
  padding: 5px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 800;
}
.prod-thumbs {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.prod-thumb {
  width: 72px; height: 56px;
  border-radius: var(--rx);
  overflow: hidden; cursor: pointer;
  border: 2px solid var(--border);
  transition: border-color .2s;
}
.prod-thumb.active, .prod-thumb:hover { border-color: var(--primary); }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }

.prod-info {}
.pi-tagline { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.pi-desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.pi-price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 4px; flex-wrap: wrap;
}
.pi-sell { font-size: 28px; font-weight: 900; color: var(--fg); }
.pi-mrp  { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.pi-save {
  font-size: 13px; font-weight: 700; color: #10b981;
  background: rgba(16,185,129,.1); padding: 3px 10px; border-radius: 6px;
}
.pi-tax  { font-size: 12px; color: var(--muted); margin-bottom: 20px; }

.pi-quick-feats { margin-bottom: 22px; }
.pi-qf {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  margin-bottom: 8px;
}
.pi-qf-icon { font-size: 16px; }

.pi-ctas { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }

.pi-trust {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  padding: 14px;
  background: var(--primary-dim2);
  border-radius: var(--rx);
  border: 1px solid var(--border);
}
.pi-trust span { font-size: 12px; font-weight: 600; color: var(--muted); }

/* ── PRODUCT TABS ───────────────────────────────────────────── */
.prod-tabs-section { padding: 50px 0; }
.pt-tab-bar {
  display: flex; gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pt-tab {
  padding: 12px 20px;
  border: none; background: none;
  font-size: 14px; font-weight: 700;
  color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all .2s;
}
.pt-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.pt-tab:hover  { color: var(--fg); }

.pt-panel { display: none; }
.pt-panel.active { display: block; }

.prod-desc-text {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  max-width: 780px; margin-bottom: 36px;
}

.feat-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.feat-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rx);
  padding: 22px;
  transition: box-shadow .2s, border-color .2s;
}
.feat-detail-card:hover { box-shadow: var(--sh); border-color: var(--primary); }
.fdc-icon { font-size: 26px; margin-bottom: 12px; }
.feat-detail-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--fg); }
.feat-detail-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Specs table */
.specs-table { max-width: 680px; }
.spec-row {
  display: flex; gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.spec-row:last-child { border-bottom: none; }
.spec-label { width: 200px; flex-shrink: 0; font-size: 13px; font-weight: 700; color: var(--muted); }
.spec-val   { font-size: 14px; font-weight: 500; color: var(--fg); }

/* In The Box */
.inbox-list { max-width: 560px; }
.inbox-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--fg);
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.inbox-item:last-child { border-bottom: none; }
.inbox-item svg { color: var(--primary); flex-shrink: 0; }

/* FAQs */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 0; background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--fg);
  transition: color .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-arrow { flex-shrink: 0; transition: transform .25s; font-size: 11px; color: var(--muted); }
.faq-a {
  display: none; padding: 0 0 16px;
  font-size: 14px; color: var(--muted); line-height: 1.7;
}

/* Platform CTA */
.prod-platform-cta {
  background: linear-gradient(135deg, var(--primary), #0ea5e9);
  padding: 44px 0;
  color: #fff;
}
.ppc-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.ppc-inner h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.ppc-inner p  { font-size: 14px; opacity: .85; max-width: 560px; line-height: 1.65; }

/* Related */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ── Utility ────────────────────────────────────────────────── */
.py-80  { padding: 80px 0; }
.py-60  { padding: 60px 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .prod-hero-grid { grid-template-columns: 1fr; }
  .ppc-inner { text-align: center; justify-content: center; }
}
@media (max-width: 600px) {
  .shop-hero { padding: 60px 0 40px; }
  .products-grid { grid-template-columns: 1fr; }
  .pi-sell { font-size: 24px; }
  .pt-tab  { padding: 10px 12px; font-size: 13px; }
  .spec-label { width: 130px; }
}
