/* ==========================================================================
   SEMARANG FLORIST — DESIGN VARIANT 3: PRESTISA-STYLE E-COMMERCE MARKETPLACE
   Aesthetics: Clean Indonesian Florist Marketplace (ala Prestisa.com),
   Upscale Velvet Rose & Berry Pink Palette, Bootstrap-Style Corner Radius (4px - 6px),
   Category Filter Tabs inside Catalog, 3 Steps in Fullwidth Rose Berry Box,
   Verified Google Places Social Proof (5.0 / 747 Reviews), & 3-Col Footer.
   Palette: Velvet Rose (#BE185D / #9D174D), Soft Rose Blush (#FCE7F3 / #FDF2F8),
            Warm Gold (#D97706), WhatsApp Green (#25D366), Dark Navy (#0F172A).
   ========================================================================== */

:root {
  /* Elegant Velvet Rose & Wild Berry Palette (Sophisticated Florist Ecommerce) */
  --prest-primary:       #BE185D; /* Sophisticated Berry Rose Pink */
  --prest-primary-dark:  #9D174D; /* Deep Wine Rose */
  --prest-primary-light: #FCE7F3; /* Soft Rose Blush */
  --prest-primary-subtle:#FDF2F8; /* Tinted Surface */
  --prest-primary-border:#FBCFE8; /* Delicate Petal Border */
  
  --prest-accent:        #E11D48; /* Vibrant Rose for Prices & Highlights */
  --prest-accent-light:  #FFE4E6;
  --prest-gold:          #D97706; /* Warm Amber Gold */
  --prest-gold-light:    #FEF3C7;
  --prest-wa:            #25D366; /* WhatsApp Green */
  
  --prest-ink:           #0F172A; /* Deep Slate Ink */
  --prest-text-muted:    #64748B; /* Refined Slate 500 */
  --prest-bg:            #FFF8FA; /* Ultra-soft rose-tinted clean background */
  --prest-surface:       #FFFFFF;
  --prest-border:        #F1E5E9; /* Warm delicate border */

  --font-prestisa:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:        'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Bootstrap-Style Corner Radius */
  --radius-xs:           3px;
  --radius-sm:           4px;
  --radius-md:           6px;
  --radius-lg:           8px;
  --radius-pill:         9999px;

  --shadow-card:         0 1px 3px rgba(190, 24, 93, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-hover:        0 8px 22px rgba(190, 24, 93, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-prestisa);
  background-color: var(--prest-bg);
  color: var(--prest-ink);
  line-height: 1.5;
  overflow-x: hidden;
}

::selection {
  background-color: var(--prest-primary-light);
  color: var(--prest-primary-dark);
}

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

/* --- Top Hotline Strip (Putih Agak Krem / Warm Cream Alabaster) --- */
.prest-topstrip {
  background-color: #FAF6F5; /* Putih agak krem lembut */
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 0;
  border-bottom: 1px solid #EFEAE8;
}

.prest-topstrip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topstrip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topstrip-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topstrip-right a {
  color: var(--prest-primary);
  text-decoration: none;
  font-weight: 700;
}

/* --- Main Header (Default: Velvet Pink | Sticky Scrolled: Clean White) --- */
.prest-header {
  background-color: var(--prest-primary); /* Default: Velvet Berry Rose Pink */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(190, 24, 93, 0.15);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.prest-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.prest-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.prest-brand-logo {
  width: 38px;
  height: 38px;
  background: #FFFFFF;
  color: var(--prest-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.prest-brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.prest-brand-tag {
  font-size: 0.6875rem;
  color: #FCE7F3;
  font-weight: 600;
  margin-top: 1px;
  transition: color 0.25s ease;
}

/* Menu Center (Default State on Pink Header) */
.prest-nav-menu {
  display: flex;
  align-items: center;
}

.prest-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.prest-nav-links a {
  text-decoration: none;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.prest-nav-links a:hover, 
.prest-nav-links a.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-weight: 700;
}

/* Search Bar (Default State on Pink Header) */
.prest-search-bar {
  display: flex;
  align-items: center;
  width: 280px;
  max-width: 100%;
}

.prest-search-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-right: none;
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.prest-search-input::placeholder {
  color: #FCE7F3;
}

.prest-search-input:focus {
  outline: none;
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.prest-search-btn {
  padding: 8px 12px;
  background-color: #FFFFFF;
  color: var(--prest-primary);
  border: 1px solid #FFFFFF;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prest-search-btn:hover {
  background-color: #FCE7F3;
}

/* --- Mobile Specific Elements Base State (Hidden on Desktop) --- */
.prest-mobile-nav-toggle {
  display: none;
}

.prest-mobile-search-toggle {
  display: none;
}

.prest-mobile-search-expand {
  display: none;
}

.prest-drawer-backdrop {
  display: none;
}

.prest-drawer-panel {
  display: none;
}

.budget-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.budget-chips-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Sticky Scrolled Header (Transisi ke Latar Putih Bersih saat di-scroll) --- */
.prest-header.is-scrolled {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--prest-border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.prest-header.is-scrolled .prest-brand-logo {
  background: linear-gradient(135deg, var(--prest-primary) 0%, var(--prest-primary-dark) 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(190, 24, 93, 0.25);
}

.prest-header.is-scrolled .prest-brand-name {
  color: var(--prest-primary);
}

.prest-header.is-scrolled .prest-brand-tag {
  color: var(--prest-text-muted);
}

.prest-header.is-scrolled .prest-nav-links a {
  color: var(--prest-ink);
}

.prest-header.is-scrolled .prest-nav-links a:hover,
.prest-header.is-scrolled .prest-nav-links a.active {
  background-color: var(--prest-primary-light);
  color: var(--prest-primary-dark);
  font-weight: 700;
}

.prest-header.is-scrolled .prest-search-input {
  background-color: var(--prest-primary-subtle);
  border: 1px solid var(--prest-border);
  border-right: none;
  color: var(--prest-ink);
}

.prest-header.is-scrolled .prest-search-input::placeholder {
  color: var(--prest-text-muted);
}

.prest-header.is-scrolled .prest-search-input:focus {
  border-color: var(--prest-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.12);
}

.prest-header.is-scrolled .prest-search-btn {
  background-color: var(--prest-primary);
  color: #FFFFFF;
  border-color: var(--prest-primary);
}

.prest-header.is-scrolled .prest-search-btn:hover {
  background-color: var(--prest-primary-dark);
}

/* --- Hero Section (Clean White Background) --- */
.prest-hero {
  padding: 28px 0 24px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--prest-border);
}

.prest-hero-banner {
  background: #FFFFFF;
  border: 1px solid var(--prest-border);
  border-radius: var(--radius-md);
  color: var(--prest-ink);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--prest-primary-light);
  color: var(--prest-primary-dark);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  border: 1px solid var(--prest-primary-border);
}

.banner-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--prest-ink);
}

.banner-subtitle {
  font-size: 0.9rem;
  color: var(--prest-text-muted);
  line-height: 1.5;
  margin-bottom: 22px;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-prest-accent {
  background-color: var(--prest-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(190, 24, 93, 0.25);
  transition: all 0.15s ease;
}

.btn-prest-accent:hover {
  background-color: var(--prest-primary-dark);
  transform: translateY(-1px);
}

.btn-prest-outline {
  background: #FFFFFF;
  color: var(--prest-ink);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--prest-border);
  transition: all 0.15s ease;
}

.btn-prest-outline:hover {
  border-color: var(--prest-primary);
  color: var(--prest-primary);
  background: var(--prest-primary-subtle);
}

.banner-feature-card {
  background-color: var(--prest-primary-subtle);
  border: 1px solid var(--prest-primary-border);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 4px 16px rgba(190, 24, 93, 0.08);
  color: var(--prest-ink);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.banner-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(190, 24, 93, 0.15);
}

.banner-card-img {
  width: 100%;
  aspect-ratio: 4/3.2;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.banner-card-footer {
  padding: 8px 4px 2px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Prestisa USP Trust Bar --- */
.prest-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.prest-usp-item {
  background-color: #FFFFFF;
  border: 1px solid var(--prest-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
}

.usp-icon {
  font-size: 1.35rem;
}

.usp-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--prest-ink);
}

.usp-desc {
  font-size: 0.72rem;
  color: var(--prest-text-muted);
}

/* --- 2. PESAN BUNGA CUKUP 3 LANGKAH (FULLWIDTH ROSE BERRY SECTION) --- */
.prest-steps-section {
  background: linear-gradient(135deg, #BE185D 0%, #9D174D 60%, #831843 100%);
  color: #FFFFFF;
  padding: 42px 0;
  margin-top: 0;
}

.steps-header {
  text-align: center;
  margin-bottom: 24px;
}

.steps-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.steps-title {
  font-size: 1.625rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.steps-subtitle {
  font-size: 0.875rem;
  color: #FCE7F3;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  color: #FFFFFF;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.step-num {
  width: 36px;
  height: 36px;
  border: 1.5px solid #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.step-name {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.step-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

/* --- 3. MAIN CATALOG SECTION (CATEGORIES INSIDE CATALOG) --- */
.prest-catalog-section {
  padding: 24px 0 45px 0;
}

.catalog-section-header {
  text-align: left;
  margin-bottom: 14px;
}

.catalog-section-header .badge-tag {
  display: inline-block;
  background-color: var(--prest-primary-light);
  color: var(--prest-primary-dark);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.catalog-section-header h2 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--prest-ink);
  margin-bottom: 0;
  line-height: 1.2;
}

/* Category Filter Tabs / Pills (Compact 1 Single Row, No Overflow on Desktop) */
.prest-catalog-categories {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.prest-catalog-categories::-webkit-scrollbar {
  display: none;
}

.prest-cat-pill {
  flex-shrink: 0;
  white-space: nowrap;
  width: auto;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--prest-border);
  background-color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--prest-ink);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}

.prest-cat-pill:hover,
.prest-cat-pill.active {
  background-color: var(--prest-primary);
  color: #FFFFFF;
  border-color: var(--prest-primary);
  font-weight: 700;
}

/* Toolbar for Budget and Sorting (Compact & Connected) */
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 12px;
  background-color: #FFFFFF;
  border: 1px solid var(--prest-border);
  border-radius: var(--radius-sm);
}

.budget-pills {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.budget-chip {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--prest-border);
  background-color: var(--prest-primary-subtle);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--prest-text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}

.budget-chip.active {
  background-color: var(--prest-primary-dark);
  color: #FFFFFF;
  border-color: var(--prest-primary-dark);
  font-weight: 700;
}

.sort-select {
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--prest-border);
  background-color: var(--prest-primary-subtle);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--prest-ink);
  cursor: pointer;
  font-family: inherit;
}

/* --- Product Cards Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background-color: #FFFFFF;
  border: 1px solid var(--prest-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--prest-primary-border);
}

.product-img-box {
  position: relative;
  aspect-ratio: 4/4.5;
  background-color: #FFF1F5;
  overflow: hidden;
  cursor: pointer;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img {
  transform: scale(1.03);
}

.product-badge-tier {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: var(--prest-primary);
  color: #FFFFFF;
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  font-size: 0.6875rem;
  font-weight: 800;
}

.product-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 4px;
}

.product-category-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--prest-primary);
  text-transform: uppercase;
}

.product-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--prest-ink);
  line-height: 1.35;
  margin-bottom: 2px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #F59E0B;
  font-weight: 700;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--prest-accent);
  margin-top: auto;
  padding-top: 6px;
}

/* Button Corners: Bootstrap Style (4px) */
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.btn-card-action,
.btn-card-wa {
  background-color: var(--prest-wa);
  color: #FFFFFF;
  border: 1px solid var(--prest-wa);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}

.btn-card-action:hover,
.btn-card-wa:hover {
  background-color: #1EBE5D;
}

.btn-card-action:last-child,
.btn-card-detail {
  background-color: var(--prest-primary-subtle);
  color: var(--prest-ink);
  border: 1px solid var(--prest-border);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-card-action:last-child:hover,
.btn-card-detail:hover {
  background-color: var(--prest-primary-light);
  color: var(--prest-primary-dark);
  border-color: var(--prest-primary-border);
}

.btn-prest-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--prest-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(190, 24, 93, 0.25);
  transition: all 0.15s ease;
}

.btn-prest-view-all:hover {
  background-color: var(--prest-primary-dark);
  transform: translateY(-1px);
}

/* --- 4. WILAYAH PENGANTARAN & JANGKAUAN KIRIM --- */
.prest-coverage-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--prest-border);
  border-bottom: 1px solid var(--prest-border);
  padding: 56px 0;
}

.coverage-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 36px auto;
}

