/* =======================
   BASE
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f9f9f9;
  color: #222;
}

/* =======================
   HEADER
======================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  color: #ff4fa3;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 2.8em;
}

header h1 {
  font-size: 1.8em;
  letter-spacing: 2px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.25s;
}

nav a:hover {
  color: #ff7e1b;
}

/* =======================
   BUTTONS
======================= */
.btn {
  background: #ff7e1b;
  border: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95em;
  cursor: pointer;
  transition: 0.25s;
}

.btn:hover {
  background: #ff933a;
  transform: translateY(-1px);
}

.add-to-cart,
.open-ser-modal {
  width: 100%;
  max-width: 220px;
}

/* =======================
   HERO
======================= */
.hero {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('5215357575149325867.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.45)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.15em;
  margin-bottom: 25px;
  color: #fff;
}

/* =======================
   SECTIONS
======================= */
section {
  padding: 52px 10%;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
  scroll-margin-top: 100px;
}

#shawarma {
  padding-top: 110px;
}

#advantages {
  padding-bottom: 42px;
}

#about {
  padding-top: 42px;
  padding-bottom: 36px;
}

#contact {
  padding-top: 38px;
}

section h2 {
  margin-bottom: 20px;
  font-size: 2em;
}

#contact p {
  max-width: 900px;
  margin: 8px auto;
  color: #555;
  line-height: 1.7;
}

/* =======================
   MENU TABS
======================= */
.menu-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0 36px;
}

.menu-tab {
  text-decoration: none;
  color: #222;
  background: #fff;
  border: 1px solid #eee;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.menu-tab:hover {
  background: #fff3ea;
  border-color: #ffd8bc;
  color: #ff7e1b;
  transform: translateY(-1px);
}

.menu-tab.active {
  background: #ff7e1b;
  color: #fff;
  border-color: #ff7e1b;
}

/* =======================
   PRODUCT CARDS
======================= */
.menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 0;
}

.item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.item.product-added {
  animation: productAdded 0.6s ease;
}

@keyframes productAdded {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.025);
    box-shadow: 0 18px 38px rgba(255, 126, 27, 0.20);
  }
  100% {
    transform: scale(1);
  }
}

.product-clickable {
  cursor: pointer;
}

.item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

#combo .item img {
  height: 260px;
  object-fit: cover;
  object-position: center;
  background: #fff;
}

#sauces .menu {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#sauces .item img {
  height: 180px;
  object-fit: contain;
  padding: 14px;
  background: #fafafa;
}

.item h3 {
  margin: 16px 0 8px;
  font-size: 1.2em;
}

.item p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 18px;
  padding: 0 15px;
  line-height: 1.6;
}

.card-actions {
  margin-top: auto;
  padding: 0 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.price {
  background: #fff3ea;
  color: #ff7e1b;
  font-weight: 700;
  border-radius: 20px;
  padding: 8px 18px;
}

.coming-soon {
  color: #777;
}

/* =======================
   ADVANTAGES / CONTACT
======================= */
.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.adv-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.adv-card:hover {
  transform: translateY(-5px);
}

.adv-card h3 {
  margin-bottom: 12px;
}

.adv-card p {
  color: #666;
  line-height: 1.6;
}

.contact-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.telegram-btn {
  background: #229ed9;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.telegram-btn:hover {
  background: #168ac4;
}

.map-btn {
  background: #2b2b2b;
}

.map-btn:hover {
  background: #3a3a3a;
}


.about-section {
  padding-top: 38px;
  padding-bottom: 36px;
}

.about-card {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 28px;
  padding: 30px 32px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.about-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff3ea;
  color: #ff7e1b;
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: 12px;
  margin-bottom: 10px;
}

.about-card h2 {
  margin-bottom: 12px;
}

.about-card p {
  max-width: 690px;
  margin: 0 auto;
  color: #555;
  line-height: 1.75;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.about-point {
  background: #fafafa;
  border: 1px solid #f2f2f2;
  border-radius: 18px;
  padding: 15px 14px;
  text-align: left;
}

.about-point strong {
  display: block;
  color: #222;
  font-size: 13px;
  margin-bottom: 5px;
}

.about-point span {
  display: block;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
}

.contact-section {
  padding-top: 38px;
  padding-bottom: 58px;
}

.contact-card {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.contact-card-head {
  text-align: center;
  margin-bottom: 24px;
}

.contact-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff3ea;
  color: #ff7e1b;
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: 12px;
  margin-bottom: 10px;
}

.contact-card-head h3 {
  font-size: 1.45em;
  margin-bottom: 8px;
  color: #222;
}

.contact-card-head p {
  color: #666;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 560px;
}

.contact-info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fafafa;
  border: 1px solid #f2f2f2;
  border-radius: 18px;
  padding: 14px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info-item strong {
  display: block;
  color: #222;
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-info-item span:last-child {
  display: block;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
}

.contact-card .contact-buttons {
  margin-top: 0;
}

/* =======================
   FLOATING TELEGRAM
======================= */
.floating-telegram {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0088cc;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.28);
  z-index: 1500;
  transition: transform 0.3s, background 0.3s;
}

.floating-telegram:hover {
  background: #0099e6;
  transform: scale(1.08);
}

/* =======================
   CART
======================= */
.cart-toggle {
  border: none;
  background: #fff3ea;
  color: #ff7e1b;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95em;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s;
}

.cart-toggle:hover {
  background: #ffe6d2;
}

.cart-badge {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff7e1b;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding: 0 6px;
}

.cart-toggle.cart-pulse {
  animation: cartPulse 0.65s ease;
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(255, 126, 27, 0.28);
  }
  100% {
    transform: scale(1);
  }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 2998;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 430px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.18);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  border-radius: 28px 0 0 28px;
  transition: right 0.35s ease;
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 22px;
  border-bottom: 1px solid #f1f1f1;
}

.cart-drawer-header h2 {
  font-size: 1.52em;
  font-weight: 900;
  margin: 0;
}

.cart-close {
  border: none;
  background: #f7f7f7;
  color: #222;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: 0.25s;
}

.cart-close:hover {
  background: #ff7e1b;
  color: #fff;
}

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

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  margin-bottom: 10px;
  border: 1px solid #f2f2f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.045);
}

.cart-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cart-item-thumb {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  background: #fafafa;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cart-item-name {
  color: #222;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.22;
  max-width: 185px;
}

.cart-item-price {
  color: #888;
  font-size: 12px;
}

.cart-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #f7f7f7;
  border-radius: 999px;
  padding: 5px 8px;
}

.qty-btn {
  border: none;
  background: #fff;
  color: #222;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: 0.2s;
}

.qty-btn:hover {
  background: #ff7e1b;
  color: #fff;
}

.qty-value {
  min-width: 18px;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
}

.cart-line-total {
  font-size: 14px;
  font-weight: 900;
  color: #222;
}

.empty-cart {
  text-align: center;
  color: #888;
  padding: 50px 10px;
}

.cart-drawer-footer {
  padding: 14px 16px 16px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.04);
}

.promo-block {
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 10px;
  text-align: left;
}
.customer-block {
  display: none;
  background: #fff8f2;
  border: 1px solid #ffe0c2;
  padding: 14px;
  border-radius: 18px;
  margin-bottom: 10px;
  text-align: left;
}

.cart-drawer.checkout-mode .customer-block {
  display: block;
}

.customer-input {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
  padding: 0 12px;
  font-size: 13px;
  outline: none;
  margin-bottom: 8px;
}

.customer-input:focus {
  border-color: #ff7e1b;
}

.customer-textarea {
  height: 70px;
  padding-top: 10px;
  resize: none;
  font-family: inherit;
}


.cart-drawer.success-mode .cart-drawer-body,
.cart-drawer.success-mode .cart-drawer-footer {
  display: none;
}

.order-success {
  display: none;
  flex: 1;
  padding: 24px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cart-drawer.success-mode .order-success {
  display: flex;
}

.order-success-card {
  width: 100%;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 26px 22px 24px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.receipt-card::before,
.receipt-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    #e8e8e8 0,
    #e8e8e8 8px,
    transparent 8px,
    transparent 14px
  );
}

.receipt-card::before {
  top: 62px;
}

.receipt-card::after {
  bottom: 74px;
}

.receipt-brand {
  color: #ff4fa3;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.order-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ff7e1b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px rgba(255, 126, 27, 0.24);
}

.order-success-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #222;
}

.order-success-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.order-number {
  background: #fff8f2;
  border: 1px solid #ffe0c2;
  border-radius: 18px;
  padding: 13px;
  margin-bottom: 14px;
  color: #555;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-number strong {
  color: #ff7e1b;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.receipt-note {
  color: #777;
  font-size: 13px;
  margin: 4px 0 22px;
}

.promo-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
  color: #222;
}

.promo-row {
  display: flex;
  gap: 8px;
}

.promo-input {
  flex: 1;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
  padding: 0 12px;
  font-size: 13px;
  outline: none;
}

.promo-input:focus {
  border-color: #ff7e1b;
}

.promo-btn {
  height: 40px;
  white-space: nowrap;
  padding: 0 15px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  background: #ff7e1b;
}

.promo-btn.applied {
  background: #ff7e1b;
}

.promo-message {
  min-height: 0;
  margin-top: 6px;
  font-size: 12px;
  color: #1a8f3c;
}

.promo-message.error {
  color: #d33;
}

.cart-summary-list {
  background: #fafafa;
  padding: 12px 14px;
  border-radius: 16px;
  margin-bottom: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
  color: #333;
  font-size: 13px;
}

.summary-row strong {
  font-size: 13px;
}

.total-row {
  font-size: 15px;
  font-weight: 800;
  padding-top: 9px;
  margin-top: 3px;
  border-top: 1px solid #e9e9e9;
}

.total-row strong {
  font-size: 16px;
}

.checkout-btn {
  width: 100%;
  height: 42px;
  justify-content: center;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

#send-order-btn {
  background: #ff7e1b;
}

#send-order-btn:hover {
  background: #ff933a;
}

#send-order-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.clear-btn {
  height: 40px;
  background: #f1f1f1;
  color: #555;
  font-size: 13px;
  border-radius: 15px;
}

.clear-btn:hover {
  background: #e5e5e5;
  color: #222;
}


/* =======================
   EMPTY CART / PRODUCT COUNTER / MOBILE MINI CART
======================= */
.cart-drawer.cart-empty .cart-drawer-footer {
  display: none;
}

.cart-drawer.cart-empty .cart-drawer-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-cart-state {
  max-width: 310px;
  margin: 0 auto;
  padding: 40px 10px;
}

.empty-cart-icon {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3ea;
  color: #ff7e1b;
  font-size: 26px;
  margin-bottom: 18px;
}

.empty-cart-state h3 {
  color: #222;
  font-size: 22px;
  margin-bottom: 10px;
}

.empty-cart-state p {
  color: #777;
  line-height: 1.5;
  margin-bottom: 18px;
}

.empty-cart-menu-btn {
  width: 100%;
  max-width: 230px;
}

.product-counter-btn {
  max-width: 220px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: #ff7e1b;
}

.product-counter-btn:hover {
  background: #ff7e1b;
  transform: none;
}

.card-counter-action {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.card-counter-value {
  min-width: 26px;
  text-align: center;
  color: #fff;
  font-weight: 900;
}

.mobile-mini-cart {
  display: none;
}

/* =======================
   PRODUCT MODAL
======================= */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 3000;
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(920px, calc(100% - 30px));
  background: #fff;
  border-radius: 28px;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 3001;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f3f3f3;
  font-size: 28px;
  cursor: pointer;
}

