/* ===== DashGoods — Global Design System ===== */
:root {
  --accent:     #f97316;
  --accent-h:   #ea6c10;
  --accent-dim: rgba(249,115,22,.12);

  --bg:         #f4f6f9;
  --body-text:  #0d1b2a;
  --text:       #0d1b2a;
  --muted:      #3d5166;
  --muted2:     #8da0b3;

  --card:       #ffffff;
  --card-border:#d4dce8;
  --border:     #d4dce8;
  --card2:      #f0f4f8;
  --surface:    #e3eaf4;

  --header-bg:  #0d1b2a;
  --header-text:#f0f6ff;
  --header-muted:rgba(240,246,255,.45);

  --success:    #059669;
  --warning:    #d97706;
  --info:       #0284c7;

  --radius:     8px;
  --radius-sm:  5px;
  --shadow:     0 1px 3px rgba(0,0,0,.07), 0 4px 12px rgba(0,0,0,.05);
  --shadow-md:  0 6px 24px rgba(0,0,0,.11);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--body-text);
  font-size: 14.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--header-bg);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.header-top {
  max-width: 1320px; margin: 0 auto;
  padding: 0 24px; height: 68px;
  display: flex; align-items: center; gap: 20px;
}
.logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--header-text);
  letter-spacing: -.2px; flex-shrink: 0;
}
.logo span { color: var(--accent); }

.search-bar {
  flex: 1; max-width: 440px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s, background .2s;
}
.search-bar:focus-within {
  background: rgba(255,255,255,.1);
  border-color: var(--accent);
}
.search-bar input {
  flex: 1; background: transparent; border: none;
  color: var(--header-text); padding: 10px 16px;
  font-size: 13.5px; font-family: inherit; outline: none;
}
.search-bar input::placeholder { color: var(--header-muted); }
.search-bar button {
  background: var(--accent); border: none;
  color: #fff; padding: 10px 16px;
  display: flex; align-items: center;
  transition: background .2s;
}
.search-bar button:hover { background: var(--accent-h); }

