/* =============================================================
   TGV SHOP THEME - Main Stylesheet  v1.1.0
   ============================================================= */

/* RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  --red: #c0392b;
  --red-dark: #a93226;
  --black: #000000;
  --dark: #1a1a1a;
  --dark2: #111111;
  --gray: #555555;
  --gray-light: #d0d0d0;
  --bg-light: #d9d9d9;
  --white: #ffffff;
  --border: #cccccc;
  --ann-bg: #2b2b2b;
  --nav-bg: #111111;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  --ease: 0.25s ease;
  --color-primary: #c0392b;
  --color-success: #16a34a;
  --color-footer-text: rgba(255,255,255,0.7);
  --color-bg-card: #1a1a1a;
  --color-border: #e0e0e0;
  --color-text-muted: #888888;
  --color-white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: #ffffff;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* BUTTON SYSTEM
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease);
  border: 2px solid transparent;
  line-height: 1;
  padding: 11px 28px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #ffffff; }

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); color: #ffffff; }

.btn-dark-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-dark-outline:hover { background: var(--dark); color: #ffffff; }

.btn-dark {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}
.btn-dark:hover { background: #333333; border-color: #333333; color: #ffffff; }

.btn-sm { padding: 7px 18px; font-size: 0.66rem; }
.btn-lg { padding: 14px 40px; font-size: 0.78rem; }

/* ANNOUNCEMENT BAR
---------------------------------------------------------------- */
.announcement-bar {
  background: var(--ann-bg);
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ann-left { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ann-center { display: flex; align-items: center; gap: 8px; }
.ann-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.ann-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity var(--ease);
}
.ann-right a:hover { opacity: 1; }
.ann-sep { color: rgba(255,255,255,0.4); }

.ann-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #1877f2;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* HEADER MAIN ROW
---------------------------------------------------------------- */
.header-main-row {
  background: var(--ann-bg);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.header-search-form {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  width: 280px;
  flex-shrink: 0;
}

.header-search-form input {
  background: #ffffff;
  border: none;
  outline: none;
  padding: 9px 14px;
  font-size: 0.85rem;
  color: var(--dark);
  width: 100%;
}
.header-search-form input::placeholder { color: #999999; }

.header-search-form button {
  background: var(--red);
  border: none;
  padding: 0 16px;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  transition: background var(--ease);
  flex-shrink: 0;
}
.header-search-form button:hover { background: var(--red-dark); }
.header-search-form button svg { width: 16px; height: 16px; }

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

.header-logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  background: var(--red);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.header-login-btn {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  transition: all var(--ease);
}
.header-login-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.header-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark2);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
  transition: background var(--ease);
}
.header-cart-btn:hover { background: #222222; }
.header-cart-btn svg { width: 15px; height: 15px; }

/* NAVIGATION BAR
---------------------------------------------------------------- */
.site-nav { background: var(--nav-bg); position: relative; z-index: 100; }

.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav ul { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
.site-nav ul li { position: relative; }

.site-nav ul li a {
  display: block;
  padding: 14px 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transition: color var(--ease);
}
.site-nav ul li a:hover,
.site-nav ul li.current-menu-item > a { color: var(--red); }

.site-nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark2);
  min-width: 200px;
  display: none;
  flex-direction: column;
  border: 1px solid #333333;
  z-index: 999;
}
.site-nav ul li:hover > ul { display: flex; }
.site-nav ul li ul li a { padding: 10px 20px; border-bottom: 1px solid #222222; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 8px 24px;
}

.mobile-nav { display: none; background: var(--nav-bg); padding: 12px 24px; }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #222222;
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-header { position: sticky; top: 0; z-index: 1000; transition: box-shadow var(--ease); }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.6); }

/* Admin bar offset */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* HERO
---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 900px;
  width: 100%;
}

.hero-eyebrow,
.hero-title,
.hero-description,
.hero-cta,
.hero-badge {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.85s ease forwards;
}

.hero-eyebrow { animation-delay: 0.08s; }
.hero-title { animation-delay: 0.18s; }
.hero-description { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.42s; }
.hero-badge { animation-delay: 0.56s; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 20px;
  border-radius: 40px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* hero-subtitle and hero-description are the same element */
.hero-subtitle,
.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.hero-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* btn-hero kept for backward compat */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 36px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  border: 2px solid #ffffff;
  background: transparent;
  cursor: pointer;
  transition: all var(--ease);
}
.btn-hero:hover { background: rgba(255,255,255,0.15); }