.coverage-header h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--prest-ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.coverage-header p {
  font-size: 0.9375rem;
  color: var(--prest-text-muted);
  line-height: 1.7;
  text-align: center;
}

.delivery-zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.delivery-zone-card {
  border: 1px solid var(--prest-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.delivery-zone-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.zone-badge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.zone-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
}

.zone-tag-local {
  background-color: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}

.zone-tag-national {
  background-color: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.zone-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--prest-ink);
  line-height: 1.35;
}

.zone-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.zone-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--prest-ink);
}

.zone-feature-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.zone-feature-item strong {
  font-weight: 800;
  color: var(--prest-ink);
}

.zone-tag-cloud-box {
  background-color: var(--prest-primary-subtle);
  border: 1px solid var(--prest-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: auto;
}

.zone-cloud-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--prest-text-muted);
  margin-bottom: 8px;
}

.zone-cloud-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.zone-cloud-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  background-color: #FFFFFF;
  border: 1px solid var(--prest-border);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--prest-ink);
}

.zone-consult-banner {
  margin-top: 32px;
  background: linear-gradient(135deg, #FFF1F2 0%, #FFFFFF 100%);
  border: 1px solid #FECDD3;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.05);
}

.prest-btn-consult-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #10B981;
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.875rem;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transition: all 0.15s ease;
}

