:root {
  --color-bg: #21241c;
  --color-surface: #2b2f23;
  --color-surface-2: #333823;
  --color-border: #454c34;
  --color-text: #eceadf;
  --color-muted: #a3a98c;
  --color-accent: #6f8f3f;
  --color-accent-hover: #80a548;
  --color-danger: #c0392b;
  --radius: 6px;
  --side-pad: 32px;
}

* { box-sizing: border-box; }

html { zoom: 1.15; }
.product-card { zoom: 0.8696; }

body {
  margin: 0;
  font-family: "Oswald", "Segoe UI", Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  background: var(--color-surface);
  border-bottom: 2px solid var(--color-accent);
  position: sticky;
  top: 0;
  z-index: 20;
  background-image:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.08) 0 18px, transparent 18px 36px);
}

.header-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px var(--side-pad);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.logo-icon {
  color: var(--color-accent);
  font-size: 22px;
}

.logo-text {
  font-family: "Black Ops One", "Oswald", sans-serif;
  font-size: 19px;
  letter-spacing: 0.03em;
  color: #fff;
}

.logo-accent { color: var(--color-accent); }

.search-input {
  flex: 1;
  max-width: 480px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: inherit;
}

.search-input::placeholder { color: var(--color-muted); }

.search-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.header-nav {
  display: flex;
  gap: 8px;
}

.nav-btn {
  text-decoration: none;
  color: var(--color-text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 9px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: none;
  color: var(--color-text);
  cursor: pointer;
}

.cart-btn svg {
  width: 20px;
  height: 20px;
}

.cart-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-danger);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.quick-add-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.quick-add-btn:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.lang-switch {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang-switch button {
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 9px 12px;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
}

.lang-switch button.active {
  background: var(--color-accent);
  color: #fff;
}

.lang-switch button:not(.active):hover {
  color: var(--color-text);
}

/* ---------- Layout ---------- */
.layout {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 24px var(--side-pad);
}

.sidebar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
  align-self: start;
  position: sticky;
  top: 86px;
  max-height: calc(100vh - 106px);
  overflow-y: auto;
}

.sidebar-title {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin: 0 0 12px;
}

.sidebar-title:not(:first-child) {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.category-list li button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 9px 10px;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.category-list li button:hover {
  background: var(--color-surface-2);
}

.category-list li button.active {
  background: var(--color-accent);
  color: #fff;
}

.category-list .count {
  color: var(--color-muted);
  font-size: 12px;
}

.category-list li button.active .count {
  color: rgba(255,255,255,0.8);
}

.content-toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.content-toolbar h1 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 22px;
  margin: 0;
}

.results-count {
  color: var(--color-muted);
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s, border-color 0.15s;
}

.product-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transform: translateY(-2px);
  border-color: var(--color-accent);
}

.product-card .thumb-wrap {
  position: relative;
  width: 100%;
  height: 140px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.product-card .info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card .name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .price {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: auto;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-muted);
}

.rating-stars {
  color: var(--color-accent);
  letter-spacing: 1px;
}

.rating-stars.empty { color: var(--color-border); }

.badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  width: fit-content;
}

.badge.in-stock { background: rgba(111,143,63,0.25); color: #9fc46a; }
.badge.out-of-stock { background: rgba(192,57,43,0.25); color: #e6766a; }

.empty-state {
  color: var(--color-muted);
  padding: 40px 0;
  text-align: center;
}

/* ---------- Product page ---------- */
.breadcrumbs {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 18px;
}

.breadcrumbs a { color: var(--color-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-accent-hover); }

.product-page {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.gallery-main {
  width: 72%;
  aspect-ratio: 1 / 1;
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 12px;
  background: transparent;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gallery-thumbs img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  background: transparent;
}

.gallery-thumbs img.active {
  border-color: var(--color-accent);
}

.product-info h1 {
  font-family: "Oswald", sans-serif;
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.25;
}

.product-info .price {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 12px 0;
}

.product-info .meta {
  font-size: 13px;
  color: var(--color-muted);
  margin: 4px 0;
}

.buy-actions {
  display: flex;
  gap: 10px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 1px solid var(--color-border);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.btn-primary:hover { background: var(--color-accent-hover); }

.btn-outline {
  background: transparent;
  color: var(--color-text);
}

.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent-hover); }

.info-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 4px 0 0;
}

.info-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px;
  cursor: pointer;
  font: inherit;
  color: var(--color-text);
  text-align: left;
}

.info-tab svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.info-tab span {
  font-size: 13px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.info-tab.active {
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.03);
}

.info-tab-panel {
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--color-bg);
  padding: 12px;
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.4;
}

.info-tab-panel p { margin: 0; }

.requisites-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 10px;
}

