/* ==========================================================================
   Design System & Base Variables
   ========================================================================== */
:root {
  /* Color Palette */
  --bg-body: #fbfaf7; /* Soft alabaster / warm linen off-white */
  --bg-card: #ffffff;
  --bg-header: rgba(251, 250, 247, 0.85);
  
  --text-main: #111827;
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  
  --color-primary: #111111;
  --color-primary-hover: #2d2d2d;
  --color-primary-light: #f4efe8; /* Warm alabaster */
  
  --color-accent: #2c7a5f; /* Deep sage green for high contrast readability */
  --color-accent-bg: #e8f3ec; /* Soft pastel mint/sage */
  
  --color-discount: #d64545; /* Softened premium red */
  --color-discount-bg: #fdf2f2; /* Soft pastel pink */
  
  --color-border: #e5e7eb;
  --color-focus: #3b82f6;
  
  /* Color bubble presets */
  --color-graphite: #374151;
  --color-purple: #8b5cf6;
  --color-gold: #e0a899; /* Rose Gold hex */
  --color-white: #ffffff;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-title: 'Outfit', 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.06), 0 10px 15px -3px rgba(0, 0, 0, 0.02);
  --shadow-sticky: 0 -8px 30px rgba(0, 0, 0, 0.05);

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Core Elements
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.text-center {
  text-align: center;
}

.highlight-green {
  color: var(--color-accent) !important;
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-header);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--text-muted);
  font-weight: 500;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  background-color: var(--color-accent-bg);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 32px 0 56px 0;
  background-color: var(--bg-card);
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Hero Image and Slider */
.hero-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.image-container {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #f3f4f6;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid var(--color-border);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.image-hint {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
}

/* Hero Text & Info */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

/* Price Card */
.price-card {
  background-color: var(--bg-body);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.price-actual {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--text-main);
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
}

.price-old-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-old {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--text-light);
}

.discount-badge {
  background-color: var(--color-discount-bg);
  color: var(--color-discount);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.savings-row {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  background-color: var(--color-accent-bg);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.savings-value {
  font-weight: 700;
  margin-left: 4px;
}

.stock-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #b45309;
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-weight: 500;
}

.stock-warning strong {
  color: var(--color-discount);
  font-weight: 700;
}

.payment-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  margin-top: 4px;
}

.icon-payment {
  color: var(--text-light);
  flex-shrink: 0;
}

/* Color Picker */
.color-picker-hero {
  margin-top: 20px;
  width: 100%;
  max-width: 480px;
}

.color-picker-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  text-align: center;
}

.color-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}