.prest-btn-consult-wa:hover {
  background-color: #059669;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

/* --- 5. SOCIAL PROOF & GOOGLE TESTIMONIALS (5.0 / 747 REVIEWS) --- */
.prest-trust-marquee-section {
  padding: 32px 0 20px 0;
  text-align: center;
  background-color: var(--prest-bg);
}

.trust-section-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--prest-text-muted);
  margin-bottom: 16px;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.client-chip {
  background: #FFFFFF;
  border: 1px solid var(--prest-border);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--prest-ink);
  white-space: nowrap;
}

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

.prest-reviews-section {
  padding: 40px 0 60px 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--prest-border);
}

.reviews-header {
  text-align: center;
  margin-bottom: 24px;
}

.reviews-header h2 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--prest-ink);
  margin-bottom: 6px;
}

.reviews-header p {
  font-size: 0.875rem;
  color: var(--prest-text-muted);
}

.reviews-summary-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FEF3C7;
  border: 1px solid #FDE68A;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #92400E;
  margin-top: 12px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.review-card {
  background-color: var(--prest-primary-subtle);
  border: 1px solid var(--prest-border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--prest-primary) 0%, var(--prest-primary-dark) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--prest-ink);
}

.reviewer-meta {
  font-size: 0.72rem;
  color: var(--prest-text-muted);
}

