/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; -webkit-tap-highlight-color: transparent; }
input, select, textarea { font-family: inherit; font-size: 14px; }

/* === HEADER === */
.header {
  position: relative;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.3s ease;
}
.header--hidden {
  transform: translateY(-100%);
}
.header__accent {
  height: 3px;
  background: var(--color-primary);
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo-img {
  height: 48px;
  width: auto;
}
.header__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.header__delivery-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}
.header__delivery-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.3;
  white-space: nowrap;
}
.header__hours {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.3;
}
.header__icon {
  flex-shrink: 0;
  color: var(--color-text-secondary);
}
.header__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.header__phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.header__phone-btn:hover {
  background: #f5f5f5;
  border-color: #ccc;
}
.header__phone-icon {
  flex-shrink: 0;
  color: var(--color-primary);
}
.header__phone-number {
  font-weight: 600;
}
.header__phone-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-secondary);
}

/* === STORIES CAROUSEL === */
.stories-section {
  position: relative;
  padding: 20px 0 8px;
}
.stories-section__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.stories-section__scroll::-webkit-scrollbar { display: none; }
.story-card {
  flex: 0 0 auto;
  width: 160px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 0;
}
.story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.story-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stories-section__arrow {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--color-text);
  transition: background 0.2s;
}
.stories-section__arrow:hover { background: #f0f0f0; }

/* === STORY MODAL === */
.story-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.story-modal__container {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 90vh;
  max-height: 740px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.story-modal__progress {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
  z-index: 10;
}
.story-modal__progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}
.story-modal__progress-fill {
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.1s linear;
}
.story-modal__progress-bar.viewed .story-modal__progress-fill { width: 100%; }
.story-modal__progress-bar.active .story-modal__progress-fill {
  animation: story-progress 5s linear forwards;
}
@keyframes story-progress {
  from { width: 0%; }
  to { width: 100%; }
}
.story-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.story-modal__close:hover { background: rgba(0,0,0,0.6); }
.story-modal__content {
  width: 100%;
  height: 100%;
  position: relative;
}
.story-modal__slide {
  position: absolute;
  inset: 0;
}
.story-modal__slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.story-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.story-modal__nav:hover { background: rgba(255,255,255,0.3); }
.story-modal__nav--prev { left: 8px; }
.story-modal__nav--next { right: 8px; }

@media (max-width: 480px) {
  .story-card { width: 130px; height: 170px; }
  .story-modal__container { max-width: 100%; height: 100vh; max-height: none; border-radius: 0; }
}

/* === CATEGORY NAV === */
/* === CATEGORY NAV === */
.category-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}
.category-nav.stuck {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.category-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.category-nav__links {
  flex: 1;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-nav__links::-webkit-scrollbar { display: none; }
.category-nav__link {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--color-text-secondary);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.category-nav__link:hover { color: var(--color-text); }
.category-nav__link.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.category-nav__cart {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding: 0 20px;
  height: 36px;
  border-radius: 18px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.category-nav__cart:hover {
  background: var(--color-primary-hover);
}
.category-nav__cart-icon {
  flex-shrink: 0;
}
.category-nav__cart-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.35);
  display: none;
}
.category-nav__cart-count {
  font-weight: 700;
  display: none;
}
.category-nav__cart.has-items .category-nav__cart-divider,
.category-nav__cart.has-items .category-nav__cart-count {
  display: block;
}

/* === MAIN CONTENT === */
.main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* === POPULAR SECTION === */
.popular-section {
  padding: 24px 0 8px;
}
.popular-section__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.popular-section__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.popular-section__scroll::-webkit-scrollbar { display: none; }
.popular-item {
  flex: 0 0 auto;
  width: 140px;
  text-align: center;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.2s;
}
.popular-item:hover { background: #f5f5f5; }
.popular-item__img-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 8px;
  border-radius: 50%;
  overflow: hidden;
}
.popular-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-item__name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}
.popular-item__price {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* === MENU SECTIONS === */
.menu-section {
  padding-top: 32px;
}
.menu-section__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* === PRODUCT CARD === */
.product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  cursor: pointer;
}
.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card__image-wrap:hover .product-card__image {
  transform: translateY(4px) scale(1.01);
}
.product-card__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--color-success);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}
.product-card__info {
  padding: 10px 4px 0;
  flex: 1;
}
.product-card__name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
}
.product-card__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__footer {
  padding: 10px 4px;
  text-align: right;
}
.product-card__price-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  background: #fff3e6;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.product-card__price-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* === CART SIDEBAR === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
}
.cart-sidebar__title { font-size: 20px; font-weight: 700; }
.cart-sidebar__close { font-size: 28px; color: var(--color-text-secondary); }
.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.cart-sidebar__empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--color-text-secondary);
}
.cart-sidebar__footer {
  padding: 20px;
  border-top: 1px solid var(--color-border);
}
.cart-sidebar__total {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.cart-sidebar__order-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}
.cart-sidebar__order-btn:hover { background: var(--color-primary-hover); }