.product-modal-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  padding: 28px;
  align-items: center;
}

.product-modal-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-modal-image {
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.product-modal-info h2,
.product-modal-info h3,
.product-modal-desc,
.product-modal-base-price {
  text-align: left;
}

.product-modal-info h2 {
  margin-bottom: 10px;
}

.product-modal-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.product-modal-base-price {
  color: #222;
  font-weight: 700;
  margin-bottom: 24px;
}

.product-modal-info h3 {
  margin-bottom: 14px;
  font-size: 1.2em;
}

.option-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.option-card {
  border: 2px solid #eee;
  border-radius: 18px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: 0.25s;
  text-align: left;
}

.option-card.active {
  border-color: #ff7e1b;
  background: #fff8f2;
}

.option-card input {
  display: none;
}

.option-title {
  font-weight: 700;
  color: #222;
}

.option-price {
  color: #ff7e1b;
  font-weight: 700;
}

.modal-add-btn {
  width: 100%;
  font-size: 1em;
  padding: 14px 20px;
}

/* =======================
   FOOTER / NOTIFICATION
======================= */
footer {
  background: #fff;
  text-align: center;
  padding: 34px 20px;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 14px;
}

footer p {
  margin: 4px 0;
}

.footer-author {
  font-size: 13px;
  color: #999;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4caf50;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

.notification.error {
  background: #e74c3c;
}


/* =======================
   KUNIK PICKER
======================= */
.kunik-picker-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.kunik-picker-card {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff, #fff8f2);
  border: 1px solid #f2eee9;
  border-radius: 28px;
  padding: 26px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  text-align: left;
}

.kunik-picker-mark {
  display: inline-block;
  color: #ff4fa3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kunik-picker-content h2 {
  margin: 0 0 8px;
  font-size: 1.9em;
}

.kunik-picker-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.kunik-picker-actions {
  display: flex;
  justify-content: flex-end;
}

.kunik-picker-btn {
  white-space: nowrap;
  font-weight: 900;
}

.kunik-picker-secondary {
  background: #242424;
}

.kunik-picker-secondary:hover {
  background: #333;
}

.shake-kunik-card {
  position: relative;
  overflow: hidden;
}

.shake-kunik-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -72px;
  top: -82px;
  background: radial-gradient(circle, rgba(255, 126, 27, 0.23), rgba(255, 126, 27, 0));
  pointer-events: none;
}

.shake-kunik-actions {
  flex-wrap: wrap;
  gap: 10px;
  max-width: 330px;
}

.kunik-shake-status {
  width: 100%;
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

#kunik-shake-btn.shake-active {
  animation: shakeButtonPulse 1.1s ease infinite;
}

@keyframes shakeButtonPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.03); }
}

.kunik-choice {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 22px;
  padding: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.kunik-choice.show {
  opacity: 1;
  transform: translateY(0);
}

.kunik-choice-head span {
  color: #ff7e1b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kunik-choice-head strong {
  display: block;
  margin-top: 4px;
  font-size: 1.25em;
  color: #222;
}

.kunik-choice-head p {
  margin: 4px 0 14px;
  color: #777;
}

.kunik-choice-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
}

.kunik-choice-list li,
.kunik-choice-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: #fafafa;
  border-radius: 14px;
  padding: 10px 12px;
  color: #333;
}

.kunik-choice-total {
  background: #fff3ea;
  color: #222;
  font-weight: 900;
  margin-bottom: 14px;
}

.kunik-choice-add {
  width: 100%;
  justify-content: center;
  font-weight: 900;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1100px) {
  .menu,
  #sauces .menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 15px;
    padding: 16px 6%;
  }

  nav {
    justify-content: center;
  }

  .hero h2 {
    font-size: 2.2em;
  }

  section {
    padding: 60px 6%;
  }

  #shawarma {
    padding-top: 100px;
  }

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

  .product-modal-image {
    max-width: 280px;
  }
}

@media (max-width: 700px) {
  .cart-drawer {
    width: 100%;
    right: -100%;
    border-radius: 0;
  }

  .cart-toggle span:first-of-type {
    display: none;
  }

  .option-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .menu,
  #sauces .menu {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 75vh;
  }

  .hero h2 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 1em;
  }

  .item img {
    height: 210px;
  }

  #combo .item img {
    height: 230px;
  }

  .floating-telegram {
    width: 52px;
    height: 52px;
    font-size: 23px;
    right: 15px;
    bottom: 15px;
  }

  .cart-drawer-header {
    padding: 20px 18px;
  }

  .cart-drawer-body {
    padding: 16px;
  }

  .cart-row {
    grid-template-columns: 1fr;
  }

  .cart-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cart-item-name {
    max-width: none;
  }

  .promo-row {
    flex-direction: column;
  }

  .promo-btn {
    width: 100%;
  }


  .about-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 20px;
    border-radius: 24px;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
  }

  .contact-card .contact-buttons {
    flex-direction: column;
  }

  .contact-card .contact-buttons .btn {
    width: 100%;
    justify-content: center;
  }

}

/* =======================
   MOBILE UX POLISH
======================= */
.mobile-category-bar {
  display: none;
}

@media (max-width: 700px) {
  header {
    position: relative;
    top: auto;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 10px 6% 9px;
  }

  .logo {
    font-size: 2.15em;
    line-height: 1;
    text-align: center;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 14px;
    font-size: 15px;
  }

  nav a {
    font-size: 15px;
  }

  .cart-toggle {
    padding: 8px 12px;
    font-size: 14px;
  }

  .cart-badge {
    min-width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .mobile-category-bar {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 980;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 6%;
    background: rgba(249, 249, 249, 0.97);
    border-bottom: 1px solid #eee;
    backdrop-filter: blur(8px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-category-bar::-webkit-scrollbar {
    display: none;
  }

  .mobile-category-bar a {
    flex: 0 0 auto;
    text-decoration: none;
    color: #222;
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  }

  .mobile-category-bar a:first-child {
    background: #ff7e1b;
    color: #fff;
    border-color: #ff7e1b;
  }

  .menu-tabs {
    display: none;
  }

  section {
    padding: 34px 6%;
    scroll-margin-top: 58px;
  }

  #shawarma {
    padding-top: 30px;
  }

  #advantages,
  #about,
  #contact {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  section h2 {
    font-size: 1.6em;
    margin-bottom: 16px;
  }

  .menu,
  #sauces .menu {
    gap: 18px;
  }

  .item {
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  }

  .item:hover {
    transform: none;
  }

  .item img {
    height: 180px;
  }

  #combo .item img {
    height: 185px;
  }

  #sauces .item img {
    height: 140px;
    padding: 12px;
  }

  .item h3 {
    margin: 12px 0 6px;
    font-size: 1.1em;
  }

  .item p {
    font-size: 0.9em;
    line-height: 1.45;
    margin-bottom: 12px;
    padding: 0 14px;
  }

  .card-actions {
    gap: 10px;
    padding: 0 14px 16px;
  }

  .price {
    padding: 6px 16px;
    font-size: 0.95em;
  }

  .add-to-cart,
  .open-ser-modal {
    max-width: none;
    height: 44px;
    padding: 10px 18px;
  }

  .floating-telegram {
    display: none !important;
  }

  .cart-drawer {
    height: 100dvh;
  }

  .cart-drawer-header {
    padding: 16px 18px;
  }

  .cart-drawer-header h2 {
    font-size: 1.35em;
  }

  .cart-drawer-body {
    padding: 14px;
  }

  .cart-row {
    grid-template-columns: 1fr auto;
    padding: 10px;
    border-radius: 17px;
    margin-bottom: 8px;
  }

  .cart-item-thumb {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .cart-item-name {
    max-width: none;
    font-size: 13px;
  }

  .cart-item-price {
    font-size: 11px;
  }

  .cart-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
  }

  .cart-controls {
    padding: 4px 6px;
    gap: 7px;
  }

  .qty-btn {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  .cart-drawer-footer {
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  }

  .promo-block,
  .customer-block,
  .cart-summary-list {
    border-radius: 16px;
  }

  .checkout-btn {
    height: 44px;
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: 1.95em;
  }

  nav {
    gap: 10px;
  }

  nav a {
    font-size: 14px;
  }

  .mobile-category-bar a {
    padding: 8px 12px;
  }

  .item img {
    height: 165px;
  }
}