.review-stars {
  color: #F59E0B;
  font-size: 0.8125rem;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.8125rem;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 12px;
  font-style: italic;
}

.review-card-hub {
  background: linear-gradient(135deg, #BE185D 0%, #9D174D 60%, #831843 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 18px rgba(190, 24, 93, 0.18);
}

.hub-score {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.hub-stars {
  color: #FDE047;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hub-desc {
  font-size: 0.78rem;
  color: #FCE7F3;
  margin-bottom: 14px;
}

.btn-hub-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #FFFFFF;
  color: var(--prest-primary-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn-hub-cta:hover {
  background-color: #FFF1F5;
}

.reviews-bottom-action {
  text-align: center;
  margin-top: 32px;
}

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  color: var(--prest-ink);
  border: 1px solid var(--prest-border);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: all 0.15s ease;
}

.btn-google-reviews:hover {
  border-color: var(--prest-primary);
  color: var(--prest-primary);
}

/* --- 6. FOOTER (CLEAN 3-COLUMNS + MAP EMBED) --- */
.prest-footer {
  background-color: #0F172A;
  color: #94A3B8;
  padding: 48px 0 20px 0;
  font-size: 0.8125rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand-title {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-business-type {
  font-size: 0.75rem;
  color: #F472B6;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-desc {
  line-height: 1.55;
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #4ADE80;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #22C55E;
  box-shadow: 0 0 8px #22C55E;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.8rem;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.footer-phone-link {
  color: #F472B6;
  text-decoration: none;
  font-weight: 700;
}

.footer-route-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
  transition: all 0.15s ease;
}

.footer-route-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-map-wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 155px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #334155;
  font-size: 0.78rem;
}

.footer-bottom-copy {
  color: #CBD5E1;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-bottom-links a:hover {
  color: #F472B6;
}

/* --- Modal Quick View --- */
.modal-backdrop {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background-color: var(--prest-primary-subtle);
  border: none;
  cursor: pointer;
  font-weight: 800;
  color: var(--prest-ink);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  padding: 24px;
}

.modal-img-wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-input {
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--prest-border);
  font-size: 0.8125rem;
  font-family: inherit;
}

.modal-input:focus {
  outline: none;
  border-color: var(--prest-primary);
}

/* --- Floating Side Switcher & Floating WA --- */
.side-switcher-container {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
}

.side-toggle-btn {
  background: var(--prest-primary-dark);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  padding: 9px 12px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: -3px 4px 12px rgba(190, 24, 93, 0.25);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  transition: all 0.2s ease;
}

.side-toggle-btn:hover {
  background: var(--prest-primary);
}

.side-popup-backdrop {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.side-popup-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.side-popup-card {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) scale(0.95);
  background: #FFFFFF;
  border: 1px solid var(--prest-border);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  width: 320px;
  max-width: calc(100vw - 32px);
  padding: 18px;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-popup-card.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--prest-border);
}

