/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #ef4146;
  --primary-dark: #d63539;
  --primary-light: #fdeaea;
  --text: #222;
  --text-light: #666;
  --bg: #fafafa;
  --card-bg: #fff;
  --border: #e8e8e8;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ========== LANGUAGE SWITCH ========== */
.lang-switch {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.lang-switch:hover { background: var(--primary); color: #fff; }
.lang-flag-img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }

/* Nav back button (main menu pages) */
.nav-back-btn {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
}
.nav-back-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.nav-back-btn svg { display: block; }

/* ========== MAIN CONTAINER ========== */
.menu-container {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  padding: 16px 16px 32px;
  position: relative;
  z-index: 1;
}

/* ========== RESTAURANT LOGO / TITLE AREA ========== */
.restaurant-brand {
  text-align: center;
  padding: 24px 0 8px;
  position: relative;
  z-index: 1;
}
.restaurant-logo {
  max-width: 220px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 6px;
}
.restaurant-brand h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.restaurant-brand p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  flex-wrap: wrap;
}
.breadcrumb-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb-btn:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-light); font-size: 0.75rem; }
.breadcrumb-current { font-size: 0.85rem; font-weight: 600; color: var(--text); }

/* ========== INITIAL LOADING SKELETON ========== */
.loading-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 6px;
}
.loading-skeleton {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.sk-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eceff3;
}
.sk-block::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0) 100%);
  animation: skeletonShimmer 1.2s infinite;
}
.sk-logo {
  width: 148px;
  height: 80px;
  border-radius: 10px;
}
.sk-brand-line {
  width: 120px;
  height: 14px;
  border-radius: 999px;
}

.sk-menu-card {
  height: 128px;
  border-radius: 14px;
}

.sk-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sk-category-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

@keyframes skeletonShimmer {
  100% { transform: translateX(100%); }
}

/* ========== CATEGORIES GRID ========== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 8px 0;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  /* box-shadow: 0 1px 4px rgba(0,0,0,0.10); */
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}
.category-card:hover {
  box-shadow: 0 4px 18px rgba(239,65,70,0.22);
  transform: translateY(-2px);
}
.category-card .cat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.category-card:hover .cat-img {
  transform: scale(1.06);
}
.category-card .cat-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #fff;
  opacity: 0.7;
}
.category-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
}
.category-card .cat-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 10px 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  line-height: 1.2;
}

/* ========== SUBCATEGORY LIST ========== */
.subcategory-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 0;
}
.subcategory-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.subcategory-card:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(239,65,70,0.12);
}
.subcategory-card .sub-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.subcategory-card .sub-arrow {
  color: var(--text-light);
  font-size: 1rem;
}

/* ========== PRODUCTS LIST ========== */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.product-card .prod-img {
  width: 110px;
  min-height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0f0f0;
}
.product-card .prod-info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}
.product-card .prod-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.product-card .prod-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .prod-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.product-card .prod-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.product-card .prod-note-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
  flex-shrink: 1;
}

/* ========== EMPTY STATE ========== */
.empty-state {
  text-align: center;
  padding: 48px 16px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ========== MODAL OVERLAY ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--card-bg);
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  border-radius: 20px 20px 0 0;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: #f0f0f0;
}
.modal-body {
  padding: 20px;
}
.modal-body .modal-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.modal-body .modal-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.modal-body .modal-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.modal-body .modal-note-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.modal-close {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: var(--primary-dark); }

/* ========== MODAL DRAG HANDLE ========== */
.modal-handle {
  width: 40px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 10px auto;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--text);
  color: #ccc;
  text-align: center;
  padding: 28px 16px 22px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.site-footer .footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}
.site-footer .footer-logo {
  max-height: 50px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.site-footer .footer-brand-fallback {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.site-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.site-footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: #aaa;
  transition: var(--transition);
  text-decoration: none;
}
.site-footer .social-link svg {
  width: 16px;
  height: 16px;
}
.site-footer .social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(239,65,70,0.08);
}
.site-footer .footer-divider {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 0 auto 10px;
  border-radius: 1px;
}
.site-footer .footer-copy {
  font-size: 0.72rem;
  color: #777;
}