@media (max-width: 700px) {
  .mobile-mini-cart {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2600;
    min-height: 56px;
    border: none;
    border-radius: 20px;
    background: #222;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: transform 0.28s ease, opacity 0.28s ease;
    font-weight: 800;
  }

  .mobile-mini-cart.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-mini-cart strong {
    color: #ff7e1b;
    font-size: 16px;
  }

  .mobile-mini-cart-action {
    justify-self: end;
    background: #ff7e1b;
    color: #fff;
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .cart-drawer.active ~ .mobile-mini-cart {
    display: none;
  }
}


/* Secret promo interaction */
.logo {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.logo.logo-secret {
  animation: kunikSecretPulse 0.75s ease;
}

@keyframes kunikSecretPulse {
  0% { transform: scale(1); }
  35% { transform: scale(1.08); }
  100% { transform: scale(1); }
}


/* Shake KUNIK mobile polish */
@media (max-width: 700px) {
  .kunik-picker-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .kunik-picker-card {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .kunik-picker-content h2 {
    font-size: 1.55em;
    line-height: 1.12;
  }

  .kunik-picker-actions,
  .shake-kunik-actions {
    justify-content: stretch;
    max-width: none;
    width: 100%;
  }

  .kunik-picker-actions .btn,
  .shake-kunik-actions .btn {
    width: 100%;
  }

  .kunik-shake-status {
    text-align: center;
    font-size: 12px;
  }
}


/* ABOUT / CONTACT CLEANUP v21 */
.about-section h2,
.contact-section h2 {
  margin-bottom: 20px;
}

.about-card {
  padding: 28px 32px;
}

.about-card p {
  margin: 0 auto;
}

.about-mark,
.contact-mark {
  display: none !important;
}

.contact-card-head {
  margin-bottom: 22px;
}

.contact-card-head h3 {
  margin-top: 0;
}

@media (max-width: 700px) {
  .about-card {
    padding: 24px 22px;
  }

  .about-section h2,
  .contact-section h2 {
    margin-bottom: 16px;
  }
}


/* =======================
   MOBILE SER MODAL + UX FIX v22
======================= */
@media (max-width: 700px) {
  body.modal-open {
    overflow: hidden;
  }

  .product-modal-overlay.active {
    background: rgba(0, 0, 0, 0.52);
  }

  .product-modal {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: calc(100dvh - 72px);
    border-radius: 26px 26px 0 0;
    transform: translateY(110%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.24);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .product-modal.active {
    transform: translateY(0);
  }

  .product-modal-close {
    top: 10px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 24px;
    z-index: 3;
  }

  .product-modal-content {
    display: block;
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
  }

  .product-modal-image-wrap {
    margin: 4px auto 12px;
  }

  .product-modal-image {
    display: block;
    width: 100%;
    max-width: 230px;
    height: 170px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 20px;
  }

  .product-modal-info h2 {
    font-size: 1.55em;
    margin-bottom: 8px;
    padding-right: 44px;
  }

  .product-modal-desc {
    font-size: 0.94em;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .product-modal-base-price {
    font-size: 0.98em;
    margin-bottom: 16px;
  }

  .product-modal-info h3 {
    font-size: 1.12em;
    margin-bottom: 10px;
  }

  .option-list {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 12px;
  }

  .option-card {
    min-height: 0;
    border-radius: 16px;
    padding: 13px 14px;
    gap: 4px;
  }

  .option-title {
    font-size: 0.98em;
  }

  .option-price {
    font-size: 0.94em;
  }

  .modal-add-btn {
    position: sticky;
    bottom: 0;
    z-index: 2;
    min-height: 48px;
    margin-top: 10px;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(255, 126, 27, 0.28);
  }

  .product-modal.active ~ .notification,
  .product-modal-overlay.active ~ .notification {
    bottom: 22px;
  }

  .product-modal-overlay.active ~ .mobile-mini-cart,
  .product-modal.active ~ .mobile-mini-cart {
    display: none !important;
  }

  .mobile-mini-cart {
    left: 12px;
    right: 12px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    min-height: 52px;
    border-radius: 18px;
    grid-template-columns: auto auto 1fr;
    padding: 9px 12px;
  }

  .mobile-mini-cart-action {
    padding: 8px 11px;
  }

  .kunik-picker-section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .kunik-picker-card {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .kunik-picker-mark {
    font-size: 0.74em;
  }

  .kunik-picker-content h2 {
    font-size: 1.34em;
    line-height: 1.18;
    margin-bottom: 10px;
  }

  .kunik-picker-content p {
    font-size: 0.93em;
    line-height: 1.5;
  }

  .kunik-picker-actions .btn,
  .shake-kunik-actions .btn {
    min-height: 44px;
    font-size: 0.95em;
  }
}

@media (max-width: 390px) {
  .product-modal {
    max-height: calc(100dvh - 54px);
  }

  .product-modal-image {
    max-width: 190px;
    height: 135px;
  }

  .product-modal-desc {
    font-size: 0.9em;
  }
}


/* =======================
   MOBILE TOP DESIGN POLISH v23
======================= */
@media (max-width: 700px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  header {
    padding: 9px 5% 8px !important;
    gap: 7px !important;
  }

  .logo {
    font-size: 1.95em !important;
    letter-spacing: 5px;
  }

  nav {
    gap: 12px !important;
    font-size: 14px !important;
  }

  nav a {
    font-size: 14px !important;
  }

  .cart-toggle {
    padding: 7px 10px !important;
    font-size: 13px !important;
  }

  .cart-badge {
    min-width: 20px !important;
    height: 20px !important;
    font-size: 11px !important;
  }

  .mobile-category-bar {
    padding: 6px 5% !important;
    gap: 7px !important;
    background: rgba(250, 250, 250, 0.96) !important;
  }

  .mobile-category-bar a,
  .mobile-category-bar a:first-child {
    padding: 7px 12px !important;
    border-radius: 999px !important;
    font-size: 12.5px !important;
    background: #fff !important;
    color: #222 !important;
    border-color: #eeeeee !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.045) !important;
  }

  .mobile-category-bar a.active {
    background: #ff7e1b !important;
    color: #fff !important;
    border-color: #ff7e1b !important;
    box-shadow: 0 8px 18px rgba(255, 126, 27, 0.22) !important;
  }

  .hero {
    min-height: 58dvh !important;
  }

  .hero-content {
    padding: 0 8%;
  }

  .hero h2 {
    font-size: 1.65em !important;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 0.95em !important;
    line-height: 1.35;
    max-width: 320px;
    margin: 0 auto 16px;
  }

  .hero .btn {
    min-height: 40px;
    padding: 10px 22px;
    font-size: 0.92em;
  }

  section {
    padding: 28px 5% !important;
    scroll-margin-top: 50px !important;
  }

  #shawarma {
    padding-top: 24px !important;
  }

  section h2 {
    font-size: 1.42em !important;
    margin-bottom: 14px !important;
  }

  .menu,
  #sauces .menu {
    gap: 14px !important;
  }

  .item {
    border-radius: 20px !important;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.07) !important;
  }

  .item img {
    height: 152px !important;
  }

  #combo .item img {
    height: 165px !important;
    object-fit: contain !important;
    padding: 10px 10px 0;
    background: #fff;
  }

  #sauces .item img,
  #drinks .item img {
    height: 126px !important;
    object-fit: contain !important;
    padding: 12px !important;
  }

  .item h3 {
    margin: 10px 0 5px !important;
    padding: 0 14px;
    font-size: 1.02em !important;
    line-height: 1.18;
  }

  .item p {
    padding: 0 14px !important;
    margin-bottom: 10px !important;
    font-size: 0.82em !important;
    line-height: 1.35 !important;
    color: #626262 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-actions {
    padding: 0 14px 14px !important;
    gap: 8px !important;
  }

  .price {
    padding: 6px 15px !important;
    font-size: 0.92em !important;
    border-radius: 18px !important;
  }

  .add-to-cart,
  .open-ser-modal {
    min-height: 40px !important;
    height: 40px !important;
    padding: 8px 16px !important;
    font-size: 0.92em !important;
    border-radius: 18px !important;
  }

  .product-counter-btn {
    max-width: none !important;
    min-height: 42px !important;
    height: 42px !important;
    padding: 7px 12px !important;
  }

  .card-counter-action {
    width: 28px !important;
    height: 28px !important;
    font-size: 18px !important;
  }

  .card-counter-value {
    font-size: 0.98em !important;
  }

  .mobile-mini-cart {
    left: 10px !important;
    right: 10px !important;
    bottom: calc(9px + env(safe-area-inset-bottom)) !important;
    min-height: 46px !important;
    padding: 7px 10px !important;
    gap: 8px !important;
    border-radius: 17px !important;
    font-size: 12.5px !important;
  }

  .mobile-mini-cart strong {
    font-size: 15px !important;
  }

  .mobile-mini-cart-action {
    padding: 7px 10px !important;
    font-size: 12.5px !important;
  }

  body.modal-open .mobile-mini-cart,
  body.modal-open .floating-telegram {
    display: none !important;
  }

  .kunik-picker-section {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .kunik-picker-card,
  .shake-kunik-card {
    padding: 16px 15px !important;
    border-radius: 22px !important;
    gap: 12px !important;
  }

  .kunik-picker-mark {
    font-size: 0.68em !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px !important;
  }

  .kunik-picker-content h2 {
    font-size: 1.22em !important;
    line-height: 1.16 !important;
    margin-bottom: 8px !important;
  }

  .kunik-picker-content p {
    font-size: 0.86em !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
  }

  .kunik-picker-actions,
  .shake-kunik-actions {
    gap: 8px !important;
  }

  .kunik-picker-actions .btn,
  .shake-kunik-actions .btn {
    min-height: 40px !important;
    height: 40px !important;
    font-size: 0.88em !important;
    border-radius: 18px !important;
  }

  .kunik-shake-status {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    margin-top: 4px !important;
  }

  .kunik-choice {
    padding: 12px !important;
    border-radius: 18px !important;
  }

  .kunik-choice-head strong {
    font-size: 1em !important;
  }

  .kunik-choice-list li,
  .kunik-choice-total {
    font-size: 0.9em !important;
  }

  .about-card,
  .contact-card {
    border-radius: 22px !important;
    padding: 20px 18px !important;
  }
}

@media (max-width: 700px) {
  .product-modal {
    max-height: calc(100dvh - 42px) !important;
    border-radius: 24px 24px 0 0 !important;
  }

  .product-modal-content {
    padding: 14px 15px calc(14px + env(safe-area-inset-bottom)) !important;
  }

  .product-modal-close {
    width: 34px !important;
    height: 34px !important;
    font-size: 22px !important;
  }

  .product-modal-image {
    max-width: 170px !important;
    height: 118px !important;
    border-radius: 17px !important;
  }

  .product-modal-info h2 {
    font-size: 1.3em !important;
    margin-bottom: 6px !important;
  }

  .product-modal-desc {
    font-size: 0.86em !important;
    line-height: 1.35 !important;
    margin-bottom: 7px !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-modal-base-price {
    font-size: 0.9em !important;
    margin-bottom: 10px !important;
  }

  .product-modal-info h3 {
    font-size: 1em !important;
    margin-bottom: 8px !important;
  }

  .option-list {
    gap: 7px !important;
    margin-bottom: 8px !important;
  }

  .option-card {
    padding: 10px 12px !important;
    border-radius: 15px !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
  }

  .option-title {
    font-size: 0.9em !important;
  }

  .option-price {
    font-size: 0.86em !important;
  }

  .modal-add-btn {
    min-height: 44px !important;
    height: 44px !important;
    border-radius: 17px !important;
    margin-top: 8px !important;
  }
}

/* =======================
   MOBILE BALANCE FIX v24
   Возвращаем главный экран на полный первый экран
   и увеличиваем напитки без отката всех улучшений.
======================= */
@media (max-width: 700px) {
  .hero {
    min-height: calc(100dvh - 128px) !important;
    min-height: calc(100vh - 128px) !important;
    background-position: center center !important;
  }

  .hero-content {
    transform: translateY(-8px);
  }

  .hero h2 {
    font-size: 1.95em !important;
  }

  .hero p {
    font-size: 1.03em !important;
    line-height: 1.4 !important;
    max-width: 350px !important;
  }

  .hero .btn {
    min-height: 46px !important;
    padding: 12px 26px !important;
    font-size: 0.98em !important;
  }

  #shawarma {
    padding-top: 38px !important;
  }

  /* Карточки оставляем аккуратными, но не слишком низкими */
  .item img {
    height: 190px !important;
  }

  #combo .item img {
    height: 220px !important;
    padding: 8px 10px 0 !important;
  }

  /* Напитки в прошлой версии стали слишком маленькими */
  #drinks .item img {
    height: 220px !important;
    padding: 4px !important;
    object-fit: contain !important;
    transform: scale(1.48) !important;
    transform-origin: center center !important;
  }

  #sauces .item img {
    height: 150px !important;
    padding: 10px !important;
  }

  .item h3 {
    font-size: 1.08em !important;
  }

  .item p {
    font-size: 0.86em !important;
    line-height: 1.38 !important;
  }

  .add-to-cart,
  .open-ser-modal {
    min-height: 44px !important;
    height: 44px !important;
  }

  .product-counter-btn {
    min-height: 44px !important;
    height: 44px !important;
  }

  .kunik-picker-content h2 {
    font-size: 1.34em !important;
  }

  .kunik-picker-content p {
    font-size: 0.92em !important;
  }
}

@media (max-width: 390px) {
  #drinks .item img {
    height: 205px !important;
    transform: scale(1.42) !important;
  }

  #combo .item img {
    height: 205px !important;
  }
}


/* =======================
   MOBILE PRODUCT IMAGE SIZE FIX v25
   Только 2 правки: крупнее комбо и крупнее напитки.
======================= */
@media (max-width: 700px) {
  #combo .item img {
    height: 285px !important;
    padding: 6px 6px 0 !important;
    object-fit: contain !important;
    transform: scale(1.08) !important;
    transform-origin: center center !important;
  }

  #drinks .item img {
    height: 245px !important;
    padding: 2px !important;
    object-fit: contain !important;
    transform: scale(1.62) !important;
    transform-origin: center center !important;
  }
}

