:root {
  /* Color Palette: Dark Accents, Light Canvas */
  --color-primary: #0B1F3F;
  --color-secondary: #014D4D;
  --color-accent: #3A0E2F;
  --color-dark: #100F0F;
  --color-slate: #1E2126;
  --color-light: #FEFEFE;
  --color-soft-white: #F8F9FA;
  --color-muted: #E8E9EB;
  --color-text-primary: #1E2126;
  --color-text-secondary: #5A5F66;
  
  /* Typography Scale */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3rem;
  
  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Design Elements */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --container-max: 1200px;
  --container-padding: var(--space-lg);
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-alt {
  background-color: var(--color-soft-white);
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-light);
}

.section-dark p {
  color: var(--color-muted);
}

/* ============================================
   HEADER - OVERLAY MINIMAL DESIGN
   ============================================ */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-dark);
  transition: color var(--transition-base);
}

.logo:hover {
  color: var(--color-primary);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.menu-toggle i {
  font-size: var(--text-2xl);
  color: var(--color-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-soft-white) 0%, var(--color-muted) 100%);
  overflow: hidden;
}
.thankyou-page .container {
    padding: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, var(--color-primary) 1px, transparent 1px),
    linear-gradient(-45deg, var(--color-primary) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.02;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  color: var(--color-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.product-card {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: var(--color-soft-white);
}

.product-content {
  padding: var(--space-lg);
}

.product-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.product-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.product-price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

/* ============================================
   FEATURE GRID
   ============================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.feature-item {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background-color: var(--color-light);
  transition: all var(--transition-base);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: var(--text-4xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.feature-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.feature-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info {
  padding: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-icon {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-base);
}

.contact-details p {
  margin: 0;
  font-size: var(--text-sm);
}

.contact-form {
  background-color: var(--color-soft-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  border: 1px solid var(--color-muted);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-checkbox input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ============================================
   MAP CONTAINER
   ============================================ */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-2xl);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--color-dark);
  color: var(--color-muted);
  padding: var(--space-2xl) 0 var(--space-lg);
  font-size: var(--text-sm);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--color-muted);
  font-size: var(--text-xs);
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--color-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
}

/* ============================================
   PRIVACY POPUP
   ============================================ */

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.privacy-popup.active {
  transform: translateY(0);
}

