/* ==========================================================================
   Auntie Naan Custom Premium CSS Stylesheet
   Theme: Elegant Navy & Melted Cheese Gold
   ========================================================================== */

/* Design System Variables */
:root {
  --bg-dark: #070e1b;
  --bg-card: #111c30;
  --bg-card-hover: #16243d;
  --bg-input: #1b2a41;
  --color-primary: #f5a623;
  --color-primary-rgb: 245, 166, 35;
  --color-secondary: #ffbe3b;
  --color-cheese: #ffd000;
  --text-light: #f7fafc;
  --text-gray: #a0aec0;
  --text-dark: #1a202c;
  --success: #38a169;
  --whatsapp: #25d366;
  --whatsapp-hover: #20ba56;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
  --border-radius-sm: 6px;
  
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px rgba(245, 166, 35, 0.25);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
}

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

/* Background Decorative Glowing Blobs */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
  animation: float-glow 10s ease-in-out infinite alternate;
}

.bg-glow-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: 10%;
  right: -50px;
}

.bg-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-cheese) 0%, transparent 70%);
  top: 45%;
  left: -100px;
  animation-delay: 2s;
}

.bg-glow-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #e28743 0%, transparent 70%);
  bottom: 10%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float-glow {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(20px) scale(1.1); }
}

/* Utilities */
.text-center { text-align: center; }
.hidden { display: none !important; }
.accent-text { color: var(--color-primary); }
.highlight-text {
  color: var(--color-cheese);
  text-shadow: 0 0 10px rgba(255, 208, 0, 0.4);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #e08e0b 100%);
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-light);
}

/* Shimmer Animation */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 3.5s infinite;
}

@keyframes shine {
  0% { left: -60%; }
  15% { left: 130%; }
  100% { left: 130%; }
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 14, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-glass);
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 26px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a.nav-cta-btn {
  background: rgba(245, 166, 35, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
}

.nav-links a.nav-cta-btn:hover {
  background: var(--color-primary);
  color: var(--bg-dark);
}

/* Hero Section */
.hero-section {
  padding: 130px 0 80px 0;
}

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

.badge-holiday {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 580px;
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.usp-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border-radius: 50%;
  border: var(--border-glass);
}

.usp-text {
  font-size: 15px;
  color: var(--text-light);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.stock-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #ffbe3b;
  font-weight: 500;
}

.ping-indicator {
  position: relative;
  width: 10px;
  height: 10px;
}

.ping-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-cheese);
}

.ping-wave {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-cheese);
  animation: ping 1.5s infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* Hero Graphic */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(245,166,35,0.2), transparent);
  border: var(--border-glass);
  box-shadow: var(--shadow-premium);
}

.hero-main-img {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
}

.floating-badge {
  position: absolute;
  background: rgba(11, 23, 44, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: var(--border-glass);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: float-badge 4s ease-in-out infinite alternate;
}

.badge-cheese {
  top: 15%;
  left: -30px;
  border-left: 3px solid var(--color-cheese);
}

.badge-garlic {
  bottom: 15%;
  right: -30px;
  border-left: 3px solid #00cf6e;
  animation-delay: 2s;
}

@keyframes float-badge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: rgba(17, 28, 48, 0.4);
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
}

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

.section-title {
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 16px;
}

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

.feature-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 30px 24px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.2);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
}

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

.feature-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Quote Section */
.quote-section {
  padding: 60px 0;
  background: linear-gradient(180deg, transparent, rgba(245, 166, 35, 0.05), transparent);
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-secondary);
  line-height: 1.4;
  margin-bottom: 16px;
}

.quote-author {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-gray);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 20px;
}

.pricing-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-gray);
}

.pricing-card.popular {
  border: 2px solid var(--color-primary);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(20, 32, 53, 0.9) 100%);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.1);
}

.pricing-card.popular .popular-badge {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--bg-dark);
  font-weight: 700;
}

.pricing-card.super-value {
  border: 2px solid #00cf6e;
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(17, 35, 30, 0.9) 100%);
  box-shadow: 0 10px 30px rgba(0, 207, 110, 0.1);
}

.pricing-card.super-value .value-badge {
  background: #00cf6e;
  border-color: #00cf6e;
  color: var(--bg-dark);
  font-weight: 700;
}

.package-name {
  font-size: 20px;
  margin-bottom: 4px;
}

.package-qty {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 30px;
}

.package-price .currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.package-price .amount {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.saved-label {
  margin-left: 10px;
  background: rgba(255, 0, 0, 0.2);
  color: #ff5252;
  border: 1px solid rgba(255, 0, 0, 0.3);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.package-features li {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
}

.pricing-card.super-value .package-features li::before {
  color: #00cf6e;
}

.btn-select-package {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
}

.btn-select-package:hover {
  background: var(--text-light);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* Checkout Section */
.checkout-section {
  padding: 80px 0 100px 0;
  border-top: var(--border-glass);
  background: rgba(11, 23, 44, 0.4);
}

.checkout-grid-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.checkout-form-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-premium);
}

.checkout-form-card h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.form-desc {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 30px;
}

/* Forms */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.15);
}