@media (max-width: 390px) {
  #combo .item img {
    height: 265px !important;
    transform: scale(1.08) !important;
  }

  #drinks .item img {
    height: 232px !important;
    transform: scale(1.56) !important;
  }
}


/* =======================
   MOBILE DRINK OVERLAP FIX v26
   Исправляем только напитки: чай крупный, но больше не перекрывает текст.
======================= */
@media (max-width: 700px) {
  #drinks .item img {
    height: 255px !important;
    padding: 6px 4px 0 !important;
    object-fit: contain !important;
    transform: scale(1.38) !important;
    transform-origin: center center !important;
    margin-bottom: 58px !important;
    position: relative !important;
    z-index: 1 !important;
  }

  #drinks .item h3,
  #drinks .item p,
  #drinks .item .price,
  #drinks .item .card-actions {
    position: relative !important;
    z-index: 2 !important;
  }
}

@media (max-width: 390px) {
  #drinks .item img {
    height: 238px !important;
    transform: scale(1.34) !important;
    margin-bottom: 52px !important;
  }
}

/* =======================
   MOBILE DRINK WHITE SPACE FIX v27
   Убираем лишнее белое пространство под напитками,
   не трогая остальные блоки версии v26.
======================= */
@media (max-width: 700px) {
  #drinks .item {
    overflow: hidden !important;
  }

  #drinks .item img {
    height: 250px !important;
    padding: 0 4px !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: scale(1.36) !important;
    transform-origin: center center !important;
    margin-top: -8px !important;
    margin-bottom: -28px !important;
    position: relative !important;
    z-index: 1 !important;
  }

  #drinks .item h3 {
    margin-top: 0 !important;
  }
}

@media (max-width: 390px) {
  #drinks .item img {
    height: 235px !important;
    transform: scale(1.32) !important;
    margin-top: -8px !important;
    margin-bottom: -26px !important;
  }
}


/* =======================
   THEME TOGGLE + PREMIUM DARK THEME v28
======================= */
.theme-toggle {
  border: 1px solid rgba(255, 126, 27, 0.22);
  background: #fff;
  color: #222;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95em;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: #ff7e1b;
  color: #ff7e1b;
  box-shadow: 0 8px 22px rgba(255, 126, 27, 0.16);
}

.theme-toggle i {
  font-size: 0.95em;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --kunik-bg: #08090d;
  --kunik-bg-soft: #10131b;
  --kunik-bg-card: rgba(18, 20, 28, 0.92);
  --kunik-bg-elevated: rgba(23, 26, 36, 0.96);
  --kunik-border: rgba(255, 255, 255, 0.10);
  --kunik-border-strong: rgba(255, 126, 27, 0.30);
  --kunik-text: #f6f3ee;
  --kunik-text-muted: #b6ad9f;
  --kunik-accent: #ff7e1b;
  --kunik-accent-soft: rgba(255, 126, 27, 0.14);
  --kunik-pink: #ff4fa3;
  --kunik-shadow: rgba(0, 0, 0, 0.48);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 79, 163, 0.12), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(255, 126, 27, 0.18), transparent 31%),
    linear-gradient(180deg, #08090d 0%, #0c0d12 42%, #08090d 100%) !important;
  color: var(--kunik-text) !important;
}

html[data-theme="dark"] body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), transparent 78%);
}

html[data-theme="dark"] header {
  background: rgba(8, 9, 13, 0.78) !important;
  border-bottom: 1px solid var(--kunik-border) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22) !important;
}

html[data-theme="dark"] .logo,
html[data-theme="dark"] .receipt-brand {
  color: #fff !important;
  text-shadow: 0 0 18px rgba(255, 79, 163, 0.42), 0 0 26px rgba(255, 126, 27, 0.20) !important;
}

html[data-theme="dark"] nav a {
  color: rgba(246, 243, 238, 0.82) !important;
}

html[data-theme="dark"] nav a:hover {
  color: var(--kunik-accent) !important;
}

html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .cart-toggle,
html[data-theme="dark"] .menu-tab,
html[data-theme="dark"] .mobile-category-bar a {
  background: rgba(255, 255, 255, 0.055) !important;
  color: var(--kunik-text) !important;
  border: 1px solid var(--kunik-border) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 28px rgba(0,0,0,0.24) !important;
  backdrop-filter: blur(12px);
}

html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .cart-toggle:hover,
html[data-theme="dark"] .menu-tab:hover,
html[data-theme="dark"] .mobile-category-bar a:hover {
  border-color: var(--kunik-border-strong) !important;
  color: var(--kunik-accent) !important;
  background: rgba(255, 126, 27, 0.12) !important;
}

html[data-theme="dark"] .theme-toggle[aria-pressed="true"] {
  border-color: var(--kunik-border-strong) !important;
  background: linear-gradient(135deg, rgba(255, 126, 27, 0.18), rgba(255, 79, 163, 0.10)) !important;
  color: #fff !important;
}

html[data-theme="dark"] .cart-badge,
html[data-theme="dark"] .menu-tab.active,
html[data-theme="dark"] .mobile-category-bar a.active {
  background: linear-gradient(135deg, #ff7e1b, #ff4fa3) !important;
  color: #fff !important;
  border-color: transparent !important;
}

html[data-theme="dark"] .hero::after {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,126,27,0.13), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,0.88), rgba(8,9,13,0.52), rgba(0,0,0,0.88)) !important;
}

html[data-theme="dark"] .hero-content {
  background: linear-gradient(135deg, rgba(8, 9, 13, 0.34), rgba(8, 9, 13, 0.10));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  backdrop-filter: blur(4px);
}

html[data-theme="dark"] .hero h2 {
  color: #fff !important;
  letter-spacing: 0.08em;
  text-shadow: 0 0 30px rgba(255, 126, 27, 0.35) !important;
}

html[data-theme="dark"] .hero p {
  color: rgba(255,255,255,0.88) !important;
}

html[data-theme="dark"] section h2,
html[data-theme="dark"] .item h3,
html[data-theme="dark"] .adv-card h3,
html[data-theme="dark"] .about-card h2,
html[data-theme="dark"] .contact-card-head h3,
html[data-theme="dark"] .cart-drawer-header h2,
html[data-theme="dark"] .product-modal-info h2,
html[data-theme="dark"] .product-modal-info h3,
html[data-theme="dark"] .order-success-card h3,
html[data-theme="dark"] .empty-cart-state h3,
html[data-theme="dark"] .kunik-picker-content h2,
html[data-theme="dark"] .kunik-choice-head strong {
  color: var(--kunik-text) !important;
}

html[data-theme="dark"] .item,
html[data-theme="dark"] .adv-card,
html[data-theme="dark"] .about-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .kunik-picker-card,
html[data-theme="dark"] .shake-kunik-card,
html[data-theme="dark"] .cart-row,
html[data-theme="dark"] .promo-block,
html[data-theme="dark"] .customer-block,
html[data-theme="dark"] .order-success-card,
html[data-theme="dark"] .product-modal,
html[data-theme="dark"] .kunik-choice,
html[data-theme="dark"] .option-card,
html[data-theme="dark"] .empty-cart-state {
  background: linear-gradient(180deg, rgba(24, 27, 37, 0.94), rgba(13, 15, 21, 0.96)) !important;
  border: 1px solid var(--kunik-border) !important;
  box-shadow: 0 18px 46px var(--kunik-shadow), inset 0 1px 0 rgba(255,255,255,0.045) !important;
}

html[data-theme="dark"] .item:hover,
html[data-theme="dark"] .adv-card:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.56), 0 0 0 1px rgba(255,126,27,0.18) !important;
}

html[data-theme="dark"] .item img,
html[data-theme="dark"] #combo .item img,
html[data-theme="dark"] #sauces .item img,
html[data-theme="dark"] #drinks .item img,
html[data-theme="dark"] .product-modal-image,
html[data-theme="dark"] .cart-item-thumb {
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(255,255,255,0.02)) !important;
}

html[data-theme="dark"] .item p,
html[data-theme="dark"] .adv-card p,
html[data-theme="dark"] .about-card p,
html[data-theme="dark"] .about-point span,
html[data-theme="dark"] .contact-card-head p,
html[data-theme="dark"] .contact-info-item span:last-child,
html[data-theme="dark"] #contact p,
html[data-theme="dark"] .cart-item-price,
html[data-theme="dark"] .empty-cart,
html[data-theme="dark"] .empty-cart-state p,
html[data-theme="dark"] .product-modal-desc,
html[data-theme="dark"] .product-modal-base-price,
html[data-theme="dark"] .order-success-card p,
html[data-theme="dark"] .receipt-note,
html[data-theme="dark"] .kunik-picker-content p,
html[data-theme="dark"] .kunik-shake-status,
html[data-theme="dark"] .kunik-choice-list li {
  color: var(--kunik-text-muted) !important;
}

html[data-theme="dark"] .about-point,
html[data-theme="dark"] .contact-info-item,
html[data-theme="dark"] .cart-controls,
html[data-theme="dark"] .cart-summary-list,
html[data-theme="dark"] .empty-cart-icon,
html[data-theme="dark"] .product-modal-image-wrap {
  background: rgba(255, 255, 255, 0.045) !important;
  border-color: var(--kunik-border) !important;
}

html[data-theme="dark"] .about-point strong,
html[data-theme="dark"] .contact-info-item strong,
html[data-theme="dark"] .cart-item-name,
html[data-theme="dark"] .cart-line-total,
html[data-theme="dark"] .qty-value,
html[data-theme="dark"] .summary-row strong,
html[data-theme="dark"] .summary-row span,
html[data-theme="dark"] .option-title,
html[data-theme="dark"] .kunik-choice-total {
  color: var(--kunik-text) !important;
}

html[data-theme="dark"] .price,
html[data-theme="dark"] .about-mark,
html[data-theme="dark"] .contact-mark,
html[data-theme="dark"] .kunik-picker-mark,
html[data-theme="dark"] .option-price,
html[data-theme="dark"] .promo-label,
html[data-theme="dark"] .order-number span {
  background: var(--kunik-accent-soft) !important;
  color: #ffb06a !important;
  border-color: rgba(255,126,27,0.22) !important;
}

