/* ===== LOCACLIM — Premium Design System ===== */
:root {
  --bg: #fafaf7;
  --bg-card: rgba(255,255,255,0.5);
  --bg-white: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #6b6b6b;
  --ink-muted: #9a9a9a;
  --line: #e5e5e0;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-light: #dbeafe;
  --green: #16a34a;
  --green-light: #dcfce7;
  --red: #dc2626;
  --red-light: #fef2f2;
  --orange: #ea580c;
  --orange-light: #fff7ed;
  --orange-soft: #c2410c;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== TOP BANNER ===== */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: var(--ink);
  color: #fff;
  height: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.top-banner-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: banner-scroll 25s linear infinite;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.top-banner-track strong {
  font-weight: 800;
}

.top-banner-track span {
  flex-shrink: 0;
}

@keyframes banner-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,247,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
}

.header-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.logo-sub {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-left: 8px;
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  vertical-align: middle;
  text-transform: uppercase;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}

.header-phone:hover { background: #333; }
.header-phone svg { width: 14px; height: 14px; }

.cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-btn svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ===== NAV DESKTOP ===== */
.nav-desktop {
  display: none;
  gap: 24px;
  align-items: center;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav-desktop a:hover { color: var(--ink); }

/* ===== AVAILABILITY BADGE ===== */
.availability {
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color: var(--ink-soft);
}

.availability-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 2s infinite;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 20px 20px 32px;
  max-width: 600px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s;
}

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

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
}

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

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-card);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.marquee-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.marquee-label {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ===== FEATURES GRID ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature {
  background: var(--bg-card);
  padding: 16px 12px;
  text-align: center;
}

.feature-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.feature-label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 24px;
}

/* ===== BOOKING WIDGET ===== */
.booking-widget {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin: 0 auto;
  max-width: 600px;
}

.booking-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.booking-title span { color: var(--accent); }

.booking-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.booking-check svg { width: 16px; height: 16px; color: var(--green); }

/* ===== STEPPER ===== */
.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 10px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--line);
  color: var(--ink-soft);
  background: var(--bg-white);
  transition: all 0.3s;
}

.step.active .step-circle {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.step.current .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  animation: pulse-step 2s infinite;
}

.step-label {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 500;
  text-align: center;
}

.step.active .step-label { color: var(--green); }
.step.current .step-label { color: var(--accent); font-weight: 600; }

.step-line {
  height: 3px;
  flex: 1;
  background: var(--line);
  margin: 0 -4px;
  margin-bottom: 20px;
  border-radius: 2px;
}

.step-line.done { background: var(--green); }

/* ===== STEP PANELS ===== */
.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

/* ===== CALENDAR ===== */
.calendar {
  margin-bottom: 20px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar-month {
  font-size: 16px;
  font-weight: 700;
}

.calendar-nav {
  display: flex;
  gap: 8px;
}

.calendar-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  transition: all 0.2s;
}

.calendar-nav button:hover { background: var(--bg); }
.calendar-nav button svg { width: 14px; height: 14px; }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-day-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}

.calendar-day:hover { background: var(--bg); }
.calendar-day.disabled { color: var(--ink-muted); pointer-events: none; opacity: 0.4; }
.calendar-day.today { font-weight: 700; }

.calendar-day.selected {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.calendar-day.in-range {
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 0;
}

.calendar-day.range-start { border-radius: 50% 0 0 50%; }
.calendar-day.range-end { border-radius: 0 50% 50% 0; }

/* ===== REGION SELECTOR ===== */
.region-select,
.city-select {
  width: 100%;
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-white);
  color: var(--ink);
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.region-select:focus,
.city-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.region-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.region-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.region-card.selected {
  border: 2px solid var(--accent);
  background: var(--accent-light);
}

.region-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.region-card-stock {
  font-size: 11px;
}

.region-card-stock.low { color: var(--red); }
.region-card-stock.ok { color: var(--green); }

/* ===== CITY SELECTOR ===== */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.city-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-white);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  line-height: 1.3;
}

.city-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.city-chip.selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
  border-color: var(--accent);
}

/* ===== FORM ===== */
.booking-form {
  margin-top: 16px;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-input::placeholder {
  color: var(--ink-muted);
}

.form-hint {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 4px;
}

select.form-select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg-white);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

select.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px auto;
  max-width: 600px;
}

.product-image {
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg);
}

.product-image img {
  max-height: 220px;
  object-fit: contain;
}

.product-info { padding: 20px; }

.product-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.spec-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }
.spec-item strong { color: var(--ink); font-weight: 600; }

.product-description {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 600;
}

.badge-green { background: var(--green-light); color: var(--green); }
.badge-blue { background: var(--accent-light); color: var(--accent); }
.badge-orange { background: var(--orange-light); color: var(--orange); }
.badge-red { background: var(--red-light); color: var(--red); }

