*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://googleapis.com');

:root {
  --bg-dark: #1a1a1a;
  --bg-card: #242424;
  --bg-header: #1F2023;
  --accent: #b8933f;
  --accent-hover: #d4a84a;
  --text-primary: #ffffff;
  --text-muted: #aaaaaa;
  --border-card: rgba(184,147,63,0.4);
  --border-review: rgba(255,255,255,0.15);
}

body {
  font-family: 'Sofia Sans Condensed', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
}

/* ===== HEADER ===== */
header {
  background: var(--bg-header);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons a {
  color: var(--text-primary);
  text-decoration: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  transition: border-color 0.2s;
}

.social-icons a:hover { border-color: var(--accent); }

.social-icons svg { width: 14px; height: 14px; fill: currentColor; }

.header-nav {
  display: flex;
  gap: 32px;
  margin-left: 20px;
}

.header-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--accent); }

.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

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

.logo-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-right a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.header-right a:hover { color: var(--accent); }

.cart-icon {
  cursor: pointer;
  color: var(--text-primary);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}

.cart-icon:hover { color: var(--accent); }
.cart-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.cart-icon.has-items { color: #3b82f6; }
.cart-icon.has-items:hover { color: #60a5fa; }

.cart-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  background: #3b82f6;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  pointer-events: none;
}

.cart-badge:empty { display: none; }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  overflow: hidden;
  background:var(--bg-dark);
  height: 420px;
  cursor: default;
}

.hero-slides {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.6s ease;
}

