/* ==========================================================================
   Bear Cooker - Modern Brand Design System (Inspired by Dreametech)
   Clean, Content-Rich, Minimalist, Precision Lifestyle Engineering
   ========================================================================== */

:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --bg-body: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --brand-orange: #e85a2d;
  --brand-orange-hover: #cf481d;
  --brand-orange-light: #fff7ed;
  --border-subtle: #e2e8f0;
  --border-dark: #334155;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --transition-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-body);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   HEADER & NAVIGATION (FLUSH DROPDOWNS & INVISIBLE HOVER BRIDGE)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-normal);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-img {
  height: 36px;
  width: auto;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-orange);
}

/* Dropdown Menu - Flush, Zero Gap, Invisible Hover Bridge */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 0;
  cursor: pointer;
}

.dropdown-trigger:hover {
  color: var(--brand-orange);
}

.dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 260px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 8px 0;
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  z-index: 105;
}

/* Invisible hover bridge pseudo-element */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu,
.nav-item-dropdown.locked .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-link:hover {
  background: var(--bg-subtle);
  color: var(--brand-orange);
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(232, 90, 45, 0.3);
}

.btn-primary:hover {
  background-color: var(--brand-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232, 90, 45, 0.4);
  color: #ffffff;
}

.btn-outline {
  border: 1.5px solid var(--border-subtle);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: var(--brand-orange-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: var(--bg-subtle);
  color: var(--brand-orange);
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

/* Mobile Nav Drawer (Placed outside header in DOM) */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.mobile-nav-drawer.open {
  display: block;
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  background: #ffffff;
  padding: 24px;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.mobile-nav-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.drawer-close-btn {
  font-size: 1.5rem;
  color: var(--text-primary);
  padding: 4px;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}

.mobile-nav-link:hover {
  color: var(--brand-orange);
}

.mobile-submenu {
  list-style: none;
  padding-left: 16px;
  padding-bottom: 12px;
}

.mobile-submenu-link {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.breadcrumb-nav {
  padding: 16px 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb-item a:hover {
  color: var(--brand-orange);
}

.breadcrumb-separator {
  color: #94a3b8;
}

.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 500;
}

/* ==========================================================================
   HERO & SECTION COMMONS
   ========================================================================== */

.section {
  padding: 72px 0;
}

.section-alt {
  background-color: var(--bg-subtle);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.section-header-left {
  text-align: left;
  max-width: 960px;
  margin: 0 0 36px 0;
}

.section-header-left .section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  margin-bottom: 8px;
}

.section-header-left .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-header-left .section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ==========================================================================
   HOMEPAGE HERO
   ========================================================================== */

.home-hero {
  padding: 80px 0 60px 0;
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================================
   CATEGORY CARDS (STACKED, NO SPARSE SKU BADGES, ACTION CTA)
   ========================================================================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.category-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.cat-card-header {
  padding: 24px;
}

.cat-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cat-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cat-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-orange);
  transition: transform var(--transition-fast);
}

.category-card:hover .cat-card-action {
  transform: translateX(4px);
}

.cat-card-media {
  background: var(--bg-subtle);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cat-card-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.category-card:hover .cat-card-img {
  transform: scale(1.04);
}

/* ==========================================================================
   PRODUCT CARDS GRID (CLEAN TITLES < 60 CHARS, DESCRIPTIONS < 25 WORDS)
   ========================================================================== */

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

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.prod-card-media {
  background: var(--bg-subtle);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.prod-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.product-card:hover .prod-card-img {
  transform: scale(1.05);
}

.prod-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prod-card-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-orange);
  margin-bottom: 6px;
}

.prod-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.prod-card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.prod-card-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   PDP (PRODUCT DETAIL DECISION PAGE)
   ========================================================================== */

.pdp-hero {
  padding: 48px 0 64px 0;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

/* PDP Media & Multi-Image Gallery */
.pdp-media-wrapper {
  position: sticky;
  top: 96px;
}

.pdp-main-media {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  margin-bottom: 16px;
  overflow: hidden;
}

.pdp-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity var(--transition-fast);
}

.product-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.thumb-btn {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-subtle);
  background: var(--bg-subtle);
  padding: 4px;
  cursor: pointer;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--brand-orange);
  transform: translateY(-2px);
}

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

/* PDP Purchase Details */
.pdp-info {
  display: flex;
  flex-direction: column;
}

.pdp-category-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  margin-bottom: 10px;
}

.pdp-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pdp-rating-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.star-glyphs {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.rating-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pdp-price-box {
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pdp-price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pdp-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #15803d;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pdp-positioning {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pdp-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 32px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-badge-item svg {
  width: 20px;
  height: 20px;
  color: var(--brand-orange);
  flex-shrink: 0;
}

/* PDP Spec Strip */
.spec-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.spec-strip-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.spec-metric {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 4px;
}

.spec-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Story Sections (Split Image & Text) */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 48px 0;
}

.story-split.reverse {
  direction: rtl;
}

.story-split.reverse .story-text {
  direction: ltr;
}

.story-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-subtle);
}

.story-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.story-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-point-item {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.story-point-item strong {
  color: var(--text-primary);
}

/* Tech Specs Table - Balanced Desktop & Mobile Scroll Safe */
.specs-table-container {
  max-width: 860px;
  margin: 32px auto 0 auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

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

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

.specs-table tr:nth-child(even) {
  background-color: #fafbfd;
}

.specs-table th, .specs-table td {
  padding: 14px 20px;
  font-size: 0.92rem;
}

.specs-table th {
  width: 35%;
  font-weight: 600;
  color: var(--text-muted);
}

.specs-table td {
  width: 65%;
  font-weight: 500;
  color: var(--text-primary);
}

/* Customer Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.rev-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.rev-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.rev-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: #15803d;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.rev-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 10px;
}

.rev-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   ACCORDION FAQ COMPONENT
   ========================================================================== */

.faq-accordion {
  max-width: 860px;
  margin: 32px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  background: transparent;
}

.faq-question:hover {
  color: var(--brand-orange);
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--brand-orange);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   LEGAL & SUPPORT PAGES (.legal-hero, .legal-card)
   ========================================================================== */

.legal-hero {
  padding: 64px 0 40px 0;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  text-align: center;
}

.legal-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  background: #ffffff;
  border: 1px solid #fed7aa;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.legal-card {
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.legal-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-subtle);
  position: relative;
}

.legal-card h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--brand-orange);
}

.legal-card p, .legal-card ul {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-card ul {
  padding-left: 24px;
}

.legal-callout {
  background: var(--bg-subtle);
  border-left: 4px solid var(--brand-orange);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.legal-contact-panel {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
}

/* ==========================================================================
   FOOTER (RICH MULTI-COLUMN DESIGN SYSTEM)
   ========================================================================== */

.site-footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 72px 0 32px 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 16px 0 24px 0;
  color: #94a3b8;
}

.footer-column-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-link:hover {
  color: #cbd5e1;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .header-actions .btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-grid, .pdp-grid, .story-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-split.reverse {
    direction: ltr;
  }
  .pdp-media-wrapper {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 64px;
  }
  .nav-inner {
    height: 64px;
  }
  .brand-logo-img {
    height: 32px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .spec-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal-card {
    padding: 24px;
  }
  .section-header-left .section-title {
    font-size: 1.8rem;
  }
  .section-header-left {
    margin-bottom: 24px;
  }
}