.popup-title {
  font-size: 0.9375rem;
  font-weight: 800;
}

.popup-close-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: #F1F5F9;
  border: none;
  cursor: pointer;
}

.popup-options-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.design-option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--prest-border);
  background: #FFFFFF;
  text-decoration: none;
  color: var(--prest-ink);
  transition: all 0.15s ease;
}

.design-option-card:hover {
  border-color: var(--prest-primary);
}

.design-option-card.active {
  background: var(--prest-primary-light);
  border-color: var(--prest-primary);
}

.option-icon-box {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.option-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.option-name {
  font-size: 0.875rem;
  font-weight: 700;
}

.option-desc {
  font-size: 0.72rem;
  color: var(--prest-text-muted);
}

.floating-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
}

.wa-fab-btn {
  width: 52px; height: 52px;
  background-color: var(--prest-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.wa-fab-btn:hover {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .prest-usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* 1. Header Mobile (Left: Menu Toggle | Center: Logo | Right: Search Toggle) */
  .prest-topstrip {
    display: none;
  }

  .prest-header-main {
    padding: 10px 4px;
    gap: 8px;
    position: relative;
  }

  .prest-mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-left: 8px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }

  .prest-header.is-scrolled .prest-mobile-nav-toggle {
    background: var(--prest-primary-subtle);
    border-color: var(--prest-border);
    color: var(--prest-primary);
  }

  .prest-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    text-align: center;
    flex: 1;
  }

  .prest-brand-logo {
    width: 32px;
    height: 32px;
  }

  .prest-brand-logo svg {
    width: 18px;
    height: 18px;
  }

  .prest-brand-name {
    font-size: 0.9375rem;
  }

  .prest-brand-tag {
    display: none;
  }

  .prest-nav-menu,
  .desktop-search {
    display: none !important;
  }

  .prest-mobile-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }

  .prest-header.is-scrolled .prest-mobile-search-toggle {
    background: var(--prest-primary-subtle);
    border-color: var(--prest-border);
    color: var(--prest-primary);
  }

  .prest-mobile-search-expand {
    display: none;
    background-color: #FFFFFF;
    border-top: 1px solid var(--prest-border);
    padding: 10px 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  }

  .prest-mobile-search-expand.open {
    display: block;
    animation: fadeInDown 0.2s ease forwards;
  }

  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .prest-mobile-search-input-wrap {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .prest-mobile-search-field {
    width: 100%;
    padding: 8px 12px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border: 1px solid var(--prest-border);
    border-right: none;
    background-color: var(--prest-primary-subtle);
    color: var(--prest-ink);
    font-size: 0.8125rem;
    font-family: inherit;
    outline: none;
  }

  .prest-mobile-search-field:focus {
    border-color: var(--prest-primary);
    background-color: #FFFFFF;
  }

  /* Mobile Navigation Drawer Panel */
  .prest-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .prest-drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .prest-drawer-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 290px;
    max-width: 85vw;
    background: #FFFFFF;
    border-right: 1px solid var(--prest-border);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  .prest-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--prest-border);
    background-color: var(--prest-primary-subtle);
  }

  .prest-drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .prest-drawer-close {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: #FFFFFF;
    border: 1px solid var(--prest-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 800;
    color: var(--prest-ink);
  }

  .prest-drawer-links {
    list-style: none;
    padding: 16px 14px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow-y: auto;
  }

  .prest-drawer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none !important;
    color: var(--prest-ink);
    transition: all 0.15s ease;
  }

  .prest-drawer-links a:hover,
  .prest-drawer-links a.active {
    background-color: var(--prest-primary-light);
    color: var(--prest-primary);
  }

  .prest-drawer-footer {
    padding: 16px;
    border-top: 1px solid var(--prest-border);
    background-color: #FAFAFA;
  }

  /* 2. Hero Section Mobile (Hide Featured Card Image & Center Content) */
  .prest-hero {
    padding: 24px 0 36px 0;
  }

  .prest-hero-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 18px;
    gap: 0;
  }

  .banner-badge {
    margin: 0 auto 12px auto;
  }

  .banner-title {
    font-size: 1.65rem !important;
    line-height: 1.3;
    text-align: center;
    margin: 0 auto 12px auto;
  }

  .banner-subtitle {
    font-size: 0.84375rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 20px auto;
    max-width: 100%;
  }

  .banner-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 10px;
  }

  .banner-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .banner-feature-card {
    display: none !important;
  }

  /* 4 Trust USPs Grid on Mobile */
  .prest-usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
  }

  .prest-usp-item {
    padding: 12px 10px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .usp-title {
    font-size: 0.78125rem;
  }

  .usp-desc {
    font-size: 0.6875rem;
  }

  /* 3. Steps Grid Mobile */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 24px 18px;
    text-align: center;
    align-items: center;
  }

  .step-num {
    margin: 0 auto 12px auto;
  }

  .step-name {
    text-align: center;
  }

  .step-desc {
    text-align: center;
  }

  /* 4. Catalog & Filter Toolbar Mobile (Budget 2x2, Sort Inline) */
  .prest-catalog-categories {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .prest-cat-pill {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    background-color: #FFFFFF;
    border: 1px solid var(--prest-border);
    border-radius: var(--radius-md);
  }

  .budget-section {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .budget-label {
    text-align: center;
    width: 100%;
    font-size: 0.8125rem;
    font-weight: 800;
  }

  .budget-chips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 8px;
  }

  .budget-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 7px 6px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .sort-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .sort-label {
    font-size: 0.8125rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .sort-select {
    flex: 1;
    max-width: 200px;
    padding: 7px 12px;
    font-size: 0.8125rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* 5. Delivery Coverage Cards Mobile */
  .delivery-zones-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .delivery-zone-card {
    padding: 24px 18px;
    align-items: center;
    text-align: center;
  }

  .zone-badge-header {
    justify-content: center;
    width: 100%;
  }

  .zone-title {
    font-size: 1.15rem;
    text-align: center;
  }

  .zone-features-list {
    width: 100%;
    text-align: left;
  }

  .zone-tag-cloud-box {
    text-align: center;
    width: 100%;
  }

  .zone-cloud-tags {
    justify-content: center;
  }

  .zone-consult-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 16px;
  }

  .zone-consult-banner h4,
  .zone-consult-banner p {
    text-align: center;
  }

  .prest-btn-consult-wa {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* 6. Reviews & Rating Bar Mobile */
  .reviews-summary-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 12px;
    text-align: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-bottom-action a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  /* 7. Footer Mobile (Semua Rata Tengah) */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-brand-title,
  .footer-business-type,
  .footer-desc {
    text-align: center;
  }

  .footer-status-pill {
    margin: 0 auto 12px auto;
  }

  .footer-heading {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .footer-info-list {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .footer-route-btn {
    margin: 0 auto;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links {
    justify-content: center;
    text-align: center;
  }

  /* Floating Design Switcher on Mobile (Geser lebih ke kiri) */
  .side-switcher-container {
    right: 28px !important;
    top: 40%;
  }

  .side-toggle-btn {
    padding: 9px 18px;
    font-size: 0.8125rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 24px rgba(62, 56, 217, 0.55);
  }

  .side-popup-card {
    right: 14px;
    left: 14px;
    width: auto;
    max-width: calc(100vw - 28px);
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.45rem !important;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .prest-usp-grid {
    grid-template-columns: 1fr;
  }

  .budget-chips-grid {
    grid-template-columns: 1fr 1fr;
  }
}