.header-actions {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto; flex-shrink: 0;
}
.icon-btn {
  display: flex; align-items: center; gap: 6px;
  color: rgba(244,244,245,.65); padding: 8px 12px;
  border-radius: 6px; font-size: 13px; font-weight: 500;
  transition: color .15s, background .15s;
}
.icon-btn:hover { color: #fff; background: rgba(255,255,255,.07); }
.cart-btn-h {
  display: flex; align-items: center; gap: 7px;
  background: var(--accent); color: #fff;
  padding: 9px 18px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700;
  transition: background .2s; position: relative;
}
.cart-btn-h:hover { background: var(--accent-h); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: #fff; color: var(--accent);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 800;
  display: none; align-items: center; justify-content: center;
}

/* category nav */
.cat-nav { background: #081629; border-bottom: 1px solid rgba(255,255,255,.07); }
.cat-nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-item {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; white-space: nowrap;
  font-size: 12.5px; font-weight: 500;
  color: rgba(255,255,255,.4);
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.cat-nav-item:hover { color: rgba(255,255,255,.8); }
.cat-nav-item.active { color: #fff; border-bottom-color: var(--accent); }

/* ── TRUST BAR ── */
.trust-bar { background: #0d1b2a; border-bottom: 2px solid var(--accent); }
.trust-item { color: rgba(240,246,255,.75) !important; }
.trust-item i { color: var(--accent) !important; }
.trust-bar-inner {
  max-width: 1320px; margin: 0 auto; padding: 10px 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--muted);
}
.trust-item i { color: var(--accent); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; border-radius: var(--radius); border: none;
  font-family: inherit; transition: all .18s; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; padding: 12px 28px; font-size: 14px; font-weight: 700; }
.btn-primary:hover { background: var(--accent-h); color: #fff; }
.btn-secondary { background: var(--card2); color: var(--body-text); padding: 11px 22px; font-size: 14px; border: 1px solid var(--card-border); }
.btn-secondary:hover { background: var(--surface); }
.btn-outline { background: transparent; color: #fff; padding: 11px 22px; font-size: 14px; border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 12.5px; border-radius: 5px; }
.btn-lg { padding: 14px 36px; font-size: 15px; }

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
  border-top: 3px solid var(--accent);
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(15,30,53,.13); }
.product-card:hover .product-img img { transform: scale(1.04); }

.product-img,
.product-img-wrap {
  height: 195px; background: #f5f5fa;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--card-border);
  border-radius: 0;
}
.product-img img,
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 20px; transition: transform .35s;
}
.product-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10.5px; font-weight: 700; padding: 3px 9px;
  border-radius: 4px; letter-spacing: .03em; z-index: 2;
}
.badge-sale { background: var(--accent); color: #fff; }
.badge-new  { background: var(--accent); color: #fff; }
.badge-hot  { background: #dc2626; color: #fff; }

.product-body {
  padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column;
}
.product-brand {
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
}
.product-name {
  font-family: 'Space Grotesk', sans-serif; font-size: 14.5px;
  font-weight: 700; line-height: 1.35; margin-bottom: 8px;
  color: var(--body-text);
}
.product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.stars { color: var(--warning); font-size: 12px; letter-spacing: .5px; }
.product-features { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.feature-tag {
  font-size: 11px; background: var(--accent-dim);
  border: 1px solid rgba(79,70,229,.2); padding: 2px 7px;
  border-radius: 4px; color: var(--accent); font-weight: 600;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; border-top: 1px solid var(--card-border); margin-top: auto;
}
.price-old { font-size: 11.5px; color: var(--muted); text-decoration: line-through; }
.price { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--accent); }
.add-btn {
  display: flex; align-items: center; gap: 5px;
  background: var(--accent); color: #fff;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 700; border: none;
  transition: background .18s;
}
.add-btn:hover { background: var(--accent-h); }

/* Animated Add to Basket button */
.btn-add-cart {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; padding: 12px 16px;
  background: var(--accent); color: #fff;
  font-size: 13.5px; font-weight: 700; border: none;
  border-radius: 8px; cursor: pointer; margin-top: 12px;
  position: relative; overflow: hidden;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 3px 10px rgba(249,115,22,.35);
  letter-spacing: .01em;
}
.btn-add-cart::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .45s;
}
.btn-add-cart:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(249,115,22,.45); }
.btn-add-cart:hover::before { transform: translateX(100%); }
.btn-add-cart:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(249,115,22,.3); }
.btn-add-cart.added {
  background: var(--accent-h);
  box-shadow: 0 3px 10px rgba(249,115,22,.35);
}
.btn-add-cart svg { flex-shrink: 0; }

/* ── GRIDS ── */
.product-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ── SECTION ── */
.section { max-width: 1320px; margin: 0 auto; padding: 52px 24px; }
.section-sm { max-width: 1320px; margin: 0 auto; padding: 28px 24px; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; gap: 16px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; letter-spacing: -.2px;
}
.section-title span { color: var(--accent); }
.section-link {
  font-size: 13px; color: var(--accent); font-weight: 600;
  display: flex; align-items: center; gap: 3px; white-space: nowrap;
  transition: gap .15s;
}
.section-link:hover { gap: 7px; }

/* ── WHY CARDS ── */
.why-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}
.why-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--accent-dim); display: flex;
  align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 14px;
}
.why-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.why-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── BLOG CARD ── */
.blog-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card img { height: 175px; object-fit: cover; width: 100%; }
.blog-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.blog-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700;
  line-height: 1.35; margin-bottom: 8px; color: var(--body-text);
}
.blog-card:hover .blog-title { color: var(--accent); }
.blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-meta { font-size: 12px; color: var(--muted2); display: flex; gap: 12px; margin-top: auto; }


/* ── FOOTER ── */
.site-footer { background: #0a0a14; color: var(--header-text); margin-top: 0; }
.footer-inner {
  max-width: 1320px; margin: 0 auto; padding: 52px 24px 28px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(244,244,245,.4); line-height: 1.75; max-width: 240px; }
.contact-line {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(244,244,245,.4); margin-top: 8px;
}
.contact-line i { color: var(--accent); flex-shrink: 0; }
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.4); transition: color .15s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1320px; margin: 0 auto; padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.2); flex-wrap: wrap; gap: 6px;
}