.input-tip {
  display: block;
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 6px;
}

/* Payment Tabs */
.payment-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--bg-input);
  padding: 6px;
  border-radius: var(--border-radius-md);
}

.payment-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.payment-tab input {
  display: none;
}

.payment-tab:hover {
  background: rgba(255, 255, 255, 0.05);
}

.payment-tab.active {
  background: var(--color-primary);
  color: var(--bg-dark);
}

/* Payment Boxes */
.payment-details-box {
  background: rgba(7, 14, 27, 0.4);
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.payment-instruction {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 16px;
}

/* QR Code styling */
.qr-image-wrapper {
  background: white;
  padding: 16px;
  border-radius: var(--border-radius-lg);
  display: inline-block;
  margin: 10px auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.qr-code-img {
  width: 180px;
  height: 180px;
  display: block;
  object-fit: contain;
}

.qr-footer-text {
  font-size: 13px;
  margin-top: 12px;
  color: var(--text-light);
}

/* Bank Details Styling */
.bank-details-card {
  background: var(--bg-input);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid var(--color-primary);
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.bank-label {
  color: var(--text-gray);
}

.bank-val {
  color: var(--text-light);
}

.bank-acc-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-copy {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-copy:hover {
  background: var(--color-primary);
  color: var(--bg-dark);
  border-color: var(--color-primary);
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.file-upload-wrapper:hover {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.02);
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.upload-text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.upload-subtext {
  display: block;
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;
}

.file-upload-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.file-upload-preview img {
  max-width: 150px;
  max-height: 150px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  object-fit: contain;
}

.btn-remove-file {
  background: #ff5252;
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.btn-remove-file:hover {
  background: #d32f2f;
}

/* Submit Button */
.btn-submit-order {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  border-radius: var(--border-radius-md);
}

/* Checkout Summary Column */
.checkout-summary-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 30px;
  position: sticky;
  top: 90px;
}

.checkout-summary-card h3 {
  font-size: 20px;
}

.summary-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}

.summary-divider-sub {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 15px 0;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.summary-label {
  color: var(--text-gray);
}

.summary-value {
  font-weight: 600;
  color: var(--text-light);
}

.total-row {
  font-size: 18px;
  margin-top: 5px;
}

.total-row .summary-label {
  color: var(--text-light);
  font-weight: 700;
}

.total-row .summary-value {
  color: var(--color-cheese);
  font-size: 22px;
  font-weight: 900;
}

.summary-benefits-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin-top: 24px;
}

.summary-benefits-box h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--color-secondary);
}

.summary-benefits-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-benefits-box li {
  font-size: 13px;
  color: var(--text-light);
}

/* FAQ Accordions */
.summary-faq {
  margin-top: 30px;
}

.summary-faq h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
}

.summary-faq summary {
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.summary-faq summary:hover {
  color: var(--color-primary);
}

.summary-faq p {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 8px;
  line-height: 1.5;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border-left: 4px solid var(--color-primary);
  border-top: var(--border-glass);
  border-right: var(--border-glass);
  border-bottom: var(--border-glass);
  padding: 16px 24px;
  border-radius: var(--border-radius-sm);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}

.toast.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 14, 27, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  transition: opacity 0.3s ease;
}

.modal-content {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-premium);
  position: relative;
  animation: modal-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-pop {
  0% { transform: scale(0.9) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.success-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: inline-block;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.modal-content h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.modal-content p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.order-summary-box {
  background: var(--bg-input);
  border-radius: var(--border-radius-md);
  padding: 20px;
  text-align: left;
  margin-bottom: 24px;
  border: var(--border-glass);
}

.order-summary-box h3 {
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--color-secondary);
}

.order-summary-box p {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
}

.order-summary-box p:last-child {
  margin-bottom: 0;
}

.btn-whatsapp-redirect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--whatsapp);
  color: white;
  padding: 16px;
  border-radius: var(--border-radius-md);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.btn-whatsapp-redirect:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-close-modal {
  background: transparent;
  border: none;
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--transition-smooth);
}

.btn-close-modal:hover {
  color: var(--text-light);
}

/* Footer */
footer {
  background: #040811;
  padding: 40px 0;
  border-top: var(--border-glass);
  font-size: 13px;
  color: var(--text-gray);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-primary);
  text-decoration: none;
  margin: 0 10px;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .checkout-grid-container {
    grid-template-columns: 1fr;
  }
  
  .checkout-summary-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  
  .hero-desc {
    margin: 0 auto 30px auto;
  }
  
  .usp-list {
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .stock-warning {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    order: -1;
  }
  
  .floating-badge {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .badge-cheese {
    left: 10px;
  }
  
  .badge-garlic {
    right: 10px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none; /* simple stack representation, or hidden for mobile landing */
  }
  
  .checkout-form-card {
    padding: 24px;
  }
}