.hero-slide {
  width: 50%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

.hero-slide-1 .hero-slide-bg {
  background: linear-gradient(135deg, #3d2b1a 0%, #5a3d22 30%, #7a5530 60%, #4a3020 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-inner-frame {
  width: 340px;
  height: 300px;
  background: rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.hero-product-label {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-product-bottle {
  width: 80px;
  height: 120px;
  background: #111;
  border-radius: 6px 6px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--accent);
  flex-direction: column;
  gap: 4px;
}

.hero-bottle-text {
  font-family: 'Oswald', sans-serif;
  font-size: 8px;
  color: var(--accent);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

/* Barber background decoration */
.hero-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-decor-comb {
  position: absolute;
  left: 40px;
  bottom: 60px;
  width: 120px;
  height: 30px;
  background: #1a1a1a;
  border-radius: 4px;
  transform: rotate(-10deg);
}

.hero-decor-comb::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 8px;
  right: 8px;
  height: 16px;
  background: repeating-linear-gradient(90deg, #1a1a1a 0px, #1a1a1a 4px, transparent 4px, transparent 8px);
}

.hero-decor-scissors {
  position: absolute;
  right: 80px;
  top: 80px;
  width: 80px;
  height: 80px;
  opacity: 0.6;
  color: rgba(200,180,150,0.8);
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photos {
  display: flex;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}

.hero-photo-frame {
  width: 60px;
  height: 80px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
  font-size: 18px;
}

.hero-arrow:hover { background: rgba(184,147,63,0.6); }
.hero-arrow.left { left: 16px; }
.hero-arrow.right { right: 16px; }

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  padding: 48px 0 32px;
  letter-spacing: 0.05em;
}

/* ===== PRODUCTS GRID ===== */
.products-section {
  background: var(--bg-dark);
  padding: 0 48px 60px;
}

.shop-categories {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.shop-cat-btn {
  padding: 8px 28px;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Sofia Sans Condensed', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.shop-cat-btn:hover { border-color: var(--accent); color: #fff; }
.shop-cat-btn.active { border-color: var(--accent); color: var(--accent); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid--centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid--centered .product-card {
  width: calc(25% - 18px);
}

.product-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.product-review-row {
  align-items: center;
  gap: 16px;
}

.product-promo-text {
  background: #d93025;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 3px;
  white-space: nowrap;
}

.product-promo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d93025;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 2;
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #2c2c2c, #333);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 20px;
  line-height: 1.4;
}

.product-info {
  padding: 14px 16px;
}

.product-name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  min-height: 40px;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.product-price {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

.product-price .old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 400;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.btn-cart {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  font-family: 'Sofia Sans Condensed', sans-serif;
  white-space: nowrap;
}

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

.btn-cart--in {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

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

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--bg-dark);
  padding: 0 48px 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  border: 1.5px solid var(--border-review);
  border-radius: 4px;
  padding: 18px 16px;
  background: var(--bg-card);
}

.review-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.review-stars {
  color: #f5a623;
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-text.expanded {
  display: block;
  overflow: visible;
}

.review-expand-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 10px;
  font-family: inherit;
}

.review-expand-btn:hover { color: var(--accent-hover); }

.review-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
  opacity: 0.7;
}

.review-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-product-img {
  width: 50%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.review-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-logo svg {
  width: 80px;
  height: 80px;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 28px 0;
}

.reviews-nav button {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

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

.btn-add-review {
  display: block;
  margin: 0 auto 60px;
  background: none;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  font-family: 'Sofia Sans Condensed', sans-serif;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

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

/* ===== FOOTER ===== */
footer {
  background: var(--bg-header);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}


.footer-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
  display: block;
}

.footer-logo:hover { opacity: 1; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-right,
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-social a {
  color: var(--text-primary);
  text-decoration: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  transition: border-color 0.2s;
}

.footer-social a:hover { border-color: var(--accent); }
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }

.footer-created {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-created a {
  color: var(--accent);
  text-decoration: none;
}

/* ===== PARTNERS ===== */
.partners-section {
  background: var(--bg-dark);
  padding: 0 48px 60px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 4px;
  padding: 17px 14px;
}


.partner-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}

.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-icon {
  width: 34px;
  height: 34px;
  background: rgba(184,147,63,0.12);
  border: 1.5px solid var(--border-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.partner-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.partner-type {
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.partner-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.partner-city {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-city-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.partner-links {
  display: flex;
  gap: 6px;
  margin-top: 0;
}

.partner-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.partner-link-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.partner-link-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.partner-address {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.partner-phone {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* CTA */
.cta-section {
  background: var(--bg-card);
  border-top: 1px solid rgba(184,147,63,0.2);
  padding: 30px 48px;
  text-align: center;
}

.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.cta-title span { color: var(--accent); }

.cta-text {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-perks {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cta-perk-icon {
  font-size: 28px;
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
}

.cta-perk-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  max-width: 100px;
  line-height: 1.4;
}

.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 2px;
  font-family: 'Sofia Sans Condensed', sans-serif;
  text-transform: uppercase;
  transition: background 0.2s;
  text-decoration: none;
}

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

.cta-contact-label {
  font-size: 13px;
  color: var(--accent-hover);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-contact-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.cta-contact-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cta-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* ===== ABOUT ===== */
.about-hero {
  padding: 72px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-text { max-width: 540px; }

.about-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-title {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-title span { color: var(--accent); }

.about-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-logo-big {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-big img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/* STATS */
.stats-section {
  background: var(--bg-card);
  border-top: 1px solid rgba(184,147,63,0.2);
  border-bottom: 1px solid rgba(184,147,63,0.2);
  padding: 48px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* TIMELINE */
.timeline-section {
  background: var(--bg-dark);
  padding: 0 48px 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(184,147,63,0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-dark);
  box-shadow: 0 0 0 3px rgba(184,147,63,0.25);
}

.timeline-year {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.timeline-event {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* VALUES */
.values-section {
  background: var(--bg-card);
  padding: 0 48px 72px;
  border-top: 1px solid rgba(184,147,63,0.2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--bg-dark);
  border: 1.5px solid var(--border-card);
  border-radius: 4px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s;
}

.value-card:hover { border-color: var(--accent); }

.value-icon {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.value-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.value-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== BLOG ===== */
.blog-section {
  background: var(--bg-dark);
  padding: 0 48px 72px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.article-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: border-color 0.2s;
  cursor: pointer;
}

.article-card:hover { border-color: var(--accent); }

.article-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2010, #3a3020);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 16px;
  line-height: 1.4;
}

.article-img-link { display: block; }
.article-img-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

.blog-post-section { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.blog-back { color: var(--accent); text-decoration: none; font-size: 14px; display: inline-block; margin-bottom: 24px; }
.blog-back:hover { color: var(--accent-hover); }
.blog-post-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.blog-post-title { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 600; color: #fff; letter-spacing: 0.03em; margin-bottom: 28px; line-height: 1.2; }
.blog-post-cover { margin-bottom: 32px; }
.blog-post-cover img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.blog-post-content { font-size: 15px; line-height: 1.8; color: var(--text-muted); }

.article-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.article-date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.article-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}

.article-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.article-read-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.article-read-more:hover { color: var(--accent-hover); }

.blog-sidebar {
  position: sticky;
  top: 116px;
  align-self: start;
}

.sidebar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,147,63,0.3);
}

.sidebar-list { list-style: none; }

.sidebar-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }

.sidebar-list a {
  display: block;
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.sidebar-list a:hover { color: #fff; }

.sidebar-list .s-date {
  display: block;
  font-size: 11px;
  color: rgba(170,170,170,0.5);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* ===== FAQ ===== */
.faq-page {
  background: var(--bg-dark);
  padding: 0 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.faq-nav a {
  display: inline-block;
  padding: 9px 24px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

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

.faq-category {
  margin-bottom: 56px;
  scroll-margin-top: 120px;
}

.faq-category-title {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184,147,63,0.3);
}

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.faq-item[open] summary .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(180deg);
}

.faq-item[open] summary { color: var(--accent); }

.faq-answer {
  padding: 0 4px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 760px;
}

.faq-answer a { color: var(--accent); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

/* ===== PRODUCT PAGE ===== */
.product-page {
  background: var(--bg-dark);
  padding: 48px 48px 80px;
}

.product-layout {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 12px;
  align-items: start;
}

/* GALLERY */
.product-gallery {
  flex-shrink: 0;
  width: 340px;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.product-main-img {
  flex: 1;
  aspect-ratio: 1;
  margin: 0;
  background: linear-gradient(145deg, #2a2010, #3a3020);
  border: 1.5px solid var(--border-card);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.1em;
  overflow: hidden;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-thumb {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, #2a2010, #3a3020);
  border: 1.5px solid var(--border-card);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.product-thumb:hover { border-color: var(--accent); }
.product-thumb.active { border-color: var(--accent); border-width: 2px; }

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumbs {
  display: flex;
  gap: 10px;
}

.product-thumb {
  width: 72px;
  height: 72px;
  border: 1.5px solid var(--border-card);
  border-radius: 4px;
  background: linear-gradient(145deg, #2a2010, #3a3020);
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--accent);
}

/* DETAILS */
.product-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-heading {
  font-family: 'Sofia Sans Condensed', sans-serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.product-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
}

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

.product-price-block {
  margin-bottom: 20px;
}

.product-price-current {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.product-price-old {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 10px;
  font-weight: 400;
}

.product-price-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 10px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

.product-short-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* VOLUME SELECTOR */
.selector-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.volume-options {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.volume-option {
  position: relative;
}

.volume-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.volume-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 10px 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1.3;
}

.volume-option label .vol-weight {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.volume-option label .vol-price {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.volume-option input[type="radio"]:checked + label {
  border-color: var(--accent);
  background: rgba(184,147,63,0.1);
}

.volume-option label:hover {
  border-color: rgba(184,147,63,0.6);
}

.volume-option input[type="radio"]:checked + label .vol-weight {
  color: var(--accent);
}

/* ADD TO CART */
.product-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  width: 24px;
  height: 48px;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.qty-btn:hover {
  background: rgba(184,147,63,0.15);
  color: var(--accent);
}

.qty-value {
  width: 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  border: none;
  background: none;
  pointer-events: none;
}

.btn-add-to-cart {
  flex: none;
  width: 160px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  font-family: 'Sofia Sans Condensed', sans-serif;;
  transition: background 0.2s;
}

.btn-add-to-cart:hover { background: var(--accent-hover); }

.btn-add-to-cart.btn-cart--in {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-add-to-cart.btn-cart--in:hover {
  background: transparent;
  color: var(--accent-hover);
}

.btn-wishlist {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  color: var(--text-muted);
  flex-shrink: 0;
}

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

.btn-wishlist svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.product-review-row {
  display: flex;
  justify-content: flex-start;
  padding: 0 0 16px 48px;
  max-width: 1296px;
  margin: 0 auto;
}

.btn-review {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 32px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

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

/* PRODUCT META */
.product-meta {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2;
}

.product-meta span { color: #fff; }

/* ACCORDION */
.product-accordion-section {
  max-width: 1200px;
  margin: 0 auto 72px;
}

.accordion-item {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.accordion-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Sofia Sans Condensed', sans-serif;
  cursor: pointer;
  transition: color 0.2s;
}

.accordion-btn:hover { color: #fff; }

.accordion-item.active .accordion-btn { color: var(--accent); }

.accordion-arrow {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding-bottom: 24px;
}

.accordion-item.active .accordion-body {
  display: block;
}

.tab-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 1100px;
}

.tab-text p { margin-bottom: 16px; }
.tab-text p:last-child { margin-bottom: 0; }

.tab-text ul {
  list-style: none;
  margin-bottom: 16px;
}

.tab-text ul li {
  padding: 6px 0;
}

/* ===== CART PAGE ===== */
.cart-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cart-form-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cart-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.cart-label-req { color: var(--accent); }

.cart-input {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: 'Sofia Sans Condensed', sans-serif;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.2s;
}

.cart-input:focus { border-color: var(--accent); }
.cart-input::placeholder { color: var(--text-muted); }
.cart-input--invalid { border-color: #e74c3c !important; }
.cart-input--invalid:focus { border-color: #e74c3c !important; }

.cart-textarea {
  resize: vertical;
  min-height: 90px;
}

.req-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: -8px;
}

.req-hint span {
  color: var(--accent);
}

.cart-items-col {
  display: flex;
  flex-direction: column;
}

.autocomplete-wrap {
  position: relative;
}

.autocomplete-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-top: none;
  border-radius: 0 0 6px 6px;
  z-index: 50;
  max-height: 220px;
  overflow-y: auto;
}

.autocomplete-dropdown.open { display: block; }

.autocomplete-item {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.autocomplete-item:hover {
  background: rgba(184,147,63,0.12);
  color: #fff;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
}

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

.cart-item-name {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Sofia Sans Condensed', sans-serif;
  margin-bottom: 4px;
}

.cart-item-vol {
  font-size: 13px;
  color: var(--text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  min-width: 72px;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: #ef4444; }

.cart-summary {
  margin-top: 32px;
  max-width: 320px;
  margin-left: auto;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Sofia Sans Condensed', sans-serif;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ===== CONTACTS PAGE ===== */
.contacts-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 60px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.contacts-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--accent);
  border-bottom: 1px solid rgba(184,147,63,0.3);
  padding-bottom: 12px;
}

.contacts-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contacts-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contacts-value {
  font-size: 15px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a.contacts-value:hover { color: var(--accent); }

.contacts-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts-block-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contacts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 12px;
  position: relative;
}

.contacts-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ===== OFERTA PAGE ===== */
.oferta-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.oferta-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: -24px;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.oferta-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oferta-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 24px;
}

.oferta-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.oferta-requisites {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oferta-requisites h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.oferta-requisites p {
  font-size: 14px;
  color: var(--text-primary);
}

.oferta-requisites a {
  color: var(--accent);
  text-decoration: none;
}

.oferta-requisites a:hover {
  color: var(--accent-hover);
}

/* ===== REVIEW PAGE ===== */
.review-page {
  background: var(--bg-dark);
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 24px 80px;
}

.review-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 48px;
  width: 100%;
  max-width: 560px;
}

.review-back a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.review-back a:hover { color: var(--accent); }

.review-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.06em;
  margin: 16px 0 4px;
  color: var(--text-primary);
}

.review-product-name {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.review-field label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.review-field input,
.review-field textarea {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-primary);
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.review-field input:focus,
.review-field textarea:focus {
  border-color: var(--accent);
}

.review-counter {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
}

.btn-submit-review {
  background: var(--accent);
  border: none;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn-submit-review:hover { background: var(--accent-hover); }

.review-error {
  font-size: 13px;
  color: #e05555;
  min-height: 18px;
}

.review-success {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0 0;
  text-align: center;
}

.review-success svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-success p {
  font-size: 18px;
  color: var(--text-primary);
}

.review-success a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.review-success a:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid--centered .product-card {
    width: calc(50% - 12px);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-layout {
    flex-direction: column;
  }

  .product-gallery {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-grid--centered .product-card {
    width: 100%;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .product-page {
    padding: 24px 16px 60px;
  }

  .product-review-row {
    padding-left: 0;
  }

  #review-inline {
    padding: 0 16px;
  }

  .product-accordion-section {
    padding: 0 16px;
  }
}

/* ===== BURGER BUTTON ===== */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
  position: relative;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  justify-content: flex-end;
}

.mobile-menu.open { display: flex; }

.mobile-menu-nav {
  background: var(--bg-header);
  width: 280px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 4px;
  overflow-y: auto;
}

.mobile-menu-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-menu-nav a:hover { color: var(--accent); }

.mobile-menu-social {
  display: flex;
  gap: 10px;
  padding: 24px 32px 32px;
  background: var(--bg-header);
  margin-top: auto;
  width: 280px;
  position: fixed;
  bottom: 0;
  right: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-social a {
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  transition: border-color 0.2s;
}

.mobile-menu-social a:hover { border-color: var(--accent); }
.mobile-menu-social svg { width: 15px; height: 15px; fill: currentColor; }

@media (max-width: 1080px) {
  .burger-btn { display: flex; }
  .header-left { display: none; }
  .header-right { gap: 16px; }
  .header-right a:not(.cart-icon) { display: none; }

  /* FOOTER VERTICAL STACK */
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .footer-center {
    position: static;
    transform: none;
    order: -1;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-left {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ===== ABOUT PAGE ===== */
@media (max-width: 1080px) {
  .about-hero {
    flex-direction: column-reverse;
    padding: 40px 24px;
    gap: 32px;
    text-align: center;
  }

  .about-hero-text { max-width: 100%; }

  .about-logo-big img { width: 180px; height: 180px; }

  .stats-section { padding: 32px 24px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .values-section { padding: 0 24px 48px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .timeline-section { padding: 0 24px 48px; }
}

@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 16px; }

  .values-grid { grid-template-columns: 1fr; }
}

/* ===== PARTNERS PAGE ===== */
@media (max-width: 1080px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .partners-grid { grid-template-columns: 1fr; }
}

/* ===== BLOG PAGE ===== */
@media (max-width: 1080px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar { display: none; }

  .blog-section { padding: 0 24px 48px; }
}

/* ===== CART PAGE ===== */
@media (max-width: 1080px) {
  .cart-page { padding: 0 24px 60px; }

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cart-items-col { order: -1; }
}

@media (max-width: 640px) {
  .cart-item { gap: 12px; }

  .cart-item-controls { gap: 12px; }

  .cart-item-img { width: 60px; height: 60px; }
}