/* ── LEGAL / STATIC PAGES ── */
.legal-page { background: var(--bg); }
.legal-page-inner { max-width: 860px; margin: 0 auto; padding: 48px 24px 80px; }
.legal-page h1 { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.3px; }
.legal-page .updated,
.legal-page .legal-updated { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.legal-page h2 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.legal-page h3 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; margin: 20px 0 8px; }
.legal-page p, .legal-page li { font-size: 14.5px; line-height: 1.75; color: var(--body-text); }
.legal-page ul, .legal-page ol { padding-left: 20px; margin: 8px 0 16px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--accent); text-decoration: underline; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13.5px; }
.legal-page th { background: var(--surface); text-align: left; padding: 10px 14px; font-weight: 600; border: 1px solid var(--border); }
.legal-page td { padding: 10px 14px; border: 1px solid var(--border); vertical-align: top; }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--card2); border: 1px solid var(--border);
  color: var(--text); padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-check input { margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.form-check label { font-size: 13px; color: var(--muted); line-height: 1.5; }
.form-check label a { color: var(--accent); text-decoration: underline; }

/* ── SKIP LINK ── */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--accent); color: #fff; padding: .5rem 1rem; border-radius: 0 0 4px 4px; font-size: 14px; font-weight: 600; z-index: 9999; transition: top .2s; text-decoration: none; }
.skip-link:focus { top: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .product-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .header-top { height: auto; flex-wrap: wrap; padding: 10px 16px; gap: 8px; }
  .search-bar { order: 3; max-width: 100%; width: 100%; }
}
@media (max-width: 480px) {
  .product-grid-4, .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── HAMBURGER + MOBILE NAV ── */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--header-text);
  padding: 4px;
  align-items: center;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--header-bg);
  z-index: 1000;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav .close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-bottom: 2rem;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: block;
}
.mobile-nav a:hover { color: var(--accent); }

@media (max-width: 768px) {
  body { font-size: 14px; }
  .header-actions { display: none; }
  .hamburger-btn { display: flex; margin-left: auto; }
  .search-bar { display: none; }
  #cart-page-wrap { grid-template-columns: 1fr !important; }
  #cart-summary { position: static !important; top: auto !important; }
  .pdp-grid { grid-template-columns: 1fr !important; }
  .pdp-sticky { position: static !important; top: auto !important; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; padding: 10px 16px; }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .header-top { padding: 10px 14px; }
  .logo { font-size: 18px; }
  .product-grid-4, .product-grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cat-nav-inner { gap: 4px; }
  .cat-nav-item { font-size: 11px; padding: 6px 8px; }
  /* Product card price on narrow screens */
  .price { font-size: 17px; white-space: nowrap; }
  .add-btn { padding: 7px 10px; font-size: 11px; }
  .product-footer { gap: 6px; }
  /* Blog cards — 1 column */
  .blog-card img { height: 160px; }
}

@media (max-width: 480px) {
  /* Price + button never wrap */
  .price { font-size: 16px; }
  .add-btn { padding: 6px 9px; gap: 3px; }
}

@media (max-width: 360px) {
  .logo { font-size: 16px; }
  .header-top { padding: 8px 12px; }
}

@media (max-width: 768px) {
  #cart-page-wrap { grid-template-columns: 1fr !important; }
}

/* ── WERBUNG BADGE (on featured blog card) ── */
.native-ad-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #0d1b2a;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .06em;
  z-index: 2;
}

/* ══════════════════════════════════════
   NEW FEATURES — DashGoods v6
   ══════════════════════════════════════ */