html[data-theme="dark"] .btn,
html[data-theme="dark"] .checkout-btn,
html[data-theme="dark"] .modal-add-btn,
html[data-theme="dark"] .empty-cart-menu-btn {
  background: linear-gradient(135deg, #ff7e1b, #ff4fa3) !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(255, 126, 27, 0.22) !important;
}

html[data-theme="dark"] .btn:hover,
html[data-theme="dark"] .checkout-btn:hover,
html[data-theme="dark"] .modal-add-btn:hover,
html[data-theme="dark"] .empty-cart-menu-btn:hover {
  filter: brightness(1.06);
  box-shadow: 0 16px 36px rgba(255, 126, 27, 0.32) !important;
}

html[data-theme="dark"] .telegram-btn,
html[data-theme="dark"] .floating-telegram {
  background: linear-gradient(135deg, #229ed9, #0f6dff) !important;
}

html[data-theme="dark"] .map-btn,
html[data-theme="dark"] .clear-btn {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid var(--kunik-border) !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .cart-overlay,
html[data-theme="dark"] .product-modal-overlay {
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: blur(8px) !important;
}

html[data-theme="dark"] .cart-drawer {
  background: #0c0e14 !important;
  border-left: 1px solid var(--kunik-border) !important;
  box-shadow: -24px 0 70px rgba(0,0,0,0.58) !important;
}

html[data-theme="dark"] .cart-drawer-header,
html[data-theme="dark"] .cart-drawer-footer {
  background: rgba(12, 14, 20, 0.94) !important;
  border-color: var(--kunik-border) !important;
  box-shadow: 0 -12px 30px rgba(0,0,0,0.24) !important;
}

html[data-theme="dark"] .cart-close,
html[data-theme="dark"] .product-modal-close,
html[data-theme="dark"] .qty-btn {
  background: rgba(255,255,255,0.08) !important;
  color: var(--kunik-text) !important;
  border: 1px solid var(--kunik-border) !important;
}

html[data-theme="dark"] .cart-close:hover,
html[data-theme="dark"] .product-modal-close:hover,
html[data-theme="dark"] .qty-btn:hover {
  background: var(--kunik-accent) !important;
  color: #fff !important;
}

html[data-theme="dark"] .promo-input,
html[data-theme="dark"] .customer-input {
  background: rgba(255,255,255,0.055) !important;
  color: var(--kunik-text) !important;
  border: 1px solid var(--kunik-border) !important;
}

html[data-theme="dark"] .promo-input::placeholder,
html[data-theme="dark"] .customer-input::placeholder {
  color: rgba(246, 243, 238, 0.46) !important;
}

html[data-theme="dark"] .promo-input:focus,
html[data-theme="dark"] .customer-input:focus {
  border-color: var(--kunik-accent) !important;
  box-shadow: 0 0 0 3px rgba(255,126,27,0.16) !important;
}

html[data-theme="dark"] .promo-message:not(.error) {
  color: #77e6a6 !important;
}

html[data-theme="dark"] .promo-message.error {
  color: #ff7777 !important;
}

html[data-theme="dark"] .summary-row.total-row {
  border-top-color: var(--kunik-border) !important;
}

html[data-theme="dark"] .option-card.active {
  background: linear-gradient(135deg, rgba(255,126,27,0.20), rgba(255,79,163,0.14)) !important;
  border-color: var(--kunik-border-strong) !important;
}

html[data-theme="dark"] .product-counter-btn {
  background: rgba(255,126,27,0.14) !important;
  border: 1px solid rgba(255,126,27,0.28) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

html[data-theme="dark"] .card-counter-action {
  background: rgba(255,255,255,0.10) !important;
  color: #fff !important;
}

html[data-theme="dark"] .mobile-category-bar {
  background: rgba(8, 9, 13, 0.72) !important;
  border-bottom-color: var(--kunik-border) !important;
  backdrop-filter: blur(14px) !important;
}

html[data-theme="dark"] .mobile-mini-cart {
  background: rgba(17, 19, 27, 0.92) !important;
  color: #fff !important;
  border: 1px solid var(--kunik-border-strong) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,0.44), 0 0 30px rgba(255,126,27,0.10) !important;
  backdrop-filter: blur(16px) !important;
}

html[data-theme="dark"] .mobile-mini-cart-action {
  background: linear-gradient(135deg, #ff7e1b, #ff4fa3) !important;
  color: #fff !important;
}

html[data-theme="dark"] footer {
  background: #06070a !important;
  color: rgba(246,243,238,0.74) !important;
  border-top: 1px solid var(--kunik-border) !important;
}

html[data-theme="dark"] .notification {
  background: rgba(15, 18, 24, 0.96) !important;
  color: #fff !important;
  border: 1px solid rgba(255,126,27,0.28) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,0.38) !important;
}

html[data-theme="dark"] .notification.error {
  background: rgba(60, 15, 18, 0.96) !important;
  border-color: rgba(255,90,90,0.32) !important;
}

@media (max-width: 700px) {
  .theme-toggle {
    padding: 10px 12px !important;
    min-height: 42px !important;
  }

  .theme-toggle span {
    display: none !important;
  }

  html[data-theme="dark"] .hero-content {
    border-radius: 24px !important;
  }
}


/* =======================
   PREMIUM DARK REWORK v29
   Чище фон, ровнее карточки, меньше лишнего свечения.
======================= */
html[data-theme="dark"] {
  --kunik-bg: #08090d;
  --kunik-bg-2: #0b0d12;
  --kunik-panel: #11141c;
  --kunik-panel-2: #151923;
  --kunik-line: rgba(255, 255, 255, 0.085);
  --kunik-line-soft: rgba(255, 255, 255, 0.055);
  --kunik-text: #f7f3ee;
  --kunik-muted: #b9b0a4;
  --kunik-accent: #ff8a2a;
  --kunik-pink: #ff4f93;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 18% -8%, rgba(255, 138, 42, 0.16), transparent 31%),
    radial-gradient(circle at 92% 3%, rgba(255, 79, 147, 0.10), transparent 28%),
    linear-gradient(180deg, #08090d 0%, #0b0d12 44%, #08090d 100%) !important;
  color: var(--kunik-text) !important;
}

html[data-theme="dark"] body::before {
  display: none !important;
}

html[data-theme="dark"] header {
  padding: 14px 10% !important;
  background: rgba(7, 8, 12, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36) !important;
  backdrop-filter: blur(16px) !important;
}

html[data-theme="dark"] .logo {
  font-size: 2.55em !important;
  letter-spacing: 8px !important;
  color: #fff !important;
  text-shadow: 0 0 16px rgba(255, 79, 147, 0.34) !important;
}

html[data-theme="dark"] nav {
  gap: 14px !important;
}

html[data-theme="dark"] nav a {
  color: rgba(247, 243, 238, 0.84) !important;
}

html[data-theme="dark"] nav a:hover {
  color: var(--kunik-accent) !important;
}

html[data-theme="dark"] .cart-toggle,
html[data-theme="dark"] .theme-toggle {
  min-height: 42px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(255, 255, 255, 0.095) !important;
  color: #fff !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .cart-toggle:hover,
html[data-theme="dark"] .theme-toggle:hover {
  transform: translateY(-1px) !important;
  background: rgba(255, 138, 42, 0.11) !important;
  border-color: rgba(255, 138, 42, 0.34) !important;
}

html[data-theme="dark"] .theme-toggle[aria-pressed="true"] {
  background: rgba(255, 138, 42, 0.12) !important;
  border-color: rgba(255, 138, 42, 0.38) !important;
}

html[data-theme="dark"] .cart-badge,
html[data-theme="dark"] .menu-tab.active,
html[data-theme="dark"] .mobile-category-bar a.active {
  background: linear-gradient(135deg, #ff8a2a, #ff4f93) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 10px 22px rgba(255, 96, 52, 0.20) !important;
}

html[data-theme="dark"] body > section:not(.hero) {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 7% !important;
  padding-right: 7% !important;
}

html[data-theme="dark"] #shawarma {
  padding-top: 88px !important;
  scroll-margin-top: 96px !important;
}

html[data-theme="dark"] section h2 {
  color: #fff !important;
  letter-spacing: 0.02em;
}

html[data-theme="dark"] .menu-tabs {
  margin: 8px 0 34px !important;
  gap: 10px !important;
}

html[data-theme="dark"] .menu-tab {
  background: rgba(255, 255, 255, 0.045) !important;
  color: rgba(247, 243, 238, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .menu-tab:hover {
  background: rgba(255, 138, 42, 0.10) !important;
  color: #fff !important;
  border-color: rgba(255, 138, 42, 0.30) !important;
}

html[data-theme="dark"] .menu {
  gap: 26px !important;
}

html[data-theme="dark"] .item {
  padding: 12px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(23, 27, 37, 0.98), rgba(12, 14, 20, 0.98)) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32) !important;
  overflow: hidden !important;
}

html[data-theme="dark"] .item:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 138, 42, 0.24) !important;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42) !important;
}

html[data-theme="dark"] .item img {
  height: 240px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)) !important;
}

html[data-theme="dark"] #shawarma .item img {
  object-fit: cover !important;
}

html[data-theme="dark"] #combo .item img {
  height: 240px !important;
  object-fit: contain !important;
  padding: 8px !important;
  background: #f6f1eb !important;
}

html[data-theme="dark"] #snacks .item img,
html[data-theme="dark"] #sauces .item img,
html[data-theme="dark"] #drinks .item img {
  object-fit: contain !important;
  padding: 16px !important;
  background: #f7f3ee !important;
}

html[data-theme="dark"] #snacks .item img {
  height: 220px !important;
}

html[data-theme="dark"] #sauces .item img {
  height: 180px !important;
}

html[data-theme="dark"] #drinks .item img {
  height: 230px !important;
}

html[data-theme="dark"] .item h3 {
  margin-top: 18px !important;
  margin-bottom: 8px !important;
  color: #fff !important;
}

html[data-theme="dark"] .item p {
  color: rgba(247, 243, 238, 0.68) !important;
  line-height: 1.58 !important;
}

html[data-theme="dark"] .card-actions {
  padding-bottom: 8px !important;
}

html[data-theme="dark"] .price {
  background: rgba(255, 138, 42, 0.12) !important;
  color: #ffb06d !important;
  border: 1px solid rgba(255, 138, 42, 0.18) !important;
}