.requisites-table td {
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.requisites-table tr:last-child td {
  border-bottom: none;
}

.requisites-table td:first-child {
  color: var(--color-muted);
  width: 90px;
}

.product-info .description {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
}

.product-desc-content .dp-wrap { background: transparent; }
.product-desc-content .dp-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
}
.product-desc-content h1, .product-desc-content h2, .product-desc-content h3 { color: var(--color-text); margin-bottom: 8px; }
.product-desc-content p, .product-desc-content li { color: var(--color-muted); }
.product-desc-content strong, .product-desc-content b { color: var(--color-text); }
.product-desc-content ul, .product-desc-content ol { padding-left: 20px; margin: 8px 0; }
.product-desc-content table { border-collapse: collapse; width: 100%; margin: 10px 0; }
.product-desc-content table th { background: var(--color-surface); color: var(--color-text); padding: 9px 12px; }
.product-desc-content table td { border: 1px solid var(--color-border); color: var(--color-muted); padding: 8px 12px; }
.product-desc-content .desc-text img { display: none; }

/* Blanket reset: strip any per-product inline style="" colors/backgrounds regardless of markup */
.product-desc-content * {
  background-color: transparent !important;
  background-image: none !important;
  border-color: var(--color-border) !important;
}
.product-desc-content p,
.product-desc-content li,
.product-desc-content span,
.product-desc-content div,
.product-desc-content td,
.product-desc-content a {
  color: var(--color-muted) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  border-width: 0 !important;
  border-style: none !important;
  text-align: left !important;
}
.product-desc-content h1,
.product-desc-content h2,
.product-desc-content h3,
.product-desc-content h4,
.product-desc-content strong,
.product-desc-content b { color: var(--color-text) !important; }
.product-desc-content h1 { font-size: 22px !important; }
.product-desc-content h2 { font-size: 18px !important; }
.product-desc-content h3, .product-desc-content h4 { font-size: 15px !important; }

/* Override per-product inline <style> blocks (Prom.ua export) so colors match site branding */
.product-desc-content [class*="dp-"] {
  background-color: transparent !important;
  color: var(--color-text) !important;
  border-color: var(--color-border) !important;
}
.product-desc-content [class*="dp-"] p,
.product-desc-content [class*="dp-"] li,
.product-desc-content [class*="dp-"] span { color: var(--color-muted) !important; }

.product-desc-content .dp-card,
.product-desc-content .dp-section,
.product-desc-content .dp-expert,
.product-desc-content .dp-scheme,
.product-desc-content .dp-steps,
.product-desc-content .dp-table-wrap {
  background: var(--color-bg) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
}

.product-desc-content .dp-hero {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%) !important;
  padding: 22px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.product-desc-content .dp-hero, .product-desc-content .dp-hero * { color: #fff !important; }

.product-desc-content .dp-hero-badge {
  background: rgba(255,255,255,0.18) !important;
  color: #fff !important;
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius);
  font-size: 12px;
}

.product-desc-content .dp-highlight,
.product-desc-content .dp-note {
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
  border-left: 4px solid var(--color-accent) !important;
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}

.product-desc-content .dp-title,
.product-desc-content .dp-subtitle,
.product-desc-content .dp-expert-title { color: var(--color-accent) !important; }

.product-desc-content .dp-cta {
  background: var(--color-accent) !important;
  border-radius: var(--radius);
  padding: 16px 20px;
}
.product-desc-content .dp-cta, .product-desc-content .dp-cta * { color: #fff !important; }

.product-desc-content .dp-list li {
  background: var(--color-bg) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius);
}
.product-desc-content .dp-list li:before { background: var(--color-accent) !important; }

.product-desc-content .dp-table th { background: var(--color-surface) !important; color: var(--color-text) !important; }
.product-desc-content .dp-table td { border: 1px solid var(--color-border) !important; color: var(--color-muted) !important; }

.product-desc-content .dp-sep { border-color: var(--color-border) !important; background: var(--color-border) !important; }
.product-desc-content .dp-img { border-radius: var(--radius); overflow: hidden; }

.desc-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}
.desc-gallery img {
  width: 100% !important;
  height: 110px !important;
  object-fit: contain !important;
  padding: 6px;
  box-sizing: border-box;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  cursor: zoom-in;
  transition: border-color 0.15s, transform 0.15s;
  background: var(--color-surface);
}
.desc-gallery img:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.desc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
}
.desc-lightbox[hidden] { display: none; }
.desc-lightbox .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: zoom-out;
}
.desc-lightbox img {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.desc-lightbox .modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  z-index: 1;
}
.product-desc-content a { color: var(--color-accent-hover); }

.specs-table {
  margin-top: 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
}

.specs-table h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin: 0 0 12px;
}

.specs-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.specs-table tr {
  border-bottom: 1px solid var(--color-border);
}

.specs-table tr:nth-child(odd) {
  background: rgba(255,255,255,0.02);
}

.specs-table td {
  padding: 8px 10px;
  vertical-align: top;
}

.specs-table td:first-child {
  color: var(--color-muted);
  width: 45%;
}

.related-block {
  margin-top: 36px;
}

.related-block h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

/* ---------- Info / FAQ pages ---------- */
.info-page {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  font-size: 15px;
  line-height: 1.7;
  width: 100%;
}

.info-page a { color: var(--color-accent-hover); }