/* ── ANNOUNCEMENT BAR ── */
.ann-bar { background: var(--accent); overflow: hidden; }
.ann-bar.hidden { display: none; }
.ann-bar-wrap {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
}
.ann-slides {
  flex: 1; height: 36px; display: flex;
  align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.ann-slide {
  font-size: 12.5px; font-weight: 700; color: #fff;
  letter-spacing: .02em; text-align: center;
  position: absolute; opacity: 0;
  transition: opacity .5s;
  white-space: nowrap;
}
.ann-slide.active { opacity: 1; position: static; }
.ann-close {
  background: none; border: none;
  color: rgba(255,255,255,.7); font-size: 20px; line-height: 1;
  cursor: pointer; padding: 4px 0 4px 12px; flex-shrink: 0;
  transition: color .15s;
}
.ann-close:hover { color: #fff; }
@media(max-width:600px) { .ann-slide { font-size:11px; white-space:normal; text-align:center; } }

/* ── PROMO BANNER ── */
.promo-banner { background: var(--surface); border-bottom: 2px solid var(--accent); padding: 10px 24px; }
.promo-banner.hidden { display: none; }
.promo-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
}
.promo-text { font-size: 13.5px; font-weight: 600; color: var(--text); }
.promo-dismiss {
  background: none; border: none; color: var(--muted);
  font-size: 20px; cursor: pointer; padding: 0 0 0 8px;
  line-height: 1; transition: color .15s; flex-shrink: 0;
}
.promo-dismiss:hover { color: var(--text); }

/* ══ GLOBAL PROMO PILL — единый стандарт на всём сайте ══ */
.promo-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0d1b2a; border: 2px dashed #f97316;
  border-radius: 10px; padding: 9px 16px; flex-shrink: 0;
}
.promo-pill-label {
  font-size: 13px; color: rgba(255,255,255,.5); white-space: nowrap;
}
.promo-pill-code {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 800; color: #f97316; letter-spacing: .06em;
}
.promo-pill-btn {
  background: #f97316; color: #fff; border: none;
  padding: 7px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: background .2s; white-space: nowrap;
}
.promo-pill-btn:hover { background: #ea6c10; }
/* on light backgrounds */
.promo-pill-light {
  background: rgba(13,27,42,.06);
  border-color: #f97316;
}
.promo-pill-light .promo-pill-label { color: #6b7280; }
.promo-pill-light .promo-pill-code  { color: #f97316; }
@media(max-width:480px){
  .promo-pill { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .promo-pill-code { font-size: 15px; }
}

/* ── SHOP BY USE ── */
.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.use-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 24px 18px; text-align: center;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  display: block; text-decoration: none;
  border-top: 3px solid var(--accent);
}
.use-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.use-icon {
  width: 52px; height: 52px; margin: 0 auto 14px;
  background: var(--accent-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.use-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 14.5px; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.use-card p  { font-size: 12.5px; color: var(--muted); line-height: 1.55; }
@media(max-width:900px) { .use-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px) { .use-grid { grid-template-columns: 1fr; } }

/* ── BUNDLE CARD ── */
.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bundle-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  border-top: 4px solid var(--accent);
  transition: transform .2s, box-shadow .2s;
}
.bundle-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(15,30,53,.14); }
.bundle-img { height: 210px; background: #f5f5fa; overflow: hidden; }
.bundle-img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.bundle-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.bundle-badge {
  display: inline-block; font-size: 10.5px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 12px;
}
.bundle-name { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.bundle-includes { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }
.bundle-includes strong { color: var(--text); }
.bundle-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.bundle-price { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800; color: var(--accent); }
.bundle-old { font-size: 15px; color: var(--muted); text-decoration: line-through; }
.bundle-save { background: var(--accent); color: #fff; font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 4px; }
@media(max-width:900px) { .bundle-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ── BNPL BADGE ── */
.bnpl-row {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--muted);
  margin-top: -10px; margin-bottom: 18px; flex-wrap: wrap;
}
.bnpl-logo {
  font-size: 12px; font-weight: 800; letter-spacing: -.5px;
  background: #ffb3c7; color: #0a0a0a;
  padding: 1px 7px; border-radius: 4px;
}
.bnpl-row a { color: var(--accent); font-weight: 600; text-decoration: underline; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; cursor: pointer; gap: 16px;
  font-size: 15px; font-weight: 600; color: var(--text);
  background: none; border: none; width: 100%; text-align: left;
  font-family: inherit; transition: color .15s;
}
.faq-q:hover { color: var(--accent); }
.faq-chevron { flex-shrink: 0; color: var(--accent); transition: transform .25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none; padding-bottom: 18px;
  font-size: 14px; line-height: 1.8; color: var(--muted);
}
.faq-item.open .faq-a { display: block; }

/* ── PRODUCT INFO CLASSES (for product cards in shop) ── */
.product-info { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.product-name { font-family: 'Space Grotesk', sans-serif; font-size: 14.5px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; color: var(--body-text); display: block; }
.product-name:hover { color: var(--accent); }
.product-subtitle { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.product-tag { font-size: 10.5px; background: var(--accent-dim); border: 1px solid rgba(249,115,22,.2); padding: 2px 7px; border-radius: 4px; color: var(--accent); font-weight: 600; }
.product-stars { font-size: 13px; color: var(--warning); margin-bottom: 10px; letter-spacing: .5px; }
.product-price-row { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }

/* ══════════════════════════════════════
   DESIGN REFRESH v7 — Nextbase-inspired
   ══════════════════════════════════════ */

/* ── SECTION LABEL (ALL-CAPS above heading) ── */
.section-label {
  display: block;
  font-size: 10.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 8px;
}
.section-label-light { color: rgba(249,115,22,.65); }

/* ── PRESS / CREDIBILITY BAR ── */
.press-bar {
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 13px 0;
}
.press-bar-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  justify-content: center;
}
.press-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.28);
  white-space: nowrap; flex-shrink: 0;
}
.press-logo {
  font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,.45);
  white-space: nowrap; letter-spacing: -.2px;
  transition: color .2s; padding: 3px 0;
}
.press-logo.serif { font-style: italic; font-family: Georgia,'Times New Roman',serif; font-size:15px; }
.press-logo.mono  { font-family: 'Courier New', monospace; letter-spacing: .02em; }
.press-logo.bold  { font-weight: 900; font-size: 14.5px; }
.press-divider    { color: rgba(255,255,255,.12); font-size: 18px; }

/* ── URGENCY COUNTDOWN ── */
.urgency-bar {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 8px; padding: 8px 16px;
  margin-top: 22px;
}
.urgency-label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.7); }
.urgency-time  {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--accent);
  letter-spacing: .03em; min-width: 54px; display: inline-block;
}
.urgency-sub { font-size: 11px; color: rgba(255,255,255,.38); }

/* ── BUY DIRECT DARK SECTION ── */
.buy-direct { background: #060b14; }
.buy-direct-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
}
.buy-direct-header {
  padding: 52px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.buy-direct-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.buy-direct-item {
  padding: 44px 32px 44px 0;
  border-right: 1px solid rgba(255,255,255,.05);
  transition: background .2s;
}
.buy-direct-item:last-child { border-right: none; padding-right: 0; }
.buy-direct-item + .buy-direct-item { padding-left: 32px; }
.buy-direct-icon {
  width: 44px; height: 44px;
  background: rgba(249,115,22,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.buy-direct-stat-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 6px;
}
.buy-direct-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px; font-weight: 800;
  color: #fff; line-height: 1;
  letter-spacing: -2px;
}
.buy-direct-stat span { color: var(--accent); }
.buy-direct-title {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
  margin-bottom: 12px;
}
.buy-direct-desc {
  font-size: 13.5px; color: rgba(255,255,255,.35);
  line-height: 1.7; max-width: 210px;
}
@media(max-width:900px){
  .buy-direct-grid { grid-template-columns: repeat(2,1fr); }
  .buy-direct-item { border-bottom: 1px solid rgba(255,255,255,.05); }
  .buy-direct-stat { font-size: 36px; }
}
@media(max-width:600px){
  .buy-direct-grid { grid-template-columns: 1fr; }
  .buy-direct-item { padding: 28px 0; border-right: none; }
  .buy-direct-item + .buy-direct-item { padding-left: 0; border-top: 1px solid rgba(255,255,255,.05); }
}

/* ── HORIZONTAL BUNDLE CARDS ── */
.bundle-h-list { display: flex; flex-direction: column; gap: 20px; }
.bundle-h-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--accent);
  border-radius: 14px; overflow: hidden;
  display: grid; grid-template-columns: 240px 1fr;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
}
.bundle-h-card:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(15,30,53,.13); }
.bundle-h-img {
  background: #f5f5fa;
  border-right: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  min-height: 180px;
}
.bundle-h-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.bundle-h-body {
  padding: 24px 28px;
  display: flex; flex-direction: column; justify-content: center;
}
.bundle-h-includes {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 14px;
}
.bundle-h-tag {
  font-size: 11.5px; font-weight: 600;
  background: var(--surface); color: var(--text);
  padding: 3px 9px; border-radius: 4px;
  border: 1px solid var(--border);
}
@media(max-width:768px){
  .bundle-h-card { grid-template-columns: 1fr; }
  .bundle-h-img  { height: 180px; border-right: none; border-bottom: 1px solid var(--card-border); }
}