/* hero badge strip */
.hero-badge {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-badge-item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-title,
  .hero-description,
  .hero-cta,
  .hero-badge {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* SECTION LABEL DIVIDER
---------------------------------------------------------------- */
.section-label-wrap { background: #ffffff; padding: 28px 24px; }

.section-label-divider {
  display: flex;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.section-label-divider::before,
.section-label-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.section-label-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 12px 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.section-label-box svg { width: 13px; height: 13px; opacity: 0.6; }

/* INTRO SECTION
---------------------------------------------------------------- */
.intro-section { background: var(--bg-light); display: flex; align-items: stretch; min-height: 520px; }

.intro-inner { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }

.intro-image-col { overflow: hidden; min-height: 520px; }
.intro-image-col img { width: 100%; height: 100%; object-fit: cover; display: block; }

.intro-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  font-size: 0.85rem;
}

.intro-card-col {
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.intro-card {
  background: #000000;
  color: #ffffff;
  border-radius: 32px 32px 16px 16px;
  padding: 52px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.intro-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.intro-card p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.btn-red-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  border: 2px solid var(--red);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease);
}
.btn-red-outline:hover { background: var(--red); color: #ffffff; }
.btn-red-outline svg { width: 13px; height: 13px; }

/* CATEGORIES SECTION
---------------------------------------------------------------- */
.categories-section { position: relative; background: var(--dark); overflow: hidden; }

.categories-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.categories-heading-wrap { position: relative; z-index: 2; text-align: center; padding: 48px 24px 36px; }
.categories-heading-wrap h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: #ffffff; font-weight: 700; }

.categories-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); }

.category-card { position: relative; overflow: hidden; cursor: pointer; }

.category-card-image { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.category-card:hover .category-card-image { transform: scale(1.04); }

.category-card-placeholder {
  width: 100%;
  height: 420px;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  font-size: 0.85rem;
}

.category-card-footer { background: rgba(30,30,30,0.96); text-align: center; padding: 24px 20px; }
.category-card-footer h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}

.btn-see-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid var(--red);
  background: transparent;
  text-decoration: none;
  transition: all var(--ease);
}
.btn-see-more:hover { background: var(--red); }
.btn-see-more svg { width: 12px; height: 12px; }

/* INFO BLOCKS
---------------------------------------------------------------- */
.info-block-section {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.info-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }

.info-block-section .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

.info-two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-card-image-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.info-dark-card {
  background: rgba(10,10,10,0.88);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #ffffff;
  text-align: center;
}

.info-dark-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-dark-card p { font-size: 0.88rem; line-height: 1.85; color: rgba(255,255,255,0.85); }

.info-framed-image {
  background: var(--dark2);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid #333333;
  aspect-ratio: 16/10;
}
.info-framed-image img { width: 100%; height: 100%; object-fit: cover; }

.info-framed-placeholder { width: 100%; aspect-ratio: 16/10; background: #333333; border-radius: var(--radius-md); }

/* PRODUCTS SECTION
---------------------------------------------------------------- */
.products-section { background: #ffffff; padding: 0 0 48px; }

.products-grid-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #eeeeee;
}

.product-card {
  background: #ffffff;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow var(--ease);
}
.product-card:nth-child(6n) { border-right: none; }
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); position: relative; z-index: 2; }

.product-card-img { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; background: #f0f0f0; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-quick-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.75);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--ease);
  white-space: nowrap;
}
.product-card:hover .product-quick-view-btn { opacity: 1; }

.product-sale-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
}

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

.product-cat-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
}

.product-card-title { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin: 0; }
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--red); }

.product-price { font-size: 0.82rem; font-weight: 700; color: var(--dark); margin-top: 2px; }
.product-price del { color: #999999; font-weight: 400; font-size: 0.75rem; }
.product-price ins { text-decoration: none; color: var(--red); }

.product-card-footer { padding: 8px 12px 14px; }

.btn-select-options {
  display: block;
  width: 100%;
  padding: 9px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  background: var(--dark2);
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease);
  border-radius: var(--radius-sm);
}
.btn-select-options:hover { background: #333333; }

.products-section .go-to-store-wrap { text-align: center; padding: 28px 0; }

.btn-go-to-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 40px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  border: 2px solid var(--dark);
  background: transparent;
  text-decoration: none;
  transition: all var(--ease);
}
.btn-go-to-store:hover { background: var(--dark); color: #ffffff; }

/* TRUST BADGES
---------------------------------------------------------------- */
.trust-badges { background: var(--dark2); padding: 26px 24px; }

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.trust-badge-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.trust-badge-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badge-text { display: flex; flex-direction: column; gap: 3px; }
.trust-badge-text strong { font-size: 0.82rem; font-weight: 700; color: #ffffff; }
.trust-badge-text span { font-size: 0.74rem; color: rgba(255,255,255,0.65); }

/* NEWSLETTER
---------------------------------------------------------------- */
.newsletter-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #3a4a3a;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.newsletter-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }

.newsletter-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
}

.newsletter-card {
  background: #000000;
  border-radius: 120px 120px 16px 16px;
  padding: 56px 40px 48px;
  color: #ffffff;
  text-align: center;
  max-width: 440px;
}

.newsletter-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  display: block;
}