html[data-theme="dark"] .btn,
html[data-theme="dark"] .checkout-btn,
html[data-theme="dark"] .modal-add-btn,
html[data-theme="dark"] .empty-cart-menu-btn {
  background: linear-gradient(135deg, #ff8a2a, #ff4f93) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 12px 28px rgba(255, 91, 63, 0.22) !important;
}

html[data-theme="dark"] .btn:hover,
html[data-theme="dark"] .checkout-btn:hover,
html[data-theme="dark"] .modal-add-btn:hover,
html[data-theme="dark"] .empty-cart-menu-btn:hover {
  transform: translateY(-1px) !important;
  filter: brightness(1.06) !important;
  box-shadow: 0 16px 34px rgba(255, 91, 63, 0.30) !important;
}

html[data-theme="dark"] .product-counter-btn {
  background: rgba(255, 138, 42, 0.13) !important;
  border: 1px solid rgba(255, 138, 42, 0.26) !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .card-counter-action {
  background: rgba(255, 255, 255, 0.11) !important;
  color: #fff !important;
}

html[data-theme="dark"] .about-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .adv-card,
html[data-theme="dark"] .kunik-picker-card,
html[data-theme="dark"] .shake-kunik-card,
html[data-theme="dark"] .kunik-choice,
html[data-theme="dark"] .cart-row,
html[data-theme="dark"] .promo-block,
html[data-theme="dark"] .customer-block,
html[data-theme="dark"] .order-success-card,
html[data-theme="dark"] .product-modal,
html[data-theme="dark"] .option-card,
html[data-theme="dark"] .empty-cart-state {
  background: linear-gradient(180deg, rgba(22, 26, 35, 0.98), rgba(12, 14, 20, 0.98)) !important;
  border: 1px solid rgba(255, 255, 255, 0.085) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.30) !important;
}

html[data-theme="dark"] .about-point,
html[data-theme="dark"] .contact-info-item,
html[data-theme="dark"] .cart-summary-list,
html[data-theme="dark"] .cart-controls,
html[data-theme="dark"] .empty-cart-icon,
html[data-theme="dark"] .kunik-choice-list li,
html[data-theme="dark"] .kunik-choice-total {
  background: rgba(255, 255, 255, 0.045) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

html[data-theme="dark"] .cart-drawer {
  background: #0b0d12 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .cart-drawer-header,
html[data-theme="dark"] .cart-drawer-footer {
  background: rgba(11, 13, 18, 0.98) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .promo-input,
html[data-theme="dark"] .customer-input {
  background: rgba(255, 255, 255, 0.055) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
}

html[data-theme="dark"] .clear-btn,
html[data-theme="dark"] .map-btn {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
}

html[data-theme="dark"] .hero-content {
  background: rgba(8, 9, 13, 0.28) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26) !important;
}

html[data-theme="dark"] .hero::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(8, 9, 13, 0.38), rgba(0, 0, 0, 0.70)) !important;
}

html[data-theme="dark"] footer {
  background: #07080c !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 1100px) {
  html[data-theme="dark"] body > section:not(.hero) {
    padding-left: 6% !important;
    padding-right: 6% !important;
  }
}

@media (max-width: 700px) {
  html[data-theme="dark"] body > section:not(.hero) {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }

  html[data-theme="dark"] header {
    background: #08090d !important;
    padding: 10px 5% 9px !important;
  }

  html[data-theme="dark"] .logo {
    font-size: 2em !important;
    letter-spacing: 6px !important;
  }

  html[data-theme="dark"] .mobile-category-bar {
    background: rgba(8, 9, 13, 0.96) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  html[data-theme="dark"] .mobile-category-bar a,
  html[data-theme="dark"] .mobile-category-bar a:first-child {
    background: rgba(255, 255, 255, 0.055) !important;
    color: rgba(247, 243, 238, 0.82) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }

  html[data-theme="dark"] #shawarma {
    padding-top: 34px !important;
  }

  html[data-theme="dark"] .item {
    padding: 10px !important;
    border-radius: 24px !important;
  }

  html[data-theme="dark"] .item:hover {
    transform: none !important;
  }

  html[data-theme="dark"] .item img {
    height: 190px !important;
    border-radius: 18px !important;
  }

  html[data-theme="dark"] #combo .item img {
    height: 230px !important;
    padding: 8px !important;
    transform: none !important;
  }

  html[data-theme="dark"] #snacks .item img,
  html[data-theme="dark"] #sauces .item img {
    height: 165px !important;
    padding: 14px !important;
  }

  html[data-theme="dark"] #drinks .item img {
    height: 230px !important;
    padding: 8px !important;
    margin: 0 !important;
    transform: none !important;
  }

  html[data-theme="dark"] .item h3 {
    margin-top: 13px !important;
  }

  html[data-theme="dark"] .item p {
    color: rgba(247, 243, 238, 0.66) !important;
  }

  html[data-theme="dark"] .theme-toggle {
    min-width: 42px !important;
  }
}


/* =======================
   DARK THEME FINAL CLEANUP v30
   Исправлены карточки и товарные фото: без белых плашек, крупнее продукты.
======================= */
html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 18% -10%, rgba(255, 138, 42, 0.13), transparent 32%),
    radial-gradient(circle at 88% -6%, rgba(255, 79, 147, 0.09), transparent 30%),
    linear-gradient(180deg, #07080c 0%, #0a0c11 42%, #07080c 100%) !important;
}

html[data-theme="dark"] header {
  min-height: 82px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

html[data-theme="dark"] body > section:not(.hero) {
  max-width: 1360px !important;
  padding-left: 6% !important;
  padding-right: 6% !important;
}

html[data-theme="dark"] .menu {
  gap: 24px !important;
}

html[data-theme="dark"] .item {
  padding: 10px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(19, 22, 31, 0.98), rgba(10, 12, 18, 0.99)) !important;
  border: 1px solid rgba(255, 255, 255, 0.085) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34) !important;
}

html[data-theme="dark"] .item:hover {
  border-color: rgba(255, 138, 42, 0.26) !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.44) !important;
}

html[data-theme="dark"] .item img {
  width: 100% !important;
  height: 230px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 138, 42, 0.18), transparent 34%),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.075), transparent 42%),
    linear-gradient(180deg, #171a22 0%, #10131a 100%) !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 18px !important;
}

html[data-theme="dark"] #shawarma .item img {
  height: 246px !important;
  padding: 0 !important;
  object-fit: cover !important;
  background: transparent !important;
}

html[data-theme="dark"] #combo .item img {
  height: 238px !important;
  padding: 18px !important;
  object-fit: contain !important;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 138, 42, 0.18), transparent 36%),
    linear-gradient(180deg, #171a22 0%, #10131a 100%) !important;
}

html[data-theme="dark"] #snacks .item img {
  height: 214px !important;
  padding: 16px !important;
  object-fit: contain !important;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 138, 42, 0.20), transparent 36%),
    linear-gradient(180deg, #171a22 0%, #10131a 100%) !important;
}

html[data-theme="dark"] #sauces .item img {
  height: 190px !important;
  padding: 12px !important;
  object-fit: contain !important;
  background: #11141c !important;
}

html[data-theme="dark"] #drinks .item img {
  height: 238px !important;
  padding: 14px !important;
  margin: 0 !important;
  transform: none !important;
  object-fit: contain !important;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 79, 147, 0.12), transparent 34%),
    radial-gradient(circle at 50% 58%, rgba(255, 138, 42, 0.14), transparent 42%),
    linear-gradient(180deg, #171a22 0%, #10131a 100%) !important;
}

html[data-theme="dark"] .item h3 {
  margin-top: 15px !important;
  margin-bottom: 7px !important;
  font-weight: 900 !important;
}

html[data-theme="dark"] .item p {
  margin-bottom: 14px !important;
  color: rgba(247, 243, 238, 0.70) !important;
}

html[data-theme="dark"] .card-actions {
  padding: 0 12px 10px !important;
}

html[data-theme="dark"] .price {
  background: rgba(255, 138, 42, 0.14) !important;
  border: 1px solid rgba(255, 138, 42, 0.24) !important;
  color: #ffb26f !important;
}

html[data-theme="dark"] .add-to-cart,
html[data-theme="dark"] .open-ser-modal {
  max-width: 210px !important;
}

html[data-theme="dark"] .product-counter-btn {
  max-width: 210px !important;
  background: rgba(255, 138, 42, 0.14) !important;
  border: 1px solid rgba(255, 138, 42, 0.30) !important;
}

@media (max-width: 1100px) {
  html[data-theme="dark"] body > section:not(.hero) {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
}

@media (max-width: 700px) {
  html[data-theme="dark"] header {
    min-height: auto !important;
    padding: 9px 5% 8px !important;
  }

  html[data-theme="dark"] .menu {
    gap: 16px !important;
  }

  html[data-theme="dark"] .item {
    padding: 9px !important;
    border-radius: 22px !important;
  }

  html[data-theme="dark"] .item img {
    height: 190px !important;
    padding: 14px !important;
    border-radius: 17px !important;
  }

  html[data-theme="dark"] #shawarma .item img {
    height: 190px !important;
    padding: 0 !important;
    object-fit: cover !important;
  }

  html[data-theme="dark"] #combo .item img {
    height: 225px !important;
    padding: 12px !important;
    margin: 0 !important;
    transform: none !important;
  }

  html[data-theme="dark"] #snacks .item img,
  html[data-theme="dark"] #sauces .item img {
    height: 170px !important;
    padding: 12px !important;
    margin: 0 !important;
    transform: none !important;
  }

  html[data-theme="dark"] #drinks .item img {
    height: 225px !important;
    padding: 10px !important;
    margin: 0 !important;
    transform: none !important;
  }

  html[data-theme="dark"] .item h3 {
    margin-top: 11px !important;
  }

  html[data-theme="dark"] .add-to-cart,
  html[data-theme="dark"] .open-ser-modal,
  html[data-theme="dark"] .product-counter-btn {
    max-width: none !important;
  }
}


/* === V4 targeted card polish for dark theme === */
html[data-theme="dark"] #snacks .item,
html[data-theme="dark"] #sauces .item,
html[data-theme="dark"] #drinks .item {
  background: linear-gradient(180deg, rgba(11,16,28,0.98) 0%, rgba(7,10,18,0.98) 100%) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.03) !important;
}
html[data-theme="dark"] #snacks .item img,
html[data-theme="dark"] #sauces .item img {
  width: calc(100% - 24px) !important;
  margin: 12px auto 0 !important;
  display: block !important;
  height: 210px !important;
  object-fit: cover !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.04) !important;
  box-shadow: none !important;
}
html[data-theme="dark"] #sauces .item img { height: 190px !important; }
html[data-theme="dark"] #drinks .item img {
  width: calc(100% - 24px) !important;
  margin: 12px auto 0 !important;
  display: block !important;
  height: 220px !important;
  object-fit: contain !important;
  padding: 12px 18px 0 !important;
  background: radial-gradient(circle at 50% 30%, rgba(255,160,90,0.16), rgba(17,22,34,0.85) 60%, rgba(8,10,18,1) 100%) !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.04) !important;
}
html[data-theme="dark"] #snacks .item h3,
html[data-theme="dark"] #sauces .item h3,
html[data-theme="dark"] #drinks .item h3 { margin-top: 18px !important; }
html[data-theme="dark"] #snacks .item p,
html[data-theme="dark"] #sauces .item p,
html[data-theme="dark"] #drinks .item p { min-height: 52px; }
@media (max-width: 768px) {
  html[data-theme="dark"] #snacks .item img,
  html[data-theme="dark"] #sauces .item img,
  html[data-theme="dark"] #drinks .item img {
    width: calc(100% - 18px) !important;
    height: 190px !important;
    margin-top: 9px !important;
  }
  html[data-theme="dark"] #sauces .item img { height: 180px !important; }
}


/* === V6 real cutout cleanup for dark theme === */
html[data-theme="dark"] #snacks .item img,
html[data-theme="dark"] #sauces .item img {
  width: calc(100% - 32px) !important;
  height: 210px !important;
  margin: 12px auto 0 !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 16px 18px 8px !important;
  background: radial-gradient(circle at 50% 28%, rgba(255,255,255,0.05), rgba(12,18,30,0.92) 58%, rgba(7,10,18,1) 100%) !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03) !important;
}
html[data-theme="dark"] #snacks .item img { filter: drop-shadow(0 10px 14px rgba(0,0,0,0.28)); }
html[data-theme="dark"] #sauces .item img { filter: drop-shadow(0 10px 14px rgba(0,0,0,0.24)); }
html[data-theme="dark"] #snacks .item, html[data-theme="dark"] #sauces .item {
  background: linear-gradient(180deg, rgba(11,16,28,0.98) 0%, rgba(7,10,18,0.98) 100%) !important;
}
@media (max-width: 768px) {
  html[data-theme="dark"] #snacks .item img,
  html[data-theme="dark"] #sauces .item img {
    width: calc(100% - 20px) !important;
    height: 190px !important;
    padding: 14px 14px 6px !important;
  }
}


/* === V7 final image strategy: premium light product stage inside dark cards ===
   Причина: у части исходных фото белая тарелка/тень уже зашита в картинку.
   На полностью тёмной подложке это всегда будет выглядеть как плохая вырезка.
   Поэтому для таких товаров используется аккуратная светлая product-stage зона.
*/
html[data-theme="dark"] #snacks .item,
html[data-theme="dark"] #sauces .item,
html[data-theme="dark"] #drinks .item {
  background:
    linear-gradient(180deg, rgba(12, 17, 29, 0.98) 0%, rgba(7, 10, 18, 0.99) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.085) !important;
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

