/* ============================================================
   Mirasol Resort — Lake Restaurant Digital Menu
   Brand: White bg, Blue #1a8bbf accents, Dark #1a1a1a text
   Fonts: Great Vibes (headings), Nunito (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Nunito:wght@400;600;700;800&display=swap');

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

:root {
  --blue:        #1a8bbf;
  --blue-dark:   #126a94;
  --blue-light:  #e8f5fb;
  --dark:        #1a1a1a;
  --mid:         #444;
  --muted:       #777;
  --light:       #f0f0f0;
  --bg:          #ffffff;
  --bg-alt:      #fafafa;
  --veg-color:   #2e7d32;
  --nonveg-color:#c62828;
  --egg-color:   #e65100;
  --shadow:      0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.12);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  0.2s ease;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--dark);
  min-height: 100vh;
  overflow-x: hidden;
}

#app { min-height: 100vh; }

/* ── Typography ── */
.script-heading {
  font-family: 'Great Vibes', cursive;
  color: var(--blue);
  line-height: 1.2;
}

/* ── Utility ── */
.hidden   { display: none !important; }
.flex     { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ============================================================
   LANDING PAGE
   ============================================================ */
#view-landing {
  min-height: 100vh;
  background: linear-gradient(160deg, #0d5c7a 0%, #1a8bbf 50%, #2ba0d6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  position: relative;
  overflow: hidden;
}

#view-landing::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
#view-landing::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.landing-card {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}

.landing-logo {
  max-width: 240px;
  height: auto;
  margin: 0 auto 8px;
  display: block;
}

.landing-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.landing-tagline {
  font-size: 1rem;
  color: var(--mid);
  margin-bottom: 36px;
  font-weight: 400;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(26,139,191,0.4);
  width: 100%;
}
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,139,191,0.45); }
.btn-primary:active { transform: translateY(0); }

.landing-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   MODAL (Lead Capture)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal-box {
  background: var(--bg);
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideUp 0.25s ease;
}

.modal-box h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 6px;
}
.modal-box p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--mid);
  letter-spacing: 0.3px;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus { border-color: var(--blue); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 50px;
  padding: 11px 28px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--blue); color: #fff; }

.modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}

/* ============================================================
   APP HEADER
   ============================================================ */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-back {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--blue);
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  transition: background var(--transition);
}
.btn-back:hover { background: var(--blue-light); }
.btn-back svg { width: 22px; height: 22px; }

.header-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}
.header-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}

.header-logo-small {
  height: 36px;
  width: auto;
}

/* ── Checkout FAB ── */
.btn-checkout {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 12px rgba(26,139,191,0.35);
}
.btn-checkout:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(26,139,191,0.4); }
.btn-checkout svg { width: 18px; height: 18px; }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #e53935;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: pop 0.2s ease;
}

/* ============================================================
   CATEGORIES VIEW
   ============================================================ */
#view-categories {
  padding: 0 0 80px;
}

.categories-hero {
  padding: 28px 20px 20px;
  background: linear-gradient(135deg, var(--blue-light), #fff);
  border-bottom: 1px solid #e8e8e8;
}

.categories-hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.4rem;
  color: var(--blue);
  margin-bottom: 4px;
}
.categories-hero .greeting {
  font-size: 0.9rem;
  color: var(--mid);
}
.categories-hero .greeting span {
  color: var(--blue);
  font-weight: 700;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px 16px;
}

@media (min-width: 480px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(4, 1fr); } }

.category-card {
  background: #fff;
  border: 1.5px solid #ececec;
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.category-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,139,191,0.15);
}

.category-card .cat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}
.category-card .cat-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.category-card .cat-count {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   MENU ITEMS VIEW
   ============================================================ */
#view-items {
  padding: 0 0 100px;
}

.items-controls {
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 62px;
  z-index: 90;
}

.search-wrap {
  position: relative;
  margin-bottom: 12px;
}
.search-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}
#search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 2px solid var(--light);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  background: var(--bg-alt);
}
#search-input:focus { border-color: var(--blue); background: #fff; }

.filter-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.filter-chips::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.chip .type-dot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }

.items-list {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Menu Item Card ── */
.item-card {
  background: #fff;
  border: 1.5px solid #ececec;
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.item-card:hover { box-shadow: var(--shadow-md); }

.item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-alt);
}

.item-body { flex: 1; min-width: 0; }

.item-top {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

/* Veg / Non-veg / Egg icon */
.type-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.type-icon.veg     { border: 1.5px solid var(--veg-color); border-radius: 2px; background: #fff; position: relative; }
.type-icon.non-veg { border: 1.5px solid var(--nonveg-color); border-radius: 2px; background: #fff; position: relative; }
.type-icon.egg     { border: 1.5px solid var(--egg-color); border-radius: 2px; background: #fff; position: relative; }

.type-icon.veg::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--veg-color);
}
.type-icon.non-veg::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--nonveg-color);
  margin-top: -1px;
}
.type-icon.egg::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 7px solid var(--egg-color);
  margin-top: -1px;
}