.newsletter-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 26px;
  color: #ffffff;
}

.newsletter-form { display: flex; flex-direction: column; gap: 10px; }

.newsletter-form input,
.newsletter-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: #ffffff;
  outline: none;
  transition: border-color var(--ease);
  font-family: var(--font-body);
  resize: none;
}
.newsletter-form textarea { border-radius: var(--radius-md); min-height: 96px; resize: vertical; }
.newsletter-form input::placeholder,
.newsletter-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus,
.newsletter-form textarea:focus { border-color: rgba(255,255,255,0.5); }

.newsletter-form .btn-submit {
  background: var(--dark2);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--ease);
}
.newsletter-form .btn-submit:hover { background: #333333; }

.assembly-card {
  background: rgba(10,10,10,0.88);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: #ffffff;
  text-align: center;
  max-width: 440px;
}
.assembly-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; color: #ffffff; }
.assembly-card p { font-size: 0.88rem; line-height: 1.85; color: rgba(255,255,255,0.85); margin-bottom: 18px; }

.newsletter-success {
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
}

/* FAQ
---------------------------------------------------------------- */
.faq-section { background: #ffffff; padding: 56px 0; }

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

/* Left column */
.faq-intro { position: sticky; top: 100px; }

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 12px;
  border-radius: 40px;
}

.faq-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  margin-top: 12px;
}

.faq-intro h2 span { display: block; color: var(--red); }

.faq-intro > p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-intro .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* Right column: accordion */
.faq-list { border-top: 1px solid #eeeeee; }

.faq-item { border-bottom: 1px solid #eeeeee; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  border: 1.5px solid var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gray);
  border-radius: 2px;
  transition: all var(--ease);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-item.active .faq-icon { border-color: var(--red); }
.faq-item.active .faq-icon::before { background: var(--red); }
.faq-item.active .faq-icon::after  { transform: scaleY(0); }

.faq-answer { display: none; }
.faq-item.active .faq-answer { display: block; }

.faq-answer-inner {
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

/* FOOTER
---------------------------------------------------------------- */
.site-footer { background: var(--dark2); color: rgba(255,255,255,0.8); }

.footer-top { /* wrapper - no extra styles needed */ }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 52px 0 40px;
}

/* footer-brand = first column with logo */
.footer-brand { }

.footer-logo { margin-bottom: 16px; }
.footer-logo img { max-height: 64px; width: auto; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 12px;
}
.footer-logo a { display: inline-block; }
.footer-logo .custom-logo { max-height: 64px; width: auto; }

/* common col styles */
.footer-brand,
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand h4,
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-col p {
  font-size: 0.84rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.7);
}

/* footer-links = nav inside footer cols */
.footer-links { display: flex; flex-direction: column; }
.footer-col a,
.footer-links a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  padding: 3px 0;
  transition: color var(--ease);
}
.footer-col a:hover,
.footer-links a:hover { color: #ffffff; }

/* footer brand "See More" btn overrides */
.footer-brand .btn {
  align-self: flex-start;
  margin-top: 4px;
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
}
.footer-brand .btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: #ffffff; }

.footer-see-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 16px;
  transition: all var(--ease);
}
.footer-see-more:hover { background: rgba(255,255,255,0.1); }