/* ── PRODUCT QUICK VIEW OVERLAY ── */
.product-img-wrap { position: relative; }
.product-quick-view {
  position: absolute; inset: 0;
  background: rgba(13,27,42,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
  backdrop-filter: blur(2px);
}
.product-quick-view span {
  font-size: 12px; font-weight: 800; color: #fff;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.6);
  padding: 8px 18px; border-radius: 5px;
  background: rgba(249,115,22,.8);
  display: flex; align-items: center; gap: 6px;
}
.product-card:hover .product-quick-view { opacity: 1; }

/* ── DARK FAQ ── */
.faq-dark .faq-item  { border-bottom-color: rgba(255,255,255,.08); }
.faq-dark .faq-q     { color: rgba(255,255,255,.9); }
.faq-dark .faq-q:hover { color: var(--accent); }
.faq-dark .faq-a     { color: rgba(255,255,255,.45); }

/* ── BLOG FEATURED CARD ── */
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.2; } }

/* Featured span-2 только на широких экранах */
.blog-card-featured { grid-column: span 2; }
@media(max-width:700px){ .blog-card-featured { grid-column: span 1 !important; } }

/* ══════════════════════════════════════
   MOBILE OVERRIDES — v7
   ══════════════════════════════════════ */

/* ── HERO ── */
@media(max-width:768px){
  .section-title { font-size: clamp(24px,6vw,38px) !important; }
  .urgency-bar { flex-wrap: wrap; gap: 6px; padding: 10px 14px; margin-top: 16px; }
  .urgency-time { font-size: 16px; }
  .urgency-label,.urgency-sub { font-size: 11px; }
}

