/* ============================
   armachines — Premium Dark Gold Theme
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #08080c;
  --bg-secondary: #0f0f16;
  --bg-card: #13131a;
  --bg-card-hover: #1a1a25;
  --border: #252535;
  --border-light: #1e1e2c;
  --gold: #d4a843;
  --gold-light: #e8c06a;
  --gold-dark: #a07820;
  --gold-glow: rgba(212, 168, 67, 0.15);
  --text-primary: #f0ede8;
  --text-secondary: #9a9590;
  --text-muted: #5c5955;
  --accent: #d4a843;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================
   HEADER
   ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 12, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-brand span { color: var(--text-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.lang-toggle button {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.lang-toggle button.active {
  background: var(--gold);
  color: var(--bg-primary);
}
.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.cart-btn:hover { border-color: var(--gold); }
.cart-btn svg { width: 20px; height: 20px; stroke: var(--text-secondary); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-showroom.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,12,0.95) 0%, rgba(8,8,12,0.5) 50%, rgba(8,8,12,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-pill-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
}
.hero-heading em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.hero-cta svg { width: 18px; height: 18px; }
.hero-trust-row {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-badge svg { width: 14px; height: 14px; stroke: var(--gold); }

/* ============================
   CATEGORY FILTERS
   ============================ */
.filters-section {
  padding: 48px 24px 0;
  max-width: 1280px;
  margin: 0 auto;
}
.filter-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.filter-pills::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}

/* ============================
   PRODUCTS GRID
   ============================ */