html[data-theme="dark"] #snacks .item img,
html[data-theme="dark"] #sauces .item img,
html[data-theme="dark"] #drinks .item img {
  width: calc(100% - 28px) !important;
  height: 224px !important;
  margin: 14px auto 0 !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 18px 22px !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.95) 0%, rgba(250, 245, 238, 0.98) 44%, rgba(232, 222, 209, 0.98) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -18px 40px rgba(120, 80, 45, 0.08) !important;
  filter: none !important;
}

html[data-theme="dark"] #sauces .item img {
  height: 206px !important;
  padding: 24px 34px !important;
}

html[data-theme="dark"] #drinks .item img {
  height: 236px !important;
  padding: 12px 30px !important;
}

html[data-theme="dark"] #snacks .item h3,
html[data-theme="dark"] #sauces .item h3,
html[data-theme="dark"] #drinks .item h3 {
  margin-top: 18px !important;
}

html[data-theme="dark"] #snacks .item p,
html[data-theme="dark"] #sauces .item p,
html[data-theme="dark"] #drinks .item p {
  color: rgba(245, 247, 255, 0.76) !important;
}

/* Миниатюры в корзине: та же логика, чтобы не было грязного контура на тёмном фоне */
html[data-theme="dark"] .cart-item-thumb {
  background:
    radial-gradient(circle at 50% 35%, #fff 0%, #f4eee5 58%, #ded2c3 100%) !important;
  padding: 6px !important;
  object-fit: contain !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  filter: none !important;
}

@media (max-width: 768px) {
  html[data-theme="dark"] #snacks .item img,
  html[data-theme="dark"] #sauces .item img,
  html[data-theme="dark"] #drinks .item img {
    width: calc(100% - 18px) !important;
    height: 196px !important;
    margin-top: 9px !important;
    padding: 14px 18px !important;
    border-radius: 18px !important;
  }

  html[data-theme="dark"] #sauces .item img {
    height: 184px !important;
    padding: 18px 24px !important;
  }

  html[data-theme="dark"] #drinks .item img {
    height: 210px !important;
    padding: 10px 22px !important;
  }
}



/* === V8: apply the same premium image treatment to combo and shawarma === */
html[data-theme="dark"] #shawarma .item,
html[data-theme="dark"] #combo .item {
  background:
    linear-gradient(180deg, rgba(12, 17, 29, 0.98) 0%, rgba(7, 10, 18, 0.99) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.085) !important;
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

html[data-theme="dark"] #shawarma .item img,
html[data-theme="dark"] #combo .item img {
  width: calc(100% - 28px) !important;
  margin: 14px auto 0 !important;
  display: block !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -18px 40px rgba(120, 80, 45, 0.08) !important;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.95) 0%, rgba(250, 245, 238, 0.98) 44%, rgba(232, 222, 209, 0.98) 100%) !important;
}

/* Комбо уже имеют прозрачный фон — для них stage работает как надо */
html[data-theme="dark"] #combo .item img {
  height: 224px !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 16px 20px !important;
}

/* У шаурмы исходные изображения цветные, поэтому оставляем полный кадр,
   но помещаем его в ту же премиальную зону для визуального единства */
html[data-theme="dark"] #shawarma .item img {
  height: 246px !important;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
}

/* И миниатюры в корзине тоже приводим к общему виду */
html[data-theme="dark"] .cart-item-thumb {
  background:
    radial-gradient(circle at 50% 35%, #fff 0%, #f4eee5 58%, #ded2c3 100%) !important;
  padding: 6px !important;
  object-fit: contain !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  filter: none !important;
}

@media (max-width: 768px) {
  html[data-theme="dark"] #shawarma .item img,
  html[data-theme="dark"] #combo .item img {
    width: calc(100% - 18px) !important;
    margin-top: 9px !important;
    border-radius: 18px !important;
  }

  html[data-theme="dark"] #shawarma .item img {
    height: 220px !important;
  }

  html[data-theme="dark"] #combo .item img {
    height: 200px !important;
    padding: 12px 16px !important;
  }
}



/* === V9 fixes: restore light theme and revert shawarma latest dark styling === */
/* 1) Light theme reset so premium dark-only tweaks do not visually break the light theme */
html[data-theme="light"] .item {
  background: #fff !important;
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

html[data-theme="light"] .item img {
  width: 100% !important;
  height: 260px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  filter: none !important;
}

html[data-theme="light"] #combo .item img {
  height: 260px !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #fff !important;
}

html[data-theme="light"] #sauces .item img {
  height: 180px !important;
  object-fit: contain !important;
  padding: 14px !important;
  background: #fafafa !important;
}

html[data-theme="light"] #drinks .item img {
  height: 220px !important;
  object-fit: contain !important;
  padding: 10px 14px !important;
  background: #fff !important;
}

html[data-theme="light"] .cart-item-thumb {
  background: #fff !important;
  padding: 0 !important;
  border: none !important;
  filter: none !important;
}

/* 2) Remove the latest shawarma image treatment in dark theme and keep shawarma in the previous look */
html[data-theme="dark"] #shawarma .item img {
  width: 100% !important;
  height: 240px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

html[data-theme="dark"] #shawarma .item {
  background: linear-gradient(180deg, rgba(12, 17, 29, 0.98) 0%, rgba(7, 10, 18, 0.99) 100%) !important;
}

@media (max-width: 768px) {
  html[data-theme="light"] .item img {
    height: 210px !important;
  }

  html[data-theme="light"] #combo .item img {
    height: 230px !important;
  }

  html[data-theme="light"] #sauces .item img,
  html[data-theme="light"] #drinks .item img {
    height: 160px !important;
    object-fit: contain !important;
    padding: 12px !important;
  }

  html[data-theme="dark"] #shawarma .item img {
    height: 220px !important;
  }
}


/* === V11: restore original light-theme look for combo and snacks === */
html[data-theme="light"] #combo .item img {
  width: 100% !important;
  height: 260px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 10px 10px 0 !important;
  margin: 0 !important;
  background: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] #snacks .item img {
  width: 100% !important;
  height: 220px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 14px !important;
  margin: 0 !important;
  background: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] #snacks .item,
html[data-theme="light"] #combo .item {
  overflow: hidden !important;
}

@media (max-width: 600px) {
  html[data-theme="light"] #combo .item img {
    height: 230px !important;
    padding: 8px 8px 0 !important;
  }

  html[data-theme="light"] #snacks .item img {
    height: 190px !important;
    padding: 12px !important;
  }
}


/* === V12: rounded shawarma image corners in dark theme (like preferred screenshot) === */
html[data-theme="dark"] #shawarma .item img {
  width: calc(100% - 20px) !important;
  margin: 10px auto 0 !important;
  height: 232px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: none !important;
  background: transparent !important;
}

@media (max-width: 768px) {
  html[data-theme="dark"] #shawarma .item img {
    width: calc(100% - 18px) !important;
    margin-top: 9px !important;
    height: 210px !important;
    border-radius: 16px !important;
  }
}


/* === V14: remove extra yellow/brown bars in Ser modal and promo block === */
html[data-theme="dark"] .option-card .option-price,
html[data-theme="dark"] .option-card-price,
html[data-theme="dark"] .option-price,
html[data-theme="dark"] .addon-price,
html[data-theme="dark"] .ser-option-price {
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  color: #ffb36b !important;
}

html[data-theme="dark"] .option-card span,
html[data-theme="dark"] .option-card strong,
html[data-theme="dark"] .option-card label {
  background-image: none !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .promo-title,
html[data-theme="dark"] .promo-label,
html[data-theme="dark"] .promo-row label,
html[data-theme="dark"] .promo-block label,
html[data-theme="dark"] .cart-promo label {
  display: inline !important;
  width: auto !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  color: #ffb36b !important;
}

/* На случай, если коричневая полоска задана не label, а внутренним контейнером */
html[data-theme="dark"] .promo-row,
html[data-theme="dark"] .promo-block,
html[data-theme="dark"] .cart-promo,
html[data-theme="dark"] .promo-section {
  background-image: none !important;
}

html[data-theme="dark"] #promo-message {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}



/* === V16: keep cart as before, but make shawarma thumbnails bigger like in the reference === */
html[data-theme="dark"] .cart-item-thumb.shawarma-cart-thumb,
html[data-theme="light"] .cart-item-thumb.shawarma-cart-thumb {
  width: 66px !important;
  height: 66px !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #fff !important;
  border: none !important;
  box-shadow: none !important;
}



/* === V17: fix mobile dark hero button alignment === */
@media (max-width: 700px) {
  html[data-theme="dark"] .hero-content {
    width: min(88vw, 460px) !important;
    margin: 0 auto !important;
    padding: 26px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  html[data-theme="dark"] .hero h2,
  html[data-theme="dark"] .hero p {
    width: 100% !important;
    text-align: center !important;
  }

  html[data-theme="dark"] .hero .btn {
    display: block !important;
    margin: 4px auto 0 !important;
    text-align: center !important;
    min-width: 210px !important;
  }
}


/* ===== KUNIK: способы оплаты ===== */
.payment-methods {
  border: 0;
  padding: 4px 0 0;
  margin: 2px 0 4px;
  min-width: 0;
}

.payment-methods .promo-label {
  display: inline-block;
  margin-bottom: 8px;
}

.payment-option {
  display: grid;
  grid-template-columns: 22px 38px 1fr;
  gap: 9px;
  align-items: center;
  width: 100%;
  padding: 11px 12px;
  margin-bottom: 8px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.payment-option:hover {
  transform: translateY(-1px);
  border-color: #ffb16f;
}

.payment-option.active {
  border-color: #ff7e1b;
  background: #fff3e8;
  box-shadow: 0 8px 20px rgba(255, 126, 27, 0.10);
}

.payment-option input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: #ff7e1b;
}

.payment-option-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff7e1b;
  background: rgba(255, 126, 27, 0.12);
}

.payment-option-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.payment-option-copy strong {
  color: #222;
  font-size: 13px;
  line-height: 1.25;
}

.payment-option-copy small {
  color: #777;
  font-size: 11px;
  line-height: 1.35;
}

.payment-method-note {
  margin: 4px 2px 2px;
  color: #777;
  font-size: 11px;
  line-height: 1.45;
}

html[data-theme="dark"] .payment-option {
  background: rgba(255,255,255,0.045);
  border-color: var(--kunik-border);
}

html[data-theme="dark"] .payment-option.active {
  background: rgba(255,126,27,0.12);
  border-color: rgba(255,126,27,0.75);
}

html[data-theme="dark"] .payment-option-copy strong {
  color: var(--kunik-text);
}

html[data-theme="dark"] .payment-option-copy small,
html[data-theme="dark"] .payment-method-note {
  color: var(--kunik-muted);
}

.payment-option.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.payment-option.online-only-payment {
  grid-template-columns: 42px 1fr;
  cursor: default;
}

.payment-option.online-only-payment:hover {
  transform: none;
  border-color: #ff7e1b;
}

.payment-option.online-only-payment.disabled {
  opacity: 0.55;
  border-color: #e7e7e7;
  background: #f7f7f7;
}

html[data-theme="dark"] .payment-option.online-only-payment.disabled {
  background: rgba(255,255,255,0.025);
  border-color: var(--kunik-border);
}


/* ===== KUNIK: юридические ссылки и согласие ===== */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 0 auto 16px;
}

.footer-legal-links a {
  color: #555;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-legal-links a:hover {
  color: #ff7e1b;
}