/* Cart item */
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item__img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item__info { flex: 1; }
.cart-item__name { font-size: 14px; font-weight: 500; }
.cart-item__price { font-size: 13px; color: var(--color-text-secondary); margin-top: 2px; }
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.cart-item__qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-item__qty-btn:hover { background: #e0e0e0; }
.cart-item__qty { font-size: 14px; font-weight: 500; min-width: 20px; text-align: center; }

/* === ORDER MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}
.modal__title { font-size: 20px; font-weight: 700; }
.modal__close { font-size: 28px; color: var(--color-text-secondary); }
.modal__form { padding: 24px; }
.modal__summary {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  font-size: 14px;
}
.modal__summary-line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.modal__summary-total {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--color-border);
  font-weight: 700;
}
.modal__submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}
.modal__submit-btn:hover { background: var(--color-primary-hover); }
.modal__submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.modal__error {
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #fff0f0;
  color: var(--color-error);
  font-size: 14px;
}

/* Delivery type toggle */
.delivery-type-toggle {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.delivery-type-option {
  flex: 1;
  cursor: pointer;
}
.delivery-type-option input[type="radio"] {
  display: none;
}
.delivery-type-label {
  display: block;
  text-align: center;
  padding: 10px 16px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.delivery-type-option input[type="radio"]:checked + .delivery-type-label {
  border-color: var(--color-primary);
  background: #fff3e8;
  color: var(--color-primary);
}

/* === FORM ELEMENTS === */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-row .form-group { flex: 1; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover { background: var(--color-primary-hover); }
.btn--small { padding: 6px 12px; font-size: 13px; }
.btn--danger { background: var(--color-error); color: #fff; }
.btn--danger:hover { opacity: 0.9; }

/* === FOOTER === */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 20px;
  margin-top: 60px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.footer__brand {
  display: flex;
  align-items: center;
}
.footer__logo-img {
  height: 80px;
  width: auto;
}
.footer__contacts { font-size: 14px; line-height: 1.8; color: #999; }
.footer__copy { font-size: 13px; color: #666; margin-left: auto; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .header__info { display: none; }
  .header__phone-number { display: none; }
  .header__phone-label { display: none; }
  .header__phone-btn { padding: 8px; border-radius: 50%; border: none; background: #f5f5f5; }
  .header__phone-icon { color: var(--color-text); }
  .menu-section__title { font-size: 22px; }
  .footer__inner { flex-direction: column; }
  .footer__copy { margin-left: 0; }
  .category-nav__cart { padding: 0 14px; height: 34px; font-size: 13px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .cart-sidebar { width: 100vw; }
  .popular-item { width: 120px; }
  .popular-item__img-wrap { width: 80px; height: 80px; }
  .category-nav__cart-text { display: none; }
  .category-nav__cart { padding: 0 12px; height: 32px; font-size: 12px; border-radius: 16px; }
}

/* === PRODUCT MODAL === */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.product-modal-overlay.active {
  opacity: 1;
}
.product-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  max-height: 90vh;
}
.product-modal-overlay.active .product-modal {
  transform: translateY(0);
  opacity: 1;
}
.product-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #333;
  transition: background 0.2s;
}
.product-modal__close:hover {
  background: rgba(0, 0, 0, 0.1);
}
.product-modal__body {
  display: flex;
  min-height: 400px;
}
.product-modal__image-section {
  flex: 0 0 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-modal__image-section img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
}
.product-modal__config-section {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.product-modal__name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-modal__ingredients-wrap {
  margin-bottom: 16px;
}
.product-modal__ingredients-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}
.product-modal__ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-modal__ingredient {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  background: #f0f0f0;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.product-modal__ingredient:hover {
  background: #e5e5e5;
}
.product-modal__ingredient .ingredient-icon {
  font-size: 14px;
  color: #999;
  line-height: 1;
}
.product-modal__ingredient.removed {
  opacity: 0.45;
  background: #fafafa;
  border-color: #e0e0e0;
}
.product-modal__ingredient.removed .ingredient-name {
  text-decoration: line-through;
}
.product-modal__ingredient.removed .ingredient-icon {
  display: none;
}
.product-modal__ingredient.removed::after {
  content: '+';
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1;
}
.product-modal__ingredients-hint {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 8px;
}
.product-modal__spacer {
  flex: 1;
  min-height: 16px;
}
.product-modal__add-btn {
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
  margin-top: 8px;
}
.product-modal__add-btn:hover {
  background: var(--color-primary-hover);
}

/* Cart removed ingredients */
.cart-item__removed {
  font-size: 11px;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-top: 1px;
  line-height: 1.3;
}

/* Order summary removed */
.modal__summary-removed {
  font-size: 12px;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-top: 2px;
}

/* Delivery info in cart sidebar */
.cart-sidebar__delivery-info {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart-sidebar__delivery-hint {
  font-size: 12px;
  color: var(--color-primary);
}

/* Delivery info in order summary */
.modal__summary-delivery {
  border-top: 1px solid var(--color-border);
  padding-top: 8px;
  margin-top: 8px;
}
.modal__summary-hint {
  font-size: 12px;
  color: var(--color-primary);
  margin-top: 2px;
  margin-bottom: 4px;
}

/* Mobile fix: prevent blue tap highlight on buttons and interactive elements */
.cart-item__qty-btn,
.product-modal__ingredient,
.product-modal__ingredient .ingredient-name {
  -webkit-tap-highlight-color: transparent;
  color: inherit;
}
button {
  -webkit-tap-highlight-color: transparent;
}

/* Product modal responsive */
@media (max-width: 640px) {
  .product-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .product-modal {
    max-width: none;
    width: 100%;
    height: 95vh;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
  }
  .product-modal__body {
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }
  .product-modal__image-section {
    flex: 0 0 auto;
    max-height: 35vh;
    min-height: 180px;
  }
  .product-modal__image-section img {
    max-height: 30vh;
  }
  .product-modal__config-section {
    flex: 1;
    padding: 20px 16px;
    overflow-y: visible;
  }
  .product-modal__name {
    font-size: 20px;
  }
}