/* ── PRESS BAR ── */
@media(max-width:600px){
  .press-bar-inner { gap: 12px; padding: 0 16px; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
  .press-label { display: none; }
  .press-divider { display: none; }
  .press-logo { font-size: 12px; flex-shrink: 0; }
}

/* ── PROMO BANNER ── */
@media(max-width:600px){
  .promo-banner { padding: 10px 16px; }
  .promo-inner { gap: 8px; }
  .promo-text { font-size: 12.5px; text-align: center; width: 100%; }
}

/* ── USE CARDS ── */
@media(max-width:480px){
  .use-card { padding: 18px 14px; }
  .use-icon { width: 42px; height: 42px; margin-bottom: 10px; }
  .use-card h3 { font-size: 13.5px; }
  .use-card p { font-size: 12px; }
}

/* ── BUY DIRECT ── */
@media(max-width:600px){
  .buy-direct-header { padding: 36px 0 28px; }
  .buy-direct-stat { font-size: 32px; }
}

/* ── SECTION PADDING on mobile ── */
@media(max-width:768px){
  section[style*="padding:64px"] { padding-top: 40px !important; padding-bottom: 40px !important; }
}

/* ── HOMEPAGE BEST SELLERS GRID ── */
@media(max-width:640px){
  .product-grid-4 { grid-template-columns: repeat(2,1fr) !important; gap: 12px !important; }
  .product-card .product-info { padding: 10px 12px 14px; }
  .product-brand { font-size: 9.5px; }
  .product-name { font-size: 13px; }
}
@media(max-width:380px){
  .product-grid-4 { grid-template-columns: 1fr !important; }
}

/* ── BUNDLE H-CARDS body padding ── */
@media(max-width:768px){
  .bundle-h-body { padding: 20px 20px !important; }
}

/* ── FOOTER ── */
@media(max-width:600px){
  .footer-inner { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── CAT NAV overflow scroll ── */
@media(max-width:600px){
  .cat-nav-inner { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
  .cat-nav-inner::-webkit-scrollbar { display: none; }
  .cat-nav-item { flex-shrink: 0; }
}

/* ── SHOP filters ── */
@media(max-width:600px){
  .filter-bar { flex-wrap: wrap; gap: 6px; }
  .filter-btn { font-size: 11.5px; padding: 6px 10px; }
}

/* ── PRODUCT DETAIL PAGE ── */
@media(max-width:768px){
  .pdp-grid { gap: 24px !important; }
  .pdp-title { font-size: clamp(20px,5vw,28px) !important; }
}

/* ── CART page ── */
@media(max-width:600px){
  .cart-item { grid-template-columns: 64px 1fr !important; gap: 10px !important; }
  .cart-item-img { width: 64px !important; height: 64px !important; }
}

/* ── FAQ on mobile ── */
@media(max-width:600px){
  .faq-q { font-size: 14px; padding: 15px 0; }
}

/* ── ANNOUNCEMENT BAR ── */
@media(max-width:480px){
  .ann-bar-wrap { padding: 0 12px; }
  .ann-slides { height: 40px; }
}