.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background var(--ease);
  padding: 0;
}
.footer-social a:hover { background: var(--red); }
.footer-social a svg { width: 15px; height: 15px; fill: #ffffff; }

/* contact info in footer */
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}
.footer-contact-item svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.5); flex-shrink: 0; }
.footer-contact-item a { display: inline !important; padding: 0 !important; color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: #ffffff !important; }

/* footer newsletter form */
.footer-newsletter-form { display: flex; margin-top: 4px; margin-bottom: 10px; }
.footer-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  padding: 9px 14px;
  font-size: 0.8rem;
  color: #ffffff;
  outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-form button {
  background: var(--red);
  border: none;
  padding: 9px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: background var(--ease);
}
.footer-newsletter-form button:hover { background: var(--red-dark); }

/* footer bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }

.footer-bottom .container {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.footer-legal { display: flex; gap: 16px; }
.footer-legal a {
  display: inline !important;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5) !important;
  padding: 0 !important;
  transition: color var(--ease);
}
.footer-legal a:hover { color: #ffffff !important; }

.footer-payments { display: flex; align-items: center; gap: 6px; }
.payment-icon {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 2px 7px;
  border-radius: 3px;
}

/* PROMO POPUP (matches footer.php HTML)
---------------------------------------------------------------- */
.promo-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 22px 24px 18px;
  max-width: 320px;
  width: calc(100vw - 40px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.promo-popup.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

.promo-popup p { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.promo-popup strong { font-size: 0.88rem; color: #ffffff; display: block; margin-bottom: 14px; }

.promo-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color var(--ease);
}
.promo-popup-close:hover { color: #ffffff; }

.promo-code-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 8px;
}
.promo-code-box code {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fbbf24;
  flex: 1;
}

.promo-copy-btn {
  background: var(--red);
  color: #ffffff;
  border: none;
  padding: 6px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.promo-copy-btn:hover { background: var(--red-dark); }
.promo-copy-btn.copied { background: #16a34a; }

/* SCROLL TO TOP
---------------------------------------------------------------- */
#scroll-top,
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--ease);
  pointer-events: none;
}
#scroll-top.visible,
.scroll-top.visible { opacity: 1; transform: none; pointer-events: auto; }
#scroll-top svg,
.scroll-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* PAGE BANNER
---------------------------------------------------------------- */
.page-banner { background: var(--dark2); padding: 32px 0; border-bottom: 1px solid #222222; }
.page-banner h1 { font-family: var(--font-heading); font-size: 1.8rem; color: #ffffff; font-weight: 700; }

.woocommerce-breadcrumb,
.woocommerce nav.woocommerce-breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.woocommerce-breadcrumb a { color: rgba(255,255,255,0.5); }
.woocommerce-breadcrumb a:hover { color: #ffffff; }

/* WOOCOMMERCE BASE
---------------------------------------------------------------- */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--dark2) !important;
  color: #ffffff !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 11px 22px !important;
  transition: background var(--ease) !important;
  border: none !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: #333333 !important; }

.woocommerce a.button.alt,
.woocommerce button.button.alt { background: var(--red) !important; }
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover { background: var(--red-dark) !important; }

.star-rating span::before,
.woocommerce .star-rating span::before { color: #f0a500; }

.woocommerce span.amount { color: var(--dark); }
.woocommerce ins span.amount { color: var(--red); }

/* SHOP LAYOUT
---------------------------------------------------------------- */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }

.shop-sidebar {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 80px;
}

.shop-sidebar h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--dark);
}

.shop-sidebar ul { display: flex; flex-direction: column; gap: 2px; }
.shop-sidebar ul li a {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  transition: color var(--ease);
}
.shop-sidebar ul li a:hover { color: var(--red); }

/* RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .products-grid-wrap { grid-template-columns: repeat(4, 1fr); }
  .product-card:nth-child(6n) { border-right: 1px solid #eeeeee; }
  .product-card:nth-child(4n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-two-cards { grid-template-columns: 1fr; gap: 24px; }
  .info-card-image-row { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 900px) {
  .categories-grid { grid-template-columns: 1fr; }
  .category-card-image, .category-card-placeholder { height: 280px; }
  .intro-inner { grid-template-columns: 1fr; }
  .intro-image-col { min-height: 300px; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-card { max-width: 100%; border-radius: 40px; }
  .site-nav .nav-inner { display: none; }
  .menu-toggle { display: block; }
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-main-row { flex-wrap: wrap; gap: 10px; padding: 10px 16px; }
  .header-search-form { width: 100%; order: 3; }
  .header-logo { position: static; transform: none; }
  .products-grid-wrap { grid-template-columns: repeat(2, 1fr); }
  .announcement-bar { flex-direction: column; text-align: center; gap: 6px; font-size: 0.7rem; }
  .ann-right { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 12px; }
  .footer-legal { justify-content: center; }
  .footer-payments { justify-content: center; }
  .shop-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-badge { gap: 16px; }
  .products-grid-wrap { grid-template-columns: repeat(2, 1fr); }
  .trust-badges-grid { grid-template-columns: 1fr 1fr; }
  .promo-popup { right: 8px; left: 8px; max-width: none; width: auto; }
}