@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Color Variables */
:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #121216;
  --bg-tertiary: #1a1a22;
  --accent-gold: #fbbf24;
  --accent-gold-hover: #f59e0b;
  --accent-green: #10b981;
  --accent-green-light: #ecfdf5;
  --accent-red: #ef4444;
  --accent-red-light: #fef2f2;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #111827;
  
  --border-color: #2e2e38;
  --border-focus: #fbbf24;
  
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(251, 191, 36, 0.15);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.text-gold { color: var(--accent-gold); }
.text-green { color: var(--accent-green); }
.text-muted { color: var(--text-muted); }

/* Header Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  transition: var(--transition-smooth);
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent-gold);
}

.lang-switch-btn {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
}

.lang-switch-btn:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.nav-cta-btn {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
}

.nav-cta-btn:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

/* Image Placeholder System */
.image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1c1c24 0%, #2e2e38 50%, #15151c 100%);
  border-radius: var(--border-radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.image-placeholder::before {
  content: "👟 Product Image Preview";
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.image-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-placeholder img:not([src="#"]) {
  opacity: 1;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

/* Pricing Badges */
.price-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.price-sale {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-green);
}

.price-regular {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount {
  background-color: var(--accent-red);
  color: var(--text-main);
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
}

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

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  border: none;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  text-align: center;
}

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

/* Feature Bullet List */
.bullet-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.bullet-icon {
  color: var(--accent-green);
  flex-shrink: 0;
}

/* Featured / Gallery Showcase */
.showcase-wrapper {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.gallery-thumb {
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.gallery-thumb:hover, .gallery-thumb.active {
  opacity: 1;
  border-color: var(--accent-gold);
}

/* Trust / Key Features Section */
.features-section {
  background-color: var(--bg-secondary);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(251, 191, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Interactive Checkout & Variation Form */
.checkout-section {
  padding: 100px 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* Order Selection details Card */
.order-summary-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.order-summary-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

/* Variations styling */
.variation-group {
  margin-bottom: 24px;
}

.variation-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* Colors Selection Buttons */
.color-options {
  display: flex;
  gap: 12px;
}

.color-option {
  position: relative;
  cursor: pointer;
}

.color-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.color-indicator {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 2px;
  transition: var(--transition-smooth);
}

.color-inner {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.color-option input[type="radio"]:checked + .color-indicator {
  border-color: var(--accent-gold);
  transform: scale(1.1);
}

/* Color codes */
.color-black .color-inner { background-color: #111; }
.color-brown .color-inner { background-color: #78350f; }
.color-navy .color-inner { background-color: #1e3a8a; }

/* Size Options styling */
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-option {
  position: relative;
  cursor: pointer;
}

.size-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.size-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 40px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-tertiary);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.size-option input[type="radio"]:checked + .size-text {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.size-option:hover .size-text {
  border-color: var(--text-muted);
}

/* Quantity field */
.quantity-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-tertiary);
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.qty-input {
  width: 50px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-tertiary);
  color: var(--text-main);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}

/* Invoice Calculations */
.invoice-box {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin-top: 32px;
}

.invoice-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.invoice-row.total-row {
  border-top: 1px solid var(--border-color);
  margin-top: 16px;
  padding-top: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Checkout Form styling */
.checkout-form-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.checkout-form-container h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.checkout-form-container p.desc {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-tertiary);
  color: var(--text-main);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control::placeholder {
  color: #4b5563;
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.1);
}

/* Zone pill selection layout */
.zone-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.zone-option {
  position: relative;
  cursor: pointer;
}

.zone-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.zone-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  text-align: center;
}

.zone-box .zone-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.zone-box .zone-price {
  font-size: 0.9rem;
  color: var(--accent-gold);
}

.zone-option input[type="radio"]:checked + .zone-box {
  background-color: rgba(251, 191, 36, 0.05);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow);
}

/* Constraint-based form validation styling (:user-valid / :user-invalid) */
.form-control:user-invalid {
  border-color: var(--accent-red);
  background-color: rgba(239, 68, 68, 0.03);
}

.form-control:user-valid {
  border-color: var(--accent-green);
  background-color: rgba(16, 185, 129, 0.03);
}

/* Fallbacks for older browsers */
.form-control.user-invalid-fallback {
  border-color: var(--accent-red);
  background-color: rgba(239, 68, 68, 0.03);
}

.form-control.user-valid-fallback {
  border-color: var(--accent-green);
  background-color: rgba(16, 185, 129, 0.03);
}

/* Inline form feedback styling */
.error-feedback {
  display: none;
  color: var(--accent-red);
  font-size: 0.85rem;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-control:user-invalid + .error-feedback,
.form-control.user-invalid-fallback + .error-feedback {
  display: flex;
}

.form-submit-btn {
  width: 100%;
  background-color: var(--accent-green);
  color: white;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.form-submit-btn:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Testimonials / Social Proof */
.testimonials-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}

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

.testimonial-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 32px;
  position: relative;
}

.testimonial-stars {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.testimonial-content {
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--border-color) 0%, var(--bg-tertiary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-gold);
  border: 1px solid var(--border-color);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQs Section */
.faq-section {
  background-color: var(--bg-secondary);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  background-color: var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active {
  border-color: var(--accent-gold);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-gold);
}

/* Dynamic Trust Badges in Footer / Order Form */
.trust-badges-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.trust-badge-item svg {
  color: var(--accent-gold);
}

/* Footer Section */
.site-footer {
  padding: 60px 0 30px;
  text-align: center;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.site-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.site-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.site-footer-links a:hover {
  color: var(--accent-gold);
}

/* Thank you page styling specifically */
.thankyou-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.thankyou-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  max-width: 640px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.success-badge {
  width: 72px;
  height: 72px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  margin: 0 auto 24px;
  border: 2px solid var(--accent-green);
}

.thankyou-card h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.thankyou-card p.subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.receipt-box {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: left;
  margin-bottom: 32px;
}

.receipt-box h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.receipt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.receipt-label {
  color: var(--text-muted);
  font-weight: 500;
}

.receipt-value {
  color: var(--text-main);
  font-weight: 600;
  word-break: break-word;
}

.receipt-total-row {
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.15rem;
}

.receipt-total-val {
  color: var(--accent-green);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .bullet-list {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .order-summary-card {
    position: static;
  }
}

@media (max-width: 576px) {
  .bullet-list {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
  }
  
  .checkout-form-container {
    padding: 24px;
  }
  
  .zone-selector {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.25rem;
  }
  .nav-cta-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .checkout-form-container {
    padding: 16px;
  }
}