.item-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  flex: 1;
}

.item-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-calories {
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--bg-alt);
  border-radius: 4px;
  padding: 2px 6px;
}

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

.item-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}
.item-price .currency { font-size: 0.8rem; font-weight: 600; }
.item-price.platter-price {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
}

/* Add to cart button */
.btn-add {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border: none;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(26,139,191,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.btn-add:hover  { transform: scale(1.12); box-shadow: 0 4px 14px rgba(26,139,191,0.4); }
.btn-add:active { transform: scale(0.96); }

/* Qty stepper (when already in cart) */
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-stepper button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-weight: 700;
}
.qty-stepper button:hover { background: var(--blue); color: #fff; }
.qty-stepper .qty-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
  min-width: 20px;
  text-align: center;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.no-results .no-results-icon { font-size: 3rem; margin-bottom: 12px; }
.no-results p { font-size: 0.9rem; }

/* ============================================================
   CART / CHECKOUT PANEL
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 900;
  animation: fadeIn 0.2s ease;
}

.cart-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
  z-index: 901;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  animation: slideUp 0.3s ease;
}

@media (min-width: 600px) {
  .cart-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 500px;
    bottom: 0;
  }
}

.cart-panel-header {
  padding: 20px 20px 14px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-panel-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}
.cart-guest-name {
  font-size: 0.8rem;
  color: var(--muted);
}

.btn-close-panel {
  background: var(--bg-alt);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--mid);
  transition: background var(--transition);
}
.btn-close-panel:hover { background: var(--light); }
.btn-close-panel svg { width: 18px; height: 18px; }

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-name {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  min-width: 64px;
  text-align: right;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}
.cart-empty .empty-icon { font-size: 2.5rem; margin-bottom: 8px; }
.cart-empty p { font-size: 0.88rem; }

.cart-panel-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
  border-radius: 0 0 0 0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cart-total-label { font-size: 0.9rem; color: var(--mid); font-weight: 600; }
.cart-total-amount { font-size: 1.1rem; font-weight: 800; color: var(--dark); }

.btn-send-order {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-send-order:hover:not(:disabled) { opacity: 0.92; transform: translateY(-1px); }
.btn-send-order:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.order-disabled-note {
  text-align: center;
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes pop {
  0%   { transform: scale(0.5); }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ============================================================
   CART — RESET BUTTON
   ============================================================ */
.btn-reset-cart {
  background: none;
  border: none;
  cursor: pointer;
  color: #e53935;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.btn-reset-cart:hover { background: #ffeaea; }
.btn-reset-cart svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   FEEDBACK BUTTON (floating, bottom-left of view)
   ============================================================ */
.btn-feedback-float {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: 50px;
  padding: 9px 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(26,139,191,0.15);
}
.btn-feedback-float:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,139,191,0.3);
}
.btn-feedback-float svg { width: 15px; height: 15px; }

/* ============================================================
   SOCIAL + FEEDBACK PAGE FOOTER
   ============================================================ */
.page-footer {
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #f0f0f0;
  margin-top: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--mid);
  transition: all var(--transition);
  text-decoration: none;
  border: 1.5px solid #e8e8e8;
}
.social-link:hover { transform: translateY(-2px); border-color: transparent; }
.social-link svg { width: 18px; height: 18px; }

.social-link.social-instagram:hover { background: #e1306c; color: #fff; }
.social-link.social-facebook:hover  { background: #1877f2; color: #fff; }
.social-link.social-twitter:hover   { background: #000;    color: #fff; }
.social-link.social-youtube:hover   { background: #ff0000; color: #fff; }
.social-link.social-tripadvisor:hover { background: #34e0a1; color: #fff; }

/* ============================================================
   FEEDBACK MODAL
   ============================================================ */
.feedback-modal .modal-box {
  max-width: 440px;
}

.star-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}
.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  font-size: 1.8rem;
  line-height: 1;
  color: #ddd;
  transition: color var(--transition), transform var(--transition);
}
.star-btn:hover,
.star-btn.filled { color: #f59e0b; }
.star-btn:hover  { transform: scale(1.15); }

.rating-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 18px;
  min-height: 1.2em;
}

.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  resize: vertical;
  min-height: 90px;
  outline: none;
  transition: border-color var(--transition);
  line-height: 1.5;
}
.form-group textarea:focus { border-color: var(--blue); }

.feedback-success {
  text-align: center;
  padding: 12px 0 4px;
}
.feedback-success .success-icon { font-size: 2.8rem; margin-bottom: 10px; }
.feedback-success h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.feedback-success p  { font-size: 0.88rem; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 360px) {
  .landing-card { padding: 32px 24px; }
  .categories-grid { gap: 10px; }
  .category-card { padding: 16px 8px; }
  .category-card .cat-icon { font-size: 1.6rem; }
}