/* ===== STOCK & URGENCY ===== */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 12px;
}

.stock-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

/* Stock check spinner */
.stock-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.viewers-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.viewers-badge svg { width: 14px; height: 14px; }

.urgency-timer {
  text-align: center;
  padding: 12px;
  background: var(--orange-light);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.urgency-timer .timer-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  font-family: 'SF Mono', SFMono-Regular, ui-monospace, 'DejaVu Sans Mono', Menlo, Consolas, monospace;
  letter-spacing: -0.5px;
}

.urgency-timer .timer-label {
  font-size: 12px;
  color: var(--orange-soft);
  margin-top: 2px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  background: var(--bg-card);
  padding: 14px 8px;
  text-align: center;
}

.trust-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.trust-text {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* ===== PRICING ===== */
.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}

.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--bg); }
.pricing-row.highlight { background: var(--accent-light); }

.pricing-duration {
  font-size: 14px;
  font-weight: 600;
}

.pricing-details {
  text-align: right;
}

.pricing-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.pricing-price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
}

.pricing-discount {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

.pricing-note {
  padding: 16px 20px;
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

/* ===== REVIEWS ===== */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.reviews-score {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
}

.reviews-stars {
  display: flex;
  gap: 2px;
  color: #facc15;
}

.reviews-stars svg { width: 18px; height: 18px; fill: currentColor; }

.reviews-count {
  font-size: 13px;
  color: var(--ink-soft);
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 12px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-author {
  font-size: 14px;
  font-weight: 600;
}

.review-date {
  font-size: 12px;
  color: var(--ink-muted);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #facc15;
  margin-bottom: 8px;
}

.review-stars svg { width: 14px; height: 14px; fill: currentColor; }

.review-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

.review-badge svg { width: 12px; height: 12px; }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--bg-white);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--bg); }

.faq-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink-soft);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 16px 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ===== PRO SECTION ===== */
.pro-section {
  background: var(--ink);
  color: #fff;
  padding: 40px 20px;
}

.pro-section .section-title { color: #fff; }
.pro-section .section-subtitle { color: rgba(255,255,255,0.6); }

.pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 24px;
}

.pro-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  transition: background 0.2s;
}

.pro-card:hover { background: rgba(255,255,255,0.12); }

.pro-card-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.pro-card-title {
  font-size: 13px;
  font-weight: 600;
}

.pro-card-desc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--line);
  padding: 32px 20px;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--ink); }
.footer-contact svg { width: 14px; height: 14px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 12px;
  color: var(--ink-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--ink); }

.footer-legal {
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ===== ORDER ALERT ===== */
.order-alert {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 380px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.order-alert.show {
  transform: translateY(0);
  opacity: 1;
}

.order-alert-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.order-alert-text {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.order-alert-text strong { color: var(--ink); font-weight: 600; }
.order-alert-time { font-size: 11px; color: var(--ink-muted); }
.order-alert-city { font-weight: 600; color: var(--accent); }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bg-white);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.cart-title {
  font-size: 16px;
  font-weight: 700;
}

.cart-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background 0.2s;
}

.cart-close:hover { background: var(--bg); }
.cart-close svg { width: 16px; height: 16px; }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-img img { max-height: 56px; }

.cart-item-info { flex: 1; }

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-dates {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
}

.cart-item-remove {
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
  margin-top: 4px;
  cursor: pointer;
}

.cart-item-remove:hover { text-decoration: underline; }

.cart-footer {
  border-top: 1px solid var(--line);
  padding: 20px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
}

.cart-caution {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.cart-checkout {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s;
}

.cart-checkout:hover { background: var(--accent-dark); }

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s;
}

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

.sticky-bottom-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-price {
  font-size: 13px;
  color: var(--ink-soft);
}

.sticky-price strong {
  display: block;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.sticky-cta {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  border: none;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.sticky-cta:hover { background: var(--accent-dark); }

/* ===== ORDER CONFIRMATION ===== */
.confirmation-panel {
  text-align: center;
  padding: 32px 20px;
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.confirmation-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.confirmation-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ===== PREMIUM ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes pulse-step {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(37,99,235,0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes countdownPulse {
  0%, 100% { transform: scale(1); color: var(--orange); }
  50% { transform: scale(1.05); color: var(--red); }
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s;
}

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

.skeleton {
  background: linear-gradient(90deg, var(--bg) 25%, var(--line) 50%, var(--bg) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .hero h1 { font-size: 42px; }
  .product-specs { grid-template-columns: 1fr 1fr 1fr; }
  .trust-bar { max-width: 600px; margin-left: auto; margin-right: auto; border-radius: var(--radius); }
  .order-alert { left: auto; right: 20px; }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  .city-grid { display: flex; flex-wrap: wrap; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
