/* ==========================================================
   All in One — E-Commerce Storefront Stylesheet
   Aesthetic: Dark luxury marketplace. Warm amber accent.
   Fonts: Syne (display) + Satoshi (body)
   ========================================================== */

:root {
  --bg: #0b0a09;
  --bg-2: #141210;
  --bg-card: #1a1714;
  --bg-card-hover: #211e1a;
  --fg: #f0ece6;
  --fg-2: #9a9088;
  --fg-muted: #5c5550;
  --accent: #f0a500;
  --accent-dim: rgba(240, 165, 0, 0.12);
  --accent-border: rgba(240, 165, 0, 0.28);
  --success: #22c55e;
  --border: rgba(255, 255, 255, 0.07);
  --r: 10px;
  --r-sm: 6px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --max-w: 1160px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-dark {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.see-all {
  font-size: 14px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  transition: opacity 0.2s;
}
.see-all:hover { opacity: 0.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover { background: #ffb820; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(240,165,0,0.3); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--fg-2); background: rgba(255,255,255,0.04); }

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-buy { margin-top: 8px; font-size: 17px; padding: 16px 32px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 10, 9, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-2);
}
.nav-mobile a:hover { color: var(--fg); }

/* ===== HERO ===== */
.hero {
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0f0c08 0%, #0b0a09 60%);
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(240, 165, 0, 0.08);
  top: -100px;
  right: -100px;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(240, 100, 0, 0.05);
  bottom: -100px;
  left: 20%;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {}

.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--fg-muted);
  flex-wrap: wrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.hero-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.hero-product-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.hero-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hero-product-card:hover .hero-product-img img { transform: scale(1.05); }

.hero-product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px 4px;
}

.hero-product-name {
  padding: 0 14px 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
}

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 0 20px;
  letter-spacing: 0.03em;
}
.ticker-sep { color: var(--accent) !important; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products-grid-full {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-2);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.product-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.product-card-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
  flex: 1;
}

.product-card-desc {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.product-card-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-2);
  transition: color 0.2s;
}
.product-card:hover .product-card-cta { color: var(--accent); }

/* ===== PRODUCT BADGE (generic) ===== */
.product-badge {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
}

/* ===== TRENDING SECTION ===== */
.trending-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.trending-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.2s, border-color 0.2s;
}
.trending-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-border);
}

.trending-emoji {
  font-size: 36px;
  flex-shrink: 0;
}

.trending-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.trending-info p {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
  margin-bottom: 10px;
}
.trending-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}

/* ===== ARRIVALS ===== */
.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.arrival-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  transition: transform 0.2s, border-color 0.2s;
}
.arrival-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-border);
}

.arrival-img {
  width: 80px;
  height: 80px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.arrival-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrival-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.arrival-badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.arrival-info h3 {
  font-size: 15px;
  font-weight: 700;
}
.arrival-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
}

/* ===== VALUE PROPS ===== */
.value-section { background: var(--bg-2); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-item { text-align: center; }
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-item p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; }
.cta-box {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-2) 100%);
  border: 1px solid var(--accent-border);
  border-radius: 16px;
  padding: 60px 40px;
}
.cta-box h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.cta-box p {
  font-size: 18px;
  color: var(--fg-2);
  margin-bottom: 32px;
}

/* ===== PAGE HERO ===== */
.page-main { padding-top: 64px; }

.page-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 48px;
}

.page-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.page-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 520px;
}

/* ===== PRODUCT DETAIL ===== */
.product-section { padding: 60px 0 80px; }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.breadcrumb a { color: var(--fg-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb span { color: var(--fg-muted); }

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

.product-gallery {}

.product-img-main {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.product-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badges-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
}

.product-badge-lg {
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.product-cat-lg {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-info {}

.product-emoji-big {
  font-size: 44px;
  margin-bottom: 12px;
}

.product-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}
.stars { color: var(--accent); font-size: 18px; }
.rating-count { font-size: 14px; color: var(--fg-2); }

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.product-price-big {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
}
.product-price-was {
  font-size: 18px;
  color: var(--fg-muted);
  text-decoration: line-through;
}
.product-discount {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 3px 10px;
  border-radius: 20px;
}

.product-desc {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.product-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--fg-2);
}
.feature-check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.product-trust-row {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-secure {
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 10px;
}

/* ===== SUCCESS PAGE ===== */
.success-section {
  padding: 80px 0 120px;
}

.success-container {
  max-width: 560px;
  text-align: center;
}

.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.success-sub {
  font-size: 18px;
  color: var(--fg-2);
  margin-bottom: 36px;
}

.success-product {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-bottom: 36px;
  text-align: left;
}
.success-product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--r-sm);
}
.success-product-name { font-weight: 700; margin-bottom: 4px; }
.success-product-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.success-trust {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===== 404 PAGE ===== */
.not-found-section { padding: 100px 0; }
.not-found-container {
  max-width: 480px;
  text-align: center;
}
.not-found-emoji {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--accent);
}
.not-found-container h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}
.not-found-container p {
  font-size: 18px;
  color: var(--fg-2);
  margin-bottom: 36px;
}
.not-found-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.about-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.about-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 14px;
}
.about-text p {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-text li {
  font-size: 16px;
  color: var(--fg-2);
}
.about-cta-box {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--r);
  padding: 36px;
  text-align: center;
  position: sticky;
  top: 80px;
}
.about-cta-icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 12px;
}
.about-cta-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-cta-box p {
  font-size: 15px;
  color: var(--fg-2);
  margin-bottom: 24px;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-item > span {
  font-size: 32px;
  flex-shrink: 0;
}
.contact-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item p { font-size: 15px; color: var(--fg-2); }
.contact-item small { font-size: 13px; color: var(--fg-muted); }

/* ===== TRUST SECTION ===== */
.trust-section { padding: 40px 0; }
.trust-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-display);
}
.trust-item > span { font-size: 24px; }
.trust-item p { color: var(--fg-2); }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding-top: 60px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge {
  font-size: 13px;
  color: var(--fg-2);
  font-family: var(--font-display);
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--fg-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--fg); }

.footer-newsletter h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-newsletter p {
  font-size: 14px;
  color: var(--fg-2);
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--fg);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: var(--fg-muted); }
.newsletter-form input:focus { border-color: var(--accent-border); }
.newsletter-form button {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--r-sm);
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #ffb820; }

.newsletter-msg {
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}
.newsletter-msg.success { color: var(--success); }
.newsletter-msg.error { color: #ef4444; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-grid { grid-template-columns: 1fr 1fr; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

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

  .about-content { grid-template-columns: 1fr; }
  .about-cta-box { position: static; }

  .contact-layout { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-newsletter { grid-column: span 1; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 40px; }
  .value-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