.privacy-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.privacy-text {
  flex: 1;
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.privacy-actions {
  display: flex;
  gap: var(--space-md);
}

.btn-accept,
.btn-decline {
  padding: var(--space-xs) var(--space-lg);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.btn-accept {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.btn-accept:hover {
  background-color: var(--color-secondary);
}

.btn-decline {
  background-color: transparent;
  color: var(--color-light);
  border: 1px solid var(--color-muted);
}

.btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
  margin-bottom: var(--space-3xl);
}

.content-section:last-child {
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  color: var(--color-text-secondary);
}

/* ============================================
   404 PAGE
   ============================================ */

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content h1 {
  font-size: 8rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.error-content h2 {
  margin-bottom: var(--space-lg);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thankyou-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-icon {
  font-size: 5rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  :root {
    --text-4xl: 2.25rem;
    --text-3xl: 1.875rem;
    --text-2xl: 1.5rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-light);
    flex-direction: column;
    padding: var(--space-4xl) var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-base);
    align-items: flex-start;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .privacy-content {
    flex-direction: column;
    text-align: center;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: var(--space-md);
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
  }
  
  .hero {
    min-height: 90vh;
  }
  
  .map-container {
    height: 300px;
  }
}

/* ============================================
   EXTREME COMPACTION: 320px STRATEGY
   Design Philosophy: Ruthless prioritization
   where every pixel serves essential function
   ============================================ */

@media (max-width: 320px) {
  :root {
    /* Aggressive spatial compression */
    --container-padding: 0.625rem;
    --space-xs: 0.375rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.25rem;
    --space-2xl: 1.5rem;
    --space-3xl: 2rem;
    --space-4xl: 2.5rem;
    
    /* Typography compression: maintaining hierarchy */
    --text-xs: 0.6875rem;
    --text-sm: 0.8125rem;
    --text-base: 0.875rem;
    --text-lg: 1rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.375rem;
    --text-3xl: 1.625rem;
    --text-4xl: 1.875rem;
  }
  
  /* Body: Enhanced line-height for readability */
  body {
    font-size: 0.875rem;
    line-height: 1.65;
  }
  
  /* Headings: Compressed scale preserving visual weight */
  h1 {
    font-size: 1.875rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }
  
  h2 {
    font-size: 1.625rem;
    line-height: 1.2;
    margin-bottom: 0.625rem;
  }
  
  h3 {
    font-size: 1.375rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }
  
  h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  h5, h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    margin-bottom: 0.875rem;
  }
  
  /* Section compression */
  .section {
    padding: 2rem 0;
  }
  
  /* Hero: Vertical space optimization */
  .hero {
    min-height: 85vh;
    padding: 2.5rem 0;
  }
  
  .hero-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }
  
  /* Button refinement: Touch-friendly with compact appearance */
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
  
  /* Section titles: Visual hierarchy preservation */
  .section-title {
    font-size: 1.625rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }
  
  /* Product cards: Single column with tighter spacing */
  .product-grid {
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
  
  .product-card {
    border-radius: 0.625rem;
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-content {
    padding: 1rem;
  }
  
  .product-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .product-description {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }
  
  .product-price {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
  }
  
  /* Feature grid: Optimized vertical stacking */
  .feature-grid {
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
  
  .feature-item {
    padding: 1.25rem;
    border-radius: 0.625rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.875rem;
  }
  
  .feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-description {
    font-size: 0.8125rem;
    line-height: 1.55;
  }
  
  /* Contact wrapper: Aggressive vertical stacking */
  .contact-wrapper {
    gap: 1.5rem;
  }
  
  .contact-info {
    padding: 1rem 0;
  }
  
  .contact-item {
    gap: 0.875rem;
    margin-bottom: 1.25rem;
  }
  
  .contact-icon {
    font-size: 1.625rem;
  }
  
  .contact-details h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
  }
  
  .contact-details p {
    font-size: 0.8125rem;
    margin: 0;
    line-height: 1.55;
  }
  
  /* Contact form: Enhanced touch targets */
  .contact-form {
    padding: 1.25rem;
    border-radius: 0.625rem;
  }
  
  .contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-label {
    font-size: 0.8125rem;
    margin-bottom: 0.375rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  .form-checkbox {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .form-checkbox label {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  /* Map: Reduced height maintaining aspect ratio */
  .map-container {
    height: 250px;
    margin-top: 1.25rem;
    border-radius: 0.625rem;
  }
  
  /* Footer: Compressed vertical rhythm */
  .footer {
    padding: 1.5rem 0 1rem;
    font-size: 0.75rem;
  }
  
  .footer-content {
    gap: 1rem;
    margin-bottom: 0.875rem;
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    gap: 0.875rem;
    justify-content: center;
  }
  
  .footer-link {
    font-size: 0.6875rem;
  }
  
  .footer-bottom {
    padding-top: 0.875rem;
    font-size: 0.6875rem;
  }
  
  /* Privacy popup: Enhanced mobile presentation */
  .privacy-popup {
    padding: 1rem;
  }
  
  .privacy-content {
    gap: 1rem;
  }
  
  .privacy-text {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
  
  .privacy-actions {
    gap: 0.75rem;
    width: 100%;
    flex-direction: column;
  }
  
  .btn-accept,
  .btn-decline {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    width: 100%;
  }
  
  /* Header: Minimal spacing preservation */
  .header {
    padding: 0.875rem 0;
  }
  
  .header.scrolled {
    padding: 0.75rem 0;
  }
  
  .logo {
    font-size: 1.125rem;
  }
  
  .nav-list {
    width: 260px;
    padding: 2.5rem 1rem;
  }
  
  .nav-link {
    font-size: 0.8125rem;
    padding: 0.5rem 0;
  }
  
  .menu-toggle i {
    font-size: 1.625rem;
  }
  
  /* Error pages: Compressed but impactful */
  .error-page,
  .thankyou-page {
    min-height: 75vh;
    padding: 2rem 0;
  }
  
  .error-content h1 {
    font-size: 5rem;
    margin-bottom: 0.875rem;
  }
  
  .error-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .error-content p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .thankyou-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
  
  /* Content sections: Legal pages optimization */
  .content-section {
    margin-bottom: 1.75rem;
  }
  
  .content-section h2 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
  
  .content-section p,
  .content-section ul,
  .content-section ol {
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 0.875rem;
  }
  
  /* Button groups: Stack vertically with full width */
  .hero-content > div,
  .error-content > div {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  
  .hero-content .btn,
  .error-content .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Product card buttons: Full width for better touch */
  .product-card .btn {
    width: 100%;
  }
}