/* ===== AllTo3D Theme - Main Stylesheet ===== */

:root {
  --bg-page: #ffffff;
  --bg-light: #f6f7f9;
  --bg-dark: #0f1014;
  --bg-darker: #0a0a0c;
  --bg-card: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #6b7280;
  --color-heading: #0f1014;
  --color-border: #e5e7eb;
  --color-brand: #5b21b6;          /* Purple - matches demo */
  --color-brand-hover: #4c1d95;
  --color-brand-light: #ede9fe;
  --color-accent: #f59e0b;
  --color-success: #22c55e;
  --container-width: 1280px;
  --container-padding: 24px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
  color: var(--color-text);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
.site-header {
  background: var(--bg-page);
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 22px;
  color: var(--color-heading);
  flex-shrink: 0;
}
.site-logo .logo-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand);
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
}
.site-logo .site-title { letter-spacing: -0.01em; }

.primary-navigation { flex: 1; display: flex; justify-content: center; }
.primary-menu { display: flex; list-style: none; gap: 36px; align-items: center; }
.primary-menu li { position: relative; }
.primary-menu a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-heading);
  position: relative;
  transition: color var(--transition);
}
.primary-menu a:hover { color: var(--color-brand); }
.primary-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--color-brand);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after { width: 100%; }
.primary-menu .current-menu-item a { color: var(--color-brand); }

.header-actions {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.header-search-toggle, .header-account-link, .header-cart-link {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-heading);
  background: transparent;
  border: 0; cursor: pointer;
  transition: all var(--transition);
}
.header-search-toggle:hover, .header-account-link:hover, .header-cart-link:hover {
  background: var(--bg-light);
  color: var(--color-brand);
}
.mobile-menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  width: 22px; height: 2px;
  background: var(--color-heading);
  border-radius: 1px;
}

/* ===== 1. HERO SECTION ===== */
.hero-section {
  background: var(--bg-darker);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(91, 33, 182, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(91, 33, 182, 0.2) 0%, transparent 40%);
  pointer-events: none;
}
.hero-section .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 540px; }
.hero-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-description {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  border: 0; cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: #fff; color: var(--bg-darker); }
.btn-primary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition);
}
.btn-play:hover { color: #fff; }
.play-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 10px;
  padding-left: 2px;
}

.hero-image {
  display: flex; align-items: center; justify-content: center;
}
.hero-image-placeholder {
  width: 100%; max-width: 500px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.4), rgba(91, 33, 182, 0.1));
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 200px;
  position: relative; overflow: hidden;
}
.hero-image-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}
.hero-image-emoji { filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)); z-index: 1; }