.products-section {
  padding: 40px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(212,168,67,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.product-card[data-hidden="true"] { display: none; }
.product-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-secondary);
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(8,8,12,0.8);
  color: var(--gold);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,168,67,0.3);
}
.product-body {
  padding: 20px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.product-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.product-price-unit {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}
.add-to-cart-btn {
  padding: 10px 18px;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
}
.add-to-cart-btn:hover { background: var(--gold-light); }
.add-to-cart-btn.added {
  background: var(--bg-card-hover);
  color: var(--gold);
  border: 1px solid var(--gold);
}

/* ============================
   GUIDES SECTION
   ============================ */
.guides-section {
  padding: 80px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guides-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.guide-card:hover { border-color: rgba(212,168,67,0.3); }
.guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.guide-body { padding: 24px; }
.guide-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.guide-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,168,67,0.1);
  padding: 3px 8px;
  border-radius: 4px;
}
.guide-read-time {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.guide-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.guide-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.guide-expand {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.guide-expand:hover { background: rgba(212,168,67,0.1); }
.guide-detail {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.guide-detail.open { display: block; }
.guide-detail p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.guide-detail p:last-child { margin-bottom: 0; }

/* ============================
   TRUST SECTION
   ============================ */
.trust-section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.trust-card:hover { border-color: rgba(212,168,67,0.3); transform: translateY(-2px); }
.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,168,67,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.trust-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.trust-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.trust-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================
   NEWSLETTER
   ============================ */
.newsletter-section {
  padding: 80px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.newsletter-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}
.newsletter-benefits li svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { appearance: none; cursor: pointer; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.consent-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.btn-primary {
  padding: 14px 24px;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
  width: 100%;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.newsletter-success {
  display: none;
  padding: 20px;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 15px;
  text-align: center;
}
.newsletter-success.show { display: block; }

/* ============================
   FAQ
   ============================ */
.faq-section {
  padding: 80px 24px;
  max-width: 860px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(212,168,67,0.2); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin: 0; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-about-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 500px;
}
.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-contact-link {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-link:hover { color: var(--gold-light); }

/* ============================
   CART DRAWER
   ============================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.cart-close-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.cart-close-btn:hover { border-color: var(--gold); }
.cart-close-btn svg { width: 16px; height: 16px; stroke: var(--text-secondary); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}
.cart-empty svg { width: 40px; height: 40px; stroke: var(--text-muted); opacity: 0.5; }
.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cart-item-img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg-primary);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}
.cart-item-remove {
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}
.cart-item-remove:hover { border-color: #e05555; }
.cart-item-remove svg { width: 14px; height: 14px; stroke: var(--text-muted); }
.cart-item-remove:hover svg { stroke: #e05555; }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--text-secondary);
}
.cart-total-row span:last-child {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}
.cart-checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.cart-checkout-btn:hover { background: var(--gold-light); }
.cart-continue-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.cart-continue-btn:hover { border-color: var(--gold); color: var(--gold); }
.paypal-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: #FFC439;
  color: #003087;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-bottom: 8px;
}
.paypal-checkout-btn:hover { background: #e6b030; }
.paypal-divider {
  text-align: center;
  position: relative;
  margin: 4px 0;
  color: var(--text-muted);
  font-size: 12px;
}
.paypal-divider::before,
.paypal-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}
.paypal-divider::before { left: 0; }
.paypal-divider::after { right: 0; }

/* ============================
   CHECKOUT MODAL
   ============================ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.checkout-overlay.open { opacity: 1; pointer-events: all; }
.checkout-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
}
.checkout-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-secondary);
  z-index: 1;
}
.checkout-modal-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.checkout-modal-close {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.checkout-modal-close svg { width: 16px; height: 16px; stroke: var(--text-secondary); }
.checkout-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.checkout-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus { border-color: var(--gold); }
.checkout-form input::placeholder,
.checkout-form textarea::placeholder { color: var(--text-muted); }
.checkout-form select { appearance: none; cursor: pointer; }
.checkout-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkout-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.checkout-form .btn-primary { margin-top: 4px; }
.checkout-success {
  display: none;
  padding: 48px 24px;
  text-align: center;
}
.checkout-success.show { display: block; }
.checkout-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(212,168,67,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.checkout-success-icon svg { width: 32px; height: 32px; stroke: var(--gold); }
.checkout-success-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.checkout-success-body {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}
.checkout-success .btn-primary { max-width: 300px; margin: 0 auto; display: block; }

/* ============================
   LEGAL PAGES
   ============================ */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.legal-page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: var(--transition);
}
.legal-page-back:hover { color: var(--gold); }
.legal-page-back svg { width: 14px; height: 14px; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.legal-intro {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}
.legal-section {
  margin-bottom: 40px;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.legal-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.contact-page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: var(--transition);
}
.contact-page-back:hover { color: var(--gold); }
.contact-page-back svg { width: 14px; height: 14px; }
.contact-page h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.contact-page-intro {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-success {
  display: none;
  padding: 24px;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 15px;
  text-align: center;
}
.contact-success.show { display: block; }

/* ============================
   ABOUT PAGE
   ============================ */
.about-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.about-page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: var(--transition);
}
.about-page-back:hover { color: var(--gold); }
.about-page-back svg { width: 14px; height: 14px; }
.about-page h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.about-page-intro {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.8;
}
.about-section { margin-bottom: 48px; }
.about-section h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.about-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================
   UTILITY
   ============================ */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.category-ico {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.section-header.centered { text-align: center; }
.hidden { display: none !important; }

/* ============================
   RTL SUPPORT
   ============================ */
html[dir="rtl"] .header-inner { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links a { direction: rtl; }
html[dir="rtl"] .hero-content { text-align: right; }
html[dir="rtl"] .hero-stats { flex-direction: row-reverse; }
html[dir="rtl"] .hero-trust-row { flex-direction: row-reverse; }
html[dir="rtl"] .product-footer { flex-direction: row-reverse; }
html[dir="rtl"] .trust-card { text-align: center; }
html[dir="rtl"] .newsletter-inner { grid-template-columns: 1fr 1fr; }
html[dir="rtl"] .newsletter-benefits { align-items: flex-end; }
html[dir="rtl"] .faq-question { text-align: right; flex-direction: row-reverse; }
html[dir="rtl"] .footer-inner { text-align: right; }
html[dir="rtl"] .footer-grid { direction: rtl; }
html[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
html[dir="rtl"] .cart-drawer { right: auto; left: 0; transform: translateX(-100%); }
html[dir="rtl"] .cart-drawer.open { transform: translateX(0); }
html[dir="rtl"] .cart-item { flex-direction: row-reverse; }
html[dir="rtl"] .checkout-form-row { direction: rtl; }
html[dir="rtl"] .checkout-subtitle { text-align: right; }
html[dir="rtl"] .contact-form .form-row { direction: rtl; }
html[dir="rtl"] .about-stats { direction: rtl; }
html[dir="rtl"] .guide-meta { flex-direction: row-reverse; }
html[dir="rtl"] .guide-body { text-align: right; }
html[dir="rtl"] .newsletter-benefits li { flex-direction: row-reverse; }
html[dir="rtl"] .hero-cta { flex-direction: row-reverse; }
html[dir="rtl"] .product-badge { left: auto; right: 12px; }

/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-stats { gap: 24px; }
  .hero-heading { font-size: 36px; }
  .section-title { font-size: 28px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cart-drawer { width: 100%; }
  .checkout-form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .hero-trust-row { gap: 12px; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}