.info-page h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  font-size: 17px;
  margin: 26px 0 10px;
}

.info-page h2:first-of-type { margin-top: 10px; }

.info-page h3 {
  font-size: 15px;
  margin: 18px 0 6px;
}

.info-page ul, .info-page ol {
  margin: 8px 0 14px;
  padding-left: 22px;
}

.info-page li { margin-bottom: 6px; }

.info-page p { margin: 0 0 12px; }

.info-page--wide { max-width: none; }

.info-page .toc {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 18px 14px 32px;
  margin-bottom: 22px;
  font-size: 14px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.info-subhead {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 18px;
  color: var(--color-accent);
  margin: 28px 0 14px;
}

.info-subhead:first-of-type { margin-top: 0; }

.specs-like-table {
  margin-top: 10px;
  border-collapse: collapse;
  font-size: 14px;
}

.specs-like-table td {
  padding: 6px 14px 6px 0;
  color: var(--color-muted);
}

.specs-like-table td:last-child {
  color: var(--color-text);
  font-weight: 600;
}

/* ---------- Reviews page ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.review-card-head {
  justify-content: center;
}

.review-stars {
  color: var(--color-accent);
  font-size: 15px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.leave-review {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
}

.leave-review h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0 0 8px;
}

.leave-review a { color: var(--color-accent-hover); }

/* ---------- Home page ---------- */
.trust-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px var(--side-pad);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.trust-item svg {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.trust-item strong {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
}

.carousel {
  position: relative;
}

.product-grid.carousel-track,
.category-tiles.carousel-track {
  display: flex;
  justify-content: center;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-track > * {
  flex: 0 0 250px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
}

.carousel-prev { left: -18px; }
.carousel-next { right: -18px; }
.carousel-arrow:hover { border-color: var(--color-accent); color: var(--color-accent-hover); }

.review-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  flex-shrink: 0;
}

.review-date {
  font-size: 12px;
  color: var(--color-muted);
}

.home-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px var(--side-pad);
}

.home-section .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 20px;
}

.section-head h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 22px;
  margin: 0;
}

.view-all-link {
  color: var(--color-accent-hover);
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
}

.view-all-link:hover { text-decoration: underline; }

.hero-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-banner {
  position: relative;
  display: block;
  height: 280px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-decoration: none;
}

.spotlight-wrap,
.spotlight-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-banner-photo {
  display: block;
  flex: 1 1 320px;
  max-width: 380px;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #05060a;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,17,11,0.1) 0%, rgba(10,11,7,0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  padding: 22px;
}

.hero-banner-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 22px;
  color: #fff;
  max-width: 80%;
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.category-tile {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.15s, transform 0.15s;
}

.category-tile:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.category-tile-name {
  font-weight: 600;
  font-size: 15px;
}

.category-tile-count {
  font-size: 12px;
  color: var(--color-muted);
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.brand-chip {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--color-text);
  text-decoration: none;
}

.brand-chip:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
}

.about-teaser {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-teaser h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 0 12px;
}

.about-teaser p {
  margin: 0 0 18px;
  line-height: 1.6;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  gap: 16px;
  justify-content: center;
}

.advantage-card {
  text-align: center;
}

.advantage-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
}

.advantage-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  color: var(--color-accent);
  margin: 0 0 8px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Cart modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.modal-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  max-width: 480px;
  width: 92%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-muted);
}

.modal-close:hover { color: var(--color-text); }

.cart-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0 0 16px;
}

.cart-empty {
  color: var(--color-muted);
  font-size: 14px;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-row-thumb {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-row-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-row-info {
  flex: 1;
  min-width: 0;
}

.cart-row-name {
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-row-price {
  font-size: 12px;
  color: var(--color-muted);
}

.cart-row-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.qty-btn {
  width: 22px;
  height: 22px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.qty-btn:hover { border-color: var(--color-accent); }

.cart-row-remove {
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}

.cart-row-remove:hover { color: var(--color-danger); }

.cart-total {
  font-size: 15px;
  margin-bottom: 16px;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
}

.cart-checkout-btn {
  width: 100%;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
}

.checkout-form input,
.checkout-form select {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--color-text);
  font-family: inherit;
  font-size: 14px;
}

.checkout-form input:focus,
.checkout-form select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.checkout-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.checkout-actions .btn {
  flex: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #181a13;
  color: #b5bba2;
  margin-top: 32px;
  border-top: 2px solid var(--color-accent);
}

.footer-inner {
  width: 100%;
  margin: 0 auto;
  padding: 32px var(--side-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-col h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  font-size: 15px;
  margin: 0 0 10px;
}

.footer-col p {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-col a {
  color: #b5bba2;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #2c2f1f;
  text-align: center;
  font-size: 12px;
  color: #6e7460;
  padding: 14px var(--side-pad);
}

@media (max-width: 860px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; max-height: none; }
  .product-layout { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; }
  .hero-row { grid-template-columns: 1fr; }
  .info-tabs { grid-template-columns: 1fr; }
}