/* ===== 2. TRUST BAR ===== */
.trust-bar {
  background: var(--bg-darker);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-icon {
  font-size: 32px;
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.trust-item strong { display: block; font-size: 14px; font-weight: 700; }
.trust-item small { display: block; font-size: 12px; color: rgba(255,255,255,0.6); }

/* ===== 3. CATEGORIES ASYMMETRIC GRID ===== */
.categories-section {
  background: var(--bg-light);
  padding: 80px 0;
}
.categories-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 600px;
}
.category-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  display: block;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Large card spans both rows, image on bottom */
.category-card-large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.category-card-large .category-info {
  padding: 28px 28px 0;
  position: relative;
  z-index: 2;
}
.category-card-large h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 6px;
}
.category-card-large .category-count {
  font-size: 16px;
  color: var(--color-text-muted);
}
.category-image-large {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, #fff 0%, #f3f4f6 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}
.category-image-large .category-emoji {
  font-size: 240px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
  transition: transform 0.4s ease;
}
.category-card-large:hover .category-emoji { transform: scale(1.05); }

/* Small cards - title at top, image implied */
.category-card-small {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.category-card-small::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 60%;
  background: linear-gradient(135deg, transparent, var(--bg-light));
  z-index: 0;
}
.category-card-small::before {
  content: '';
  position: absolute;
  bottom: 20px; right: 20px;
  font-size: 80px;
  opacity: 0.9;
  z-index: 1;
}
.category-card-small[href*="shop"]:nth-of-type(2)::before { content: '🎯'; }
.category-card-small[href*="shop"]:nth-of-type(3)::before { content: '🛠️'; }
.category-card-small.category-card-custom::before { content: '🎨'; }
.category-card-small .category-info-top { position: relative; z-index: 2; }
.category-card-small h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-heading);
}
.category-card-small .category-count {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ===== 4. USP NUMBERED CARDS ===== */
.usp-section {
  background: var(--bg-page);
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.usp-card {
  padding: 20px 0;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  cursor: default;
}
.usp-card:hover {
  border-bottom-color: var(--color-brand);
}
.usp-number {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.usp-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-heading);
}
.usp-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== 5. FEATURED PRODUCTS ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-header p {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-bottom: 8px;
}
.view-all {
  display: inline-block;
  color: var(--color-brand);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.view-all:hover { text-decoration: underline; }

.featured-products-section { background: #fff; padding: 80px 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand);
}
.product-link { display: block; }
.product-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-emoji { font-size: 80px; }
.product-title {
  font-size: 16px; font-weight: 600;
  color: var(--color-heading);
  padding: 20px 24px 8px; margin: 0;
}
.product-price {
  padding: 0 24px;
  font-size: 20px; font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 16px;
}
.btn-add-to-cart {
  display: block;
  margin: 0 24px 24px;
  padding: 12px; text-align: center;
  background: var(--bg-dark); color: #fff;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.btn-add-to-cart:hover {
  background: var(--color-brand);
  transform: translateY(-1px);
}

/* ===== 6. OCULUS VR BANNER (dark with gradient) ===== */
.oculus-banner {
  background: var(--bg-darker);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.oculus-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(91, 33, 182, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(91, 33, 182, 0.3) 0%, transparent 40%);
  pointer-events: none;
}
.oculus-banner .container { position: relative; z-index: 1; }
.oculus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.oculus-content { max-width: 540px; }
.oculus-title {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: #fff;
}
.oculus-description {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}
.oculus-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.btn-oculus-primary {
  background: #fff; color: var(--bg-darker);
  padding: 16px 32px; border-radius: 8px;
  font-weight: 600; font-size: 15px;
  transition: all var(--transition);
}
.btn-oculus-primary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.btn-play-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 500; font-size: 15px;
}
.btn-play-light:hover { color: #fff; }
.oculus-image {
  display: flex; align-items: center; justify-content: center;
  font-size: 240px;
  filter: drop-shadow(0 20px 40px rgba(91, 33, 182, 0.4));
}
.oculus-emoji { animation: float 4s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== 7. IPAD PRO BANNER (dark, image left) ===== */
.ipadpro-banner {
  background: var(--bg-darker);
  color: #fff;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.ipadpro-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(91, 33, 182, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.ipadpro-banner .container { position: relative; z-index: 1; }
.ipadpro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ipadpro-image {
  display: flex; align-items: center; justify-content: center;
  font-size: 280px;
  filter: drop-shadow(0 20px 40px rgba(91, 33, 182, 0.3));
}
.ipadpro-emoji { animation: float 4s ease-in-out infinite 0.5s; }
.ipadpro-content { max-width: 480px; }
.ipadpro-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.ipadpro-title {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: #fff;
}
.ipadpro-description {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.ipadpro-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.ipadpro-features li {
  padding: 4px 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}
.btn-ipadpro {
  background: #fff; color: var(--bg-darker);
  padding: 16px 32px; border-radius: 8px;
  font-weight: 600; font-size: 15px;
  transition: all var(--transition);
  display: inline-block;
}
.btn-ipadpro:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===== 8. FEATURE CARDS ===== */
.features-section { background: var(--bg-light); padding: 80px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--color-brand);
}
.feature-icon { font-size: 48px; margin-bottom: 16px; }
.feature-card h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-heading);
}
.feature-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.feature-link { color: var(--color-brand); font-weight: 600; font-size: 14px; }
.feature-link:hover { text-decoration: underline; }

/* ===== 9. NEWSLETTER ===== */
.newsletter-section {
  background: var(--bg-darker);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.newsletter-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 24px; }
.newsletter-form {
  display: flex; max-width: 540px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 0;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { background: rgba(255,255,255,0.12); }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--color-brand);
  color: #fff;
  border: 0;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--color-brand-hover); }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-darker); color: #fff; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 22px; color: #fff;
  margin-bottom: 20px;
}
.footer-logo .logo-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-brand);
  border-radius: 8px;
  font-size: 16px;
}
.footer-description {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--color-brand);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col-title {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px; color: #fff;
}
.footer-menu { list-style: none; padding: 0; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-menu a:hover { color: #fff; }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-icon {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.footer-bottom a { color: var(--color-brand); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid, .oculus-grid, .ipadpro-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-placeholder, .oculus-image, .ipadpro-image { max-width: 360px; margin: 0 auto; }
  .categories-asymmetric {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .categories-asymmetric .category-card-large { grid-row: span 2; }
  .categories-asymmetric .category-card-small { min-height: 200px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .primary-navigation { display: none; }
  .mobile-menu-toggle { display: flex; }
}

@media (max-width: 640px) {
  .categories-asymmetric { grid-template-columns: 1fr; }
  .categories-asymmetric .category-card-large { grid-row: auto; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-section, .oculus-banner, .ipadpro-banner { padding: 60px 0; }
  .hero-actions, .oculus-actions { flex-direction: column; align-items: stretch; }
  .btn, .btn-oculus-primary, .btn-ipadpro { width: 100%; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { text-align: center; }
  .header-actions { gap: 8px; }
  .header-search-toggle { display: none; }
}