.color-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.color-preview {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

.color-preview.graphite { background-color: var(--color-graphite); }
.color-preview.purple { background-color: var(--color-purple); }
.color-preview.gold { background-color: var(--color-gold); }
.color-preview.white { 
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
}

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

.color-btn.active {
  border-color: var(--color-primary);
  background-color: var(--color-primary-light);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.color-btn.active .color-name {
  color: var(--text-main);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  text-align: center;
  width: auto;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(17, 17, 17, 0.2);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(17, 17, 17, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--color-primary-light);
  color: var(--text-main);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-border);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
  gap: 10px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits {
  padding: 56px 0;
  background-color: var(--bg-body);
}

.section-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.benefit-card {
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.benefit-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Lifestyle Gallery
   ========================================================================== */
.lifestyle {
  padding: 56px 0;
  background-color: var(--bg-card);
}

.lifestyle-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.lifestyle-item {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.lifestyle-img-frame {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--color-primary-light);
  overflow: hidden;
  position: relative;
}

.lifestyle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.lifestyle-item:hover .lifestyle-img {
  transform: scale(1.03);
}

.lifestyle-caption {
  padding: 20px;
}

.lifestyle-caption h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.lifestyle-caption p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Characteristics & Diagram Section
   ========================================================================== */
.characteristics {
  padding: 56px 0;
  background-color: #f0f3f1; /* Soft pastel sage tint */
}

.characteristics-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.specs-diagram-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.specs-image-container {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  background-color: #ffffff;
}

.specs-diagram-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specs-diagram-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 12px;
}

.specs-info-wrapper {
  width: 100%;
}

.spec-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.spec-item {
  display: flex;
  gap: 16px;
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.spec-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-label {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.spec-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq {
  padding: 56px 0;
  background-color: var(--bg-card);
}

.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--bg-body);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--text-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  gap: 16px;
}

.faq-icon-arrow {
  color: var(--text-muted);
  transition: transform var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item.active {
  background-color: var(--bg-card);
  border-color: var(--color-primary);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding: 0 20px 20px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-inner {
  border-top-color: var(--color-border);
}

/* ==========================================================================
   Order Form Section
   ========================================================================== */
.order {
  padding: 56px 0 80px 0;
  background-color: #f7f3ed; /* Very light warm pastel sand/clay */
}

.order-card {
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  margin: 0 auto;
}

.order-header {
  text-align: center;
  margin-bottom: 24px;
}

.order-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.order-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-input, .form-select {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background-color: var(--bg-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.05);
}

.form-input.invalid, .form-select.invalid {
  border-color: var(--color-discount);
  background-color: var(--color-discount-bg);
}

.error-message {
  color: var(--color-discount);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 6px;
  display: none;
}

.form-input.invalid + .error-message {
  display: block;
}

/* Order Summary box */
.order-pricing-summary {
  background-color: var(--bg-body);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--color-border);
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.old-price-line {
  text-decoration: line-through;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 10px;
  margin-top: 2px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-main);
}

.order-trust-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.footer {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 48px 0 110px 0; /* Add bottom padding to avoid blocking with sticky bar */
}

.footer-logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.footer-logo .logo-accent {
  color: var(--text-light);
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 320px;
  margin: 0 auto 24px auto;
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   Sticky Bottom CTA Bar (Mobile Viewport)
   ========================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-sticky);
  z-index: 90;
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.sticky-cta-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-cta-thumbnail {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background-color: var(--color-primary-light);
  border: 1px solid var(--color-border);
}

.sticky-cta-meta {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.sticky-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: var(--font-title);
}

.sticky-price small {
  font-size: 0.75rem;
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 400;
  margin-left: 4px;
}

/* ==========================================================================
   Success Overlay Modal
   ========================================================================== */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
  transform: translateY(30px) scale(0.95);
  transition: transform var(--transition-slow);
  border: 1px solid var(--color-border);
}

.success-overlay.active .success-card {
  transform: translateY(0) scale(1);
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: var(--color-accent-bg);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.1);
}

.success-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.success-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.success-details {
  background-color: var(--bg-body);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  border: 1px solid var(--color-border);
  margin-bottom: 24px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.success-details p {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.success-details strong {
  color: var(--text-main);
}

/* ==========================================================================
   Responsive Breakpoints & Desktop Enhancements
   ========================================================================== */
@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
  
  .hero {
    padding: 64px 0;
  }
  
  .hero-container {
    flex-direction: row;
    gap: 48px;
    align-items: center;
  }
  
  .hero-image-wrapper {
    flex: 1.1;
  }
  
  .hero-content {
    flex: 1;
  }
  
  .color-picker-hero {
    margin-top: 24px;
  }

  .color-picker-title {
    text-align: left;
  }

  .color-options {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .lifestyle-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .characteristics-layout {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  
  .specs-diagram-wrapper {
    flex: 1;
  }
  
  .specs-info-wrapper {
    flex: 1.2;
  }

  .spec-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .order {
    padding: 80px 0 100px 0;
  }
  
  .order-card {
    padding: 40px;
  }
  
  .sticky-cta {
    display: none !important; /* Never display on tablet/desktop */
  }
  
  .footer {
    padding: 64px 0 64px 0; /* Remove extra bottom padding since sticky is hidden */
  }
}

@media (min-width: 1024px) {
  .hero-container {
    gap: 80px;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 48px;
  }
}