/* ========== DESKTOP ENHANCEMENTS ========== */
@media (min-width: 768px) {
  .menu-container { padding: 24px 24px 48px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .product-card .prod-img { width: 140px; min-height: 120px; }
  .modal-content { border-radius: 20px; max-height: 80vh; margin-bottom: 20px; }
  .modal-overlay { align-items: center; }
  .modal-img { height: 300px; }
}

@media (min-width: 1024px) {
  .menu-container { max-width: 700px; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========== FLOATING BACKGROUND ICONS ========== */
.bg-icons-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-icon {
  position: absolute;
  opacity: 0.07;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.08));
  will-change: transform;
  transition: transform 0.12s cubic-bezier(0.25,0.46,0.45,0.94);
  user-select: none;
  -webkit-user-drag: none;
}
.bg-icon--pizza {
  width: 200px;
  top: -30px;
  left: -40px;
}
.bg-icon--salad {
  width: 180px;
  bottom: 100px;
  right: -30px;
}
.bg-icon--tomato {
  width: 140px;
  top: 42%;
  right: -10px;
}
.bg-icon--pepper {
  width: 150px;
  top: 48%;
  left: -15px;
  transform-origin: center;
}

/* confetti removed */

/* ========== SPECIAL MENUS BANNER ========== */
.special-menus-banner {
  margin-bottom: 20px;
}
.smb-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.smb-scroll {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  padding-bottom: 0;
}
.smb-scroll::-webkit-scrollbar { display: none; }

.smb-card {
  position: relative;
  flex-shrink: 1;
  width: 100%;
  min-height: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #161616;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.smb-scroll.has-multiple .smb-card {
  width: 100%;
  min-height: 140px;
}
.smb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.smb-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}
.smb-card:hover > img { opacity: 0.55; }
.smb-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 100%);
}
.smb-card-content {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.smb-card-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4a847;
  margin-bottom: 8px;
}
.smb-card-tag::before,
.smb-card-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212,168,71,0.35);
}
.smb-card-name {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  line-height: 1.15;
}
.smb-card-from {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
  letter-spacing: 0.3px;
}
.smb-card-from strong { color: #d4a847; font-size: 0.82rem; }
.smb-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  margin-top: 12px;
  width: fit-content;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.smb-card:hover .smb-card-cta {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}

/* ========== SPECIAL MENU FULL-SCREEN VIEW ========== */
.special-menu-view {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 300;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overscroll-behavior: contain;
}
.special-menu-view.active {
  transform: translateX(0);
}

/* sm-header-bar removed – back button now floats inside hero */
.sm-back-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.sm-back-btn:hover { background: rgba(0,0,0,0.58); }

.sm-hero {
  position: relative;
  width: 100%;
  height: 58vh;
  min-height: 300px;
  overflow: hidden;
  background: #eee;
}
.sm-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.04) 40%, rgba(0,0,0,0.72) 100%);
}
.sm-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 22px;
  color: #fff;
}
.sm-hero-name {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  line-height: 1.15;
  margin-bottom: 10px;
}
.sm-hero-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.sm-hero-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.92);
  font-size: 0.77rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.sm-hero-price-pill strong {
  color: #f5cc60;
  font-size: 0.88rem;
}

/* == SPECIAL MENU BODY — editorial layout == */
.sm-body {
  counter-reset: sm-counter;
  padding: 0;
  max-width: none;
  margin: 0;
  background: var(--bg);
}

/* Pull-quote description */
.sm-desc {
  position: relative;
  padding: 36px 28px 36px 56px;
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.95;
  text-align: left;
  font-style: normal;
  border-left: 2px solid rgba(212,168,71,0.5);
  margin: 36px 28px 32px;
}
.sm-desc::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 5rem;
  line-height: 1;
  color: #d4a847;
  opacity: 0.18;
  font-family: Georgia, serif;
  font-style: normal;
}

/* Divider label */
.sm-body-title {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px 24px;
  font-size: 0.56rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 700;
  text-align: left;
}
.sm-body-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Numbered sections */
.sm-section {
  counter-increment: sm-counter;
  position: relative;
  padding: 28px 28px 28px 84px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.sm-section:last-of-type { border-bottom: none; }
.sm-section::before {
  content: counter(sm-counter, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 25px;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,71,0.35);
}

/* Section title — left, no flanking lines */
.sm-section-title {
  font-size: 0.68rem;
  font-weight: 800;
  color: #b8892a;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* Items as individual tags */
.sm-section-items {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.sm-item {
  font-size: 0.8rem;
  color: var(--text);
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card-bg);
  letter-spacing: 0.15px;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.sm-item:hover {
  border-color: #d4a847;
  background: #fffbf0;
  color: #8a6400;
}

/* Footer note — full-width strip, left-aligned */
.sm-footer-note {
  margin: 0;
  padding: 28px 28px 28px 84px;
  background: #fffbf0;
  border-top: 1px solid rgba(212,168,71,0.2);
  border-radius: 0;
  text-align: left;
}
.sm-footer-note p {
  font-size: 0.68rem;
  color: var(--text-light);
  line-height: 2.1;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  max-width: 560px;
}
.sm-footer-note .sm-quote { display: none; }

@media (min-width: 768px) {
  .sm-hero { height: 55vh; }
  .sm-hero-name { font-size: 2.4rem; }
  .sm-body { padding: 0; }
  .sm-desc { margin: 40px 48px 36px; padding: 36px 36px 36px 60px; }
  .sm-body-title { padding: 0 48px 28px; }
  .sm-section { padding: 32px 48px 32px 108px; }
  .sm-section::before { left: 36px; top: 30px; }
  .sm-footer-note { padding: 32px 48px 32px 108px; }
}
@media (max-width: 420px) {
  .sm-desc { margin: 24px 16px 24px; padding: 28px 18px 28px 46px; }
  .sm-desc::before { font-size: 4rem; }
  .sm-body-title { padding: 0 16px 20px; }
  .sm-section { padding: 24px 16px 24px 70px; }
  .sm-section::before { left: 16px; font-size: 1.3rem; }
  .sm-footer-note { padding: 24px 16px 24px 70px; }
}

/* ========== PRODUCT VARIANTS (çeşitler) ========== */
.prod-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.prod-variant-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-light);
  border: 1px solid rgba(239,65,70,0.2);
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 0.73rem;
  white-space: nowrap;
}
.prod-variant-pill .pv-name { color: var(--text-light); }
.prod-variant-pill .pv-price { color: var(--primary); font-weight: 700; }

/* ========== MODAL VARIANTS ========== */
.modal-variants {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 8px 0 12px;
  background: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.modal-variant-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--border);
}
.modal-variant-row:last-child { border-bottom: none; }
.modal-variant-row .mv-name { color: var(--text-light); }
.modal-variant-row .mv-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

