/* landing.css - Premium, highly customizable stylesheet for food delivery landing pages */

/* Theme Variables (default fallbacks - overridden dynamically by JS from config.js) */
:root {
  --primary: #e85d20;
  --primary-hover: #c44d18;
  --accent: #f5c518;
  --bg: #0f0e0c;
  --card-bg: #1a1917;
  --text-main: #f5ead7;
  --text-muted: #8a8070;
  
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Syne', sans-serif;
  --font-text: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--font-text);
  overflow-x: hidden;
  cursor: default;
  line-height: 1.6;
}

/* Noise overlay for texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  background: rgba(15, 14, 12, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

nav.scrolled {
  height: 60px;
  background: rgba(10, 9, 8, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
}

.logo-text span {
  color: var(--text-main);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cart-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.cart-count {
  background: var(--accent);
  color: var(--bg);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HERO SECTION ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 75% 50%, rgba(232, 93, 32, 0.1) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 85% 20%, rgba(245, 197, 24, 0.05) 0%, transparent 60%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(var(--text-main) 1px, transparent 1px),
                    linear-gradient(90deg, var(--text-main) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 32, 0.15);
  border: 1px solid rgba(232, 93, 32, 0.3);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.95;
  color: var(--text-main);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 93, 32, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
}

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

/* Floating Hero Image Graphic */
.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 500px;
}

.hero-circle-badge {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinSlow 25s linear infinite;
  pointer-events: none;
}

.hero-circle-badge svg {
  width: 420px;
  height: 420px;
  max-width: 100%;
  height: auto;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-main-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  z-index: 2;
  transition: transform 0.4s ease;
  animation: floatImage 6s ease-in-out infinite;
}

.hero-main-img:hover {
  transform: scale(1.03);
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* ── SERVICE SELECTOR (DELIVERY/PICKUP) ── */
.service-strip {
  background: var(--primary);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-strip h2 {
  font-family: var(--font-display);
  font-size: 38px;
  color: #fff;
  letter-spacing: 2px;
}

.service-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.25);
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.service-card.active {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.4);
}

.service-card:hover {
  background: rgba(0, 0, 0, 0.35);
}

.service-icon {
  font-size: 28px;
}

.service-details {
  color: #fff;
}

.service-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-sub {
  font-size: 11px;
  opacity: 0.8;
}

/* ── MENU SECTION ── */
.menu-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* Category Filters & Search */
.menu-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cat-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.cat-btn:hover, .cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.search-wrap {
  position: relative;
  min-width: 250px;
}

.search-input {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 10px 16px;
  font-family: var(--font-text);
  font-size: 14px;
  outline: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(232, 93, 32, 0.15);
}

/* Grid & Cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.08);
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #000;
}

.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.menu-card:hover .card-photo {
  transform: scale(1.05);
}

.card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card-bg) 0%, transparent 60%);
  pointer-events: none;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

.card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.1;
  text-transform: uppercase;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card-price {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--accent);
}

.add-btn {
  background: var(--primary);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  font-size: 20px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: var(--font-display);
}

.add-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
}

.add-btn.added {
  background: var(--accent);
  color: var(--bg);
}

/* ── STATUS BAR ── */
.status-bar {
  background: var(--card-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 10;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── CART SIDE PANEL ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 480px;
  max-width: 100vw;
  background: var(--card-bg);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-main);
  letter-spacing: 1.5px;
}

.close-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.close-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cart-body-wrap {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.cart-items {
  padding: 20px 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}

.ci-photo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ci-info {
  flex: 1;
}

.ci-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 2px;
}

.ci-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
}

.ci-qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.qty-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

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

.qty-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  min-width: 20px;
  text-align: center;
}

.cart-delivery-cost {
  padding: 12px 24px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Checkout Form inside Cart Panel */
.checkout-form {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.1);
}

.form-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
  font-weight: 600;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  padding: 12px 14px;
  font-family: var(--font-text);
  font-size: 13px;
  outline: none;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--primary);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

select.form-input option {
  background: var(--card-bg);
  color: var(--text-main);
}

/* Pay method info details */
.payment-info-box {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  margin-top: 10px;
  border-radius: 4px;
}

.payment-info-box.show {
  display: block;
}

.pbox-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.pbox-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
}

.pbox-row:last-child {
  border-bottom: none;
}

.pbox-k {
  color: var(--text-muted);
}

.pbox-v {
  color: var(--text-main);
  font-weight: 500;
  text-align: right;
  display: flex;
  align-items: center;
}

.pbox-copy-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  padding: 2px 6px;
  font-size: 10px;
  border-radius: 2px;
  cursor: pointer;
  margin-left: 6px;
  transition: all 0.2s ease;
}

.pbox-copy-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pbox-notes {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 10px;
}

.summary-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.summary-total {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
}

.checkout-submit-btn {
  width: 100%;
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checkout-submit-btn:hover {
  background: var(--primary-hover);
}

/* ── SUCCESS ORDER MODAL ── */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
}

.success-modal.open {
  opacity: 1;
  pointer-events: all;
}

.success-box {
  background: var(--card-bg);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow-y: auto;
  max-height: 90vh;
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-badge-icon {
  font-size: 60px;
  margin-bottom: 16px;
}

.success-box h2 {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.success-box p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.success-order-id {
  background: rgba(0,0,0,0.3);
  padding: 12px 20px;
  margin: 16px 0;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 4px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.success-payment-details {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  margin: 16px 0;
  text-align: left;
  border-radius: 4px;
}

.success-payment-details .pbox-title {
  color: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.wa-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 14px;
  text-decoration: none;
  width: 100%;
  transition: background 0.2s ease;
}

.wa-submit-btn:hover {
  background: #128C7E;
}

.success-close-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  padding: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1.5px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
  width: 100%;
}

.success-close-btn:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE RESPONSIVENESS ── */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }
  
  .nav-links {
    display: none; /* Hide default links for clean mobile presentation */
  }
  
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-graphic {
    max-width: 80%;
  }
  
  .hero-main-img {
    width: 250px;
    height: 250px;
  }
  
  .service-strip {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-options {
    width: 100%;
  }
  
  .service-card {
    flex: 1;
    min-width: 140px;
  }
  
  .menu-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-wrap {
    width: 100%;
  }
  
  .cart-panel {
    width: 100vw;
  }
}