.footer-requisites {
  font-size: 12px;
  line-height: 1.5;
  color: #888;
}

.legal-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  margin: 10px 2px 4px;
  padding: 11px 12px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fafafa;
  color: #666;
  font-size: 11px;
  line-height: 1.45;
  cursor: pointer;
}

.legal-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #ff7e1b;
}

.legal-consent a {
  color: #e76300;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-consent:focus-within {
  border-color: #ff9a4d;
  box-shadow: 0 0 0 3px rgba(255, 126, 27, 0.12);
}

html[data-theme="dark"] .footer-legal-links a {
  color: rgba(246,243,238,0.78);
}

html[data-theme="dark"] .footer-legal-links a:hover,
html[data-theme="dark"] .legal-consent a {
  color: #ffad67;
}

html[data-theme="dark"] .footer-requisites {
  color: rgba(246,243,238,0.52);
}

html[data-theme="dark"] .legal-consent {
  background: rgba(255,255,255,0.035);
  border-color: var(--kunik-border);
  color: var(--kunik-muted);
}


/* ===== KUNIK V18: compact mobile cart + two-step checkout ===== */
.cart-header-copy,
.cart-header-actions {
  display: flex;
  align-items: center;
}

.cart-header-copy {
  gap: 10px;
  min-width: 0;
}

.cart-header-copy > div {
  min-width: 0;
}

.cart-header-actions {
  gap: 8px;
  flex-shrink: 0;
}

.cart-step-label {
  display: block;
  margin-top: 2px;
  color: #929292;
  font-size: 11px;
  line-height: 1.25;
}

.cart-back {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f5f5f5;
  color: #222;
  cursor: pointer;
}

.cart-back.show {
  display: grid;
  place-items: center;
}

.cart-clear-link {
  border: 0;
  background: transparent;
  color: #999;
  padding: 8px 4px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.cart-clear-link:hover {
  color: #e56300;
}

.cart-drawer.cart-empty .cart-clear-link,
.cart-drawer.checkout-mode .cart-clear-link,
.cart-drawer.success-mode .cart-clear-link {
  display: none;
}

.promo-block {
  padding: 0;
  overflow: hidden;
}

.promo-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: #272727;
  cursor: pointer;
  font: inherit;
}

.promo-toggle-title {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-size: 13px;
  font-weight: 800;
}

.promo-toggle-title i {
  color: #ff7e1b;
}

.promo-toggle-action {
  color: #e96f13;
  font-size: 12px;
  font-weight: 800;
}

.promo-fields {
  display: none;
  padding: 0 12px 12px;
}

.promo-block.expanded .promo-fields {
  display: block;
}

.promo-block.applied .promo-toggle {
  background: #fff7ef;
}

.promo-block.applied .promo-toggle-action {
  padding: 4px 8px;
  border-radius: 999px;
  background: #ff7e1b;
  color: #fff;
}

.checkout-section-title {
  margin: 0 0 10px;
  color: #282828;
  font-size: 13px;
  font-weight: 900;
}

.cart-action-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.cart-action-total {
  display: flex;
  flex-direction: column;
  min-width: 84px;
}

.cart-action-total span {
  color: #929292;
  font-size: 10px;
}

.cart-action-total strong {
  color: #222;
  font-size: 18px;
  line-height: 1.1;
}

.cart-action-bar .checkout-btn {
  margin: 0;
}

html[data-theme="dark"] .cart-step-label,
html[data-theme="dark"] .cart-clear-link,
html[data-theme="dark"] .cart-action-total span {
  color: var(--kunik-muted);
}

html[data-theme="dark"] .cart-back,
html[data-theme="dark"] .promo-toggle {
  color: var(--kunik-text);
}

html[data-theme="dark"] .cart-back {
  background: rgba(255,255,255,.07);
}

html[data-theme="dark"] .promo-block.applied .promo-toggle {
  background: rgba(255,126,27,.08);
}

html[data-theme="dark"] .checkout-section-title,
html[data-theme="dark"] .cart-action-total strong {
  color: var(--kunik-text);
}

@media (max-width: 600px) {
  .cart-drawer {
    width: 100% !important;
    max-width: none !important;
    height: 100dvh !important;
    right: -100% !important;
    border-radius: 0 !important;
  }

  .cart-drawer.active {
    right: 0 !important;
  }

  .cart-drawer-header {
    min-height: 70px;
    padding: 12px 14px !important;
  }

  .cart-drawer-header h2 {
    font-size: 1.28rem !important;
    line-height: 1.1;
  }

  .cart-close {
    width: 38px !important;
    height: 38px !important;
    font-size: 23px !important;
  }

  .cart-drawer-body {
    padding: 10px 12px 8px !important;
    overscroll-behavior: contain;
  }

  .cart-row {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
    min-height: 88px;
    margin-bottom: 8px !important;
    padding: 9px 10px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.035) !important;
  }

  .cart-item-left {
    gap: 10px !important;
  }

  .cart-item-thumb,
  html[data-theme="dark"] .cart-item-thumb.shawarma-cart-thumb,
  html[data-theme="light"] .cart-item-thumb.shawarma-cart-thumb {
    width: 68px !important;
    height: 68px !important;
    border-radius: 14px !important;
  }

  .cart-item-info {
    gap: 3px !important;
  }

  .cart-item-name {
    display: -webkit-box;
    max-width: none !important;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px !important;
    line-height: 1.18 !important;
  }

  .cart-item-price {
    font-size: 11px !important;
  }

  .cart-right {
    gap: 7px !important;
  }

  .cart-controls {
    gap: 6px !important;
    padding: 4px 6px !important;
  }

  .qty-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 18px !important;
  }

  .qty-value {
    min-width: 16px !important;
    font-size: 12px !important;
  }

  .cart-line-total {
    font-size: 13px !important;
  }

  .cart-drawer-footer {
    padding: 10px 12px max(12px, env(safe-area-inset-bottom)) !important;
  }

  .promo-block,
  .cart-summary-list {
    margin-bottom: 8px !important;
    border-radius: 15px !important;
  }

  .promo-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px !important;
  }

  .promo-input {
    min-width: 0;
    height: 40px !important;
    font-size: 13px !important;
  }

  .promo-btn {
    width: auto !important;
    min-width: 104px;
    height: 40px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }

  .cart-summary-list {
    padding: 10px 12px !important;
  }

  .summary-row {
    padding: 5px 0 !important;
    font-size: 12px !important;
  }

  .summary-row.total-row {
    margin-top: 3px !important;
    padding-top: 9px !important;
    font-size: 15px !important;
  }

  .cart-summary-list .total-row {
    display: none !important;
  }

  .cart-action-bar {
    position: sticky;
    bottom: 0;
    z-index: 4;
    margin: 0 -2px;
    padding-top: 6px;
    background: inherit;
  }

  .cart-action-bar .checkout-btn {
    min-height: 50px !important;
    padding: 0 16px !important;
    border-radius: 16px !important;
    font-size: 14px !important;
  }

  .cart-drawer.checkout-mode .cart-drawer-body,
  .cart-drawer.checkout-mode .promo-block {
    display: none !important;
  }

  .cart-drawer.checkout-mode .cart-drawer-footer {
    flex: 1;
    overflow-y: auto;
    padding-top: 14px !important;
  }

  .cart-drawer.checkout-mode .customer-block {
    display: block !important;
    margin-bottom: 10px !important;
    padding: 12px !important;
    border-radius: 16px !important;
  }

  .cart-drawer.checkout-mode .cart-summary-list {
    display: block !important;
  }

  .customer-input {
    height: 44px !important;
    margin-bottom: 8px !important;
    border-radius: 13px !important;
    font-size: 13px !important;
  }

  .customer-textarea {
    height: 64px !important;
  }

  .payment-option {
    grid-template-columns: 20px 34px 1fr !important;
    gap: 8px !important;
    padding: 10px !important;
    border-radius: 13px !important;
  }


  .payment-option.online-only-payment {
    grid-template-columns: 34px 1fr !important;
  }

  .payment-option-copy strong {
    font-size: 12px !important;
  }

  .payment-option-copy small,
  .payment-method-note,
  .legal-consent {
    font-size: 10px !important;
  }

  .legal-consent {
    padding: 9px 10px !important;
  }

  .cart-drawer.checkout-mode .cart-action-bar {
    position: sticky;
    bottom: -1px;
    padding: 8px 0 0;
    background: #fff;
  }

  html[data-theme="dark"] .cart-drawer.checkout-mode .cart-action-bar {
    background: var(--kunik-surface);
  }

  .cart-drawer.success-mode .cart-back,
  .cart-drawer.success-mode .cart-step-label {
    display: none !important;
  }
}

/* Динамическое наличие товаров */
.item.product-unavailable {
  position: relative;
  opacity: .68;
}
.item.product-unavailable img {
  filter: grayscale(.75) saturate(.55);
}
.sold-out-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(18, 19, 24, .9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.btn.unavailable-button,
.btn.unavailable-button:hover,
.open-ser-modal.unavailable-button,
.open-ser-modal.unavailable-button:hover {
  cursor: not-allowed;
  transform: none;
  color: #777 !important;
  background: #e7e7e7 !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
html[data-theme="dark"] .btn.unavailable-button,
html[data-theme="dark"] .open-ser-modal.unavailable-button {
  color: #8b8f99 !important;
  background: #23262e !important;
}

/* =======================
   UNIVERSAL PRODUCT DETAILS v46
======================= */
.product-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 2px auto 12px;
  padding: 5px 2px;
  border: 0;
  background: transparent;
  color: #e96d20;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-details-btn:hover {
  opacity: 0.76;
  transform: translateY(-1px);
}

.menu .item > img,
.menu .item > h3,
.menu .item > p {
  cursor: pointer;
}

.menu .item > img:focus-visible,
.menu .item > h3:focus-visible,
.menu .item > p:focus-visible,
.product-details-btn:focus-visible {
  outline: 3px solid rgba(255, 126, 27, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}

.product-modal-composition-label {
  display: inline-flex;
  margin: 2px 0 7px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff1e6;
  color: #b95012;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-modal-options[hidden] {
  display: none !important;
}

.product-modal-desc {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  max-height: none !important;
  white-space: normal !important;
}

.product-modal-info {
  min-width: 0;
}

.product-modal .modal-add-btn {
  width: 100%;
}

html[data-theme="dark"] .product-details-btn {
  color: #ff9a55;
}

html[data-theme="dark"] .product-modal-composition-label {
  background: rgba(255, 126, 27, 0.14);
  color: #ffab72;
  border: 1px solid rgba(255, 126, 27, 0.28);
}

@media (max-width: 700px) {
  .product-details-btn {
    margin: 0 auto 9px;
    font-size: 0.82rem;
    padding: 4px 2px;
  }

  .product-modal {
    overflow: hidden !important;
  }

  .product-modal-content {
    max-height: calc(100dvh - 42px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
  }

  .product-modal-info h2 {
    padding-right: 42px;
  }

  .product-modal-desc {
    font-size: 0.92rem !important;
    line-height: 1.52 !important;
    margin-bottom: 10px !important;
  }

  .product-modal-composition-label {
    margin-bottom: 8px;
  }

  .product-modal .modal-add-btn {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: calc(100% - 30px);
    z-index: 5;
    box-shadow: 0 10px 28px rgba(255, 86, 84, 0.32);
  }
}
