/* index styles */
:root {
    /* ƏSAS RƏNG: Sushi Yokio loqosunun əsas tonu */
    --purple: #1A1414; 
    /* Navbar və Footer üçün: Loqo rənginin daha tünd versiyası */
    --purple-dark: #100C0C; 
    /* Düymələr üçün: Bir az daha parlaq ton */
    --purple-mid: #C8313F; 
    /* Hover effektləri üçün: Açıq ton */
    --purple-light: #E2818A; 
    /* Qızılı vurğular */
    --gold: #E8C96A; 
    /* Digər rənglər */
    --cream: #FAF7F2;
    --white: #ffffff;
    --gray: #6b7280;
    --dark: #15110F;
    --text: #241F1D;
    --text-light: #6b7280;
    /* Kölgə effektləri (#1A1414 rənginin RGB formatı: 26, 20, 20) */
    --shadow: 0 8px 32px rgba(26, 20, 20, 0.12);
    --shadow-hover: 0 16px 48px rgba(26, 20, 20, 0.20);
    --radius: 16px;
    --radius-sm: 10px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { 
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; 
  background: var(--cream); 
  color: var(--text); 
  overflow-x: hidden; 
  top: 0 !important; 
  position: static !important; 
}
/* Düymələrə və linklərə 2 dəfə ard-arda basanda avtomatik zoom olmasının qarşısını alır */
  a, button, input, select, textarea, .menu-card, .gallery-item {
    touch-action: manipulation;
  }
  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--purple); /* BURA DƏYİŞDİ: İndi tam loqonun rəngidir */
    padding: 0 3rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 24px rgba(0,0,0,0.35);
    border-bottom: 1px solid rgba(232,201,106,0.18);
    transition: background 0.3s;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .logo-icon {
    width: 46px; height: 46px;
    background: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }
  .logo-icon img { width: 90%; height: 90%; object-fit: contain; }
  .logo-icon-emoji { font-size: 20px; color: var(--white); }
  .logo-text { line-height: 1.1; }
  .logo-text span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
    color: var(--white);
  }
  .logo-text small {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .nav-links {
    display: flex; gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: color .2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-right {
    display: flex; align-items: center; gap: 1rem;
  }
  .nav-phone {
    color: rgba(255,255,255,0.85);
    font-size: 13px; font-weight: 500;
    text-decoration: none;
    display: flex; align-items: center; gap: 5px;
  }
  .nav-phone:hover { color: var(--gold); }
  .lang-switcher {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    border-radius: 50px;
    padding: 6px 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600; font-size: 0.82rem;
    outline: none; cursor: pointer;
  }
  .lang-switcher option { background: var(--purple-dark); color: white; }
  .cart-btn {
    background: var(--purple-mid);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    transition: background .2s, color .2s;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
  }
  .cart-btn:hover { background: var(--white); color: var(--purple-dark); }
  .cart-count {
    background: var(--gold); color: var(--purple-dark);
    border-radius: 50%; width: 20px; height: 20px;
    font-size: 0.72rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    min-width: 20px;
  }
  /* ── HERO (Sushi-temalı, iki sütunlu yeni dizayn) ── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1553621042-f6e147245754?w=1600&q=80') center/cover no-repeat;
    filter: brightness(0.28) saturate(1.05);
    transform: scale(1.05);
    animation: subtle-zoom 16s ease-in-out infinite alternate;
  }
  @keyframes subtle-zoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.14); }
  }
  .hero-pattern {
    position: absolute; inset: 0;
    opacity: 0.14;
    background-image: radial-gradient(circle at 50% 100%, transparent 22%, rgba(232,201,106,0.55) 23%, rgba(232,201,106,0.55) 26%, transparent 27%, transparent 100%);
    background-size: 64px 64px;
    mix-blend-mode: overlay;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(10,8,8,0.88) 0%, rgba(16,12,12,0.55) 45%, rgba(16,12,12,0.25) 75%);
  }
  .hero::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -1px;
    height: 70px; z-index: 2;
    background: var(--cream);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 30 Q 50 0 100 30 T 200 30 T 300 30 T 400 30 T 500 30 T 600 30 T 700 30 T 800 30 T 900 30 T 1000 30 T 1100 30 T 1200 30 V60 H0 Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 30 Q 50 0 100 30 T 200 30 T 300 30 T 400 30 T 500 30 T 600 30 T 700 30 T 800 30 T 900 30 T 1000 30 T 1100 30 T 1200 30 V60 H0 Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
  }
  .hero-content {
    position: relative; z-index: 3;
    width: 100%; max-width: 1280px;
    margin: 0 auto;
    padding: 7.5rem 3rem 5rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
  }
  .hero-text { animation: fadeUp .9s ease both; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-overline {
    display: block;
    color: var(--gold);
    font-size: 13px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    margin-bottom: 14px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,201,106,0.12);
    border: 1px solid rgba(232,201,106,0.45);
    color: var(--gold);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px; font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 1.4rem;
  }
  .hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4.4vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.1rem;
  }
  .hero-text h1 em {
    font-style: italic;
    background: linear-gradient(90deg, var(--gold), var(--purple-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-text p {
    color: rgba(255,255,255,0.72);
    font-size: 16px; line-height: 1.7;
    max-width: 460px;
    margin-bottom: 1.8rem;
  }
  .hero-stats {
    display: flex; flex-wrap: wrap;
    gap: 0;
    margin-bottom: 2.2rem;
    max-width: 460px;
  }
  .hero-stat {
    display: flex; flex-direction: column;
    padding: 0 1.4rem 0 0;
    margin-right: 1.4rem;
    border-right: 1px solid rgba(255,255,255,0.18);
  }
  .hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
  .hero-stat strong {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.25rem; font-weight: 700;
    line-height: 1.2;
  }
  .hero-stat span {
    color: rgba(255,255,255,0.62);
    font-size: 11.5px;
    margin-top: 2px;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: linear-gradient(120deg, var(--purple-mid), #9c1f2b);
    color: var(--white); border: none;
    padding: 14px 30px; border-radius: 50px;
    font-size: 15px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: background .25s, transform .15s, box-shadow .25s;
    box-shadow: 0 8px 26px rgba(200, 49, 63, 0.45);
    font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(200, 49, 63, 0.6); }
  .btn-outline {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 2px solid var(--gold);
    padding: 12px 28px; border-radius: 50px;
    font-size: 15px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: border-color .2s, background .2s, transform .15s;
    font-family: 'DM Sans', sans-serif;
    backdrop-filter: blur(6px);
  }
  .btn-outline:hover { background: var(--gold); color: var(--purple-dark); transform: translateY(-3px); }
  /* ── HERO VISUAL (dairəvi şəkil + üzən kartlar) ── */
  .hero-visual {
    position: relative;
    width: 100%; max-width: 420px;
    justify-self: center;
    aspect-ratio: 1;
    animation: fadeUp 1s .2s ease both;
  }
  .hero-visual-ring {
    position: absolute; inset: -18px;
    border: 2px dashed rgba(232,201,106,0.55);
    border-radius: 50%;
    animation: hero-spin 26s linear infinite;
  }
  @keyframes hero-spin { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }
  .hero-visual-img {
    position: absolute; inset: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 70px rgba(0,0,0,0.55);
  }
  .hero-visual-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-seal {
    position: absolute; left: -6%; bottom: -4%;
    width: 96px; height: 96px;
    border-radius: 50%;
    background: var(--purple-mid);
    border: 3px solid var(--gold);
    color: var(--white);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    z-index: 4;
  }
  .hero-seal strong { font-size: 22px; line-height: 1; }
  .hero-seal span { font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
  .hero-float-card {
    position: absolute; top: 6%; right: -10%;
    background: rgba(255,255,255,0.97);
    color: var(--text);
    padding: 10px 16px;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.3);
    display: flex; align-items: center; gap: 10px;
    font-size: 12.5px; font-weight: 600;
    animation: float-card 3.6s ease-in-out infinite;
    z-index: 4;
  }
  .hero-float-card .emoji { font-size: 20px; }
  @keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  @media (max-width: 860px) {
    .hero-content { grid-template-columns: 1fr; padding: 6.5rem 1.5rem 4rem; gap: 2.8rem; text-align: center; }
    .hero-text p, .hero-stats { margin-left: auto; margin-right: auto; }
    .hero-stats { justify-content: center; }
    .hero-btns { justify-content: center; }
    .hero-visual { max-width: 280px; order: -1; }
    .hero-float-card { right: 0; }
  }
/* ── SCROLL NAV ── */
  .scroll-nav {
    position: sticky; top: 72px; z-index: 900;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 20, 20,0.1);
    padding: 0 3rem;
    display: flex; gap: 4px;
    overflow-x: auto; scrollbar-width: none;
  }
  .scroll-nav::-webkit-scrollbar { display: none; }
  .scroll-nav a {
    padding: 14px 16px;
    color: var(--text-light); font-size: 0.88rem; font-weight: 500;
    text-decoration: none; white-space: nowrap;
    border-bottom: 3px solid transparent;
    border-radius: 8px 8px 0 0;
    transition: all .2s;
  }
  .scroll-nav a:hover, .scroll-nav a.active { color: var(--purple-mid); border-bottom-color: var(--purple-mid); background: rgba(200,49,63,0.06); }
  /* ── SECTION ── */
.section { padding: 3rem 1.5rem; }
  .container { max-width: 1280px; margin: 0 auto; }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; color: var(--text);
    margin-bottom: .3rem;
    position: relative; display: inline-block;
    letter-spacing: .2px;
  }
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 56px; height: 4px;
    background: linear-gradient(90deg, var(--purple-mid), var(--gold));
    border-radius: 4px;
  }
  .section-sub {
    color: var(--text-light); font-size: 0.95rem;
    margin-top: 14px; margin-bottom: 2rem;
  }
  /* Qalereya Şəkil Kartı */
  .gallery-item {
    flex: 0 0 calc(33.333% - 11px); /* Kompüterdə yan-yana 3 şəkil (aralardakı 16px boşluğu çıxırıq) */
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(26, 20, 20,0.2);
  }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
  }
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  /* ── ADVERTISEMENT MODAL ── */
#adOverlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 8, 0.88);
  z-index: 99999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 80px 16px; /* aşağıda timer üçün yer */
}
#adOverlay.clickable { cursor: pointer; }
.ad-wrapper {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  cursor: default;
}
.ad-layout {
  display: grid;
  gap: 14px;
  width: 100%;
  align-items: center;
  justify-items: center;
}
.ad-layout.count-1 {
  grid-template-columns: 1fr;
  max-width: 600px;
}
.ad-layout.count-2 {
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
}
.ad-layout.count-3 {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1100px;
}
.ad-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.07);
  background: #0A0808;
  animation: adPopIn 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes adPopIn {
  from { opacity: 0; transform: scale(0.90) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.ad-layout.count-2 .ad-img-wrap:nth-child(2) { animation-delay: 0.07s; }
.ad-layout.count-3 .ad-img-wrap:nth-child(2) { animation-delay: 0.07s; }
.ad-layout.count-3 .ad-img-wrap:nth-child(3) { animation-delay: 0.14s; }
.ad-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}
.ad-layout.count-1 .ad-img-wrap img { max-height: 78vh; }
.ad-layout.count-2 .ad-img-wrap img { max-height: 74vh; }
.ad-layout.count-3 .ad-img-wrap img { max-height: 68vh; }
/* ── Timer + Bağla — ekranın ən aşağısında, mərkəzdə, sabit ── */
.ad-bottom-bar {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 100001;
  animation: adBarUp 0.4s 0.25s ease both;
}
@keyframes adBarUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.ad-timer-badge {
  background: rgba(15, 11, 11, 0.85);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  white-space: nowrap;
  min-width: 64px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}
#adCloseBtn {
  background: var(--white);
  border: none;
  color: var(--purple-dark);
  padding: 11px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  transition: all 0.2s ease;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
#adCloseBtn:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,201,106,0.45);
}
.ad-hint {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.32);
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
/* ── PREMIUM FEATURED CARDS ── */
.premium-section { margin-bottom: 2.5rem; animation: fadeUp .6s ease both; }
.premium-title {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  color: var(--purple-dark); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 8px; font-weight: 700;
}
.premium-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 20px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  margin: 0 -1rem; padding: 0 1rem 20px 1rem;
}
.premium-scroll::-webkit-scrollbar { display: none; }
.premium-card {
  flex: 0 0 250px; 
  background: linear-gradient(145deg, #ffffff, #faf7f2);
  border-radius: 20px; padding: 12px;
  box-shadow: 0 10px 30px rgba(232, 201, 106, 0.2), 0 0 0 1.5px rgba(232, 201, 106, 0.4);
  position: relative; cursor: pointer; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(232, 201, 106, 0.4), 0 0 0 2px rgba(232, 201, 106, 0.8);
}
.premium-badge {
  position: absolute; top: 0; left: 16px;
  background: var(--gold); color: var(--purple-dark);
  font-size: 0.75rem; font-weight: 700; padding: 4px 12px;
  border-radius: 0 0 8px 8px; z-index: 2;
  box-shadow: 0 4px 10px rgba(232, 201, 106, 0.4); text-transform: uppercase;
}
.premium-card-img {
  width: 100%; height: 160px; border-radius: 12px;
  overflow: hidden; margin-bottom: 14px; position: relative;
  background: #F4ECE8; display: flex; align-items: center; justify-content: center;
}
.premium-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.premium-card:hover .premium-card-img img { transform: scale(1.08); }
.premium-card-info { display: flex; flex-direction: column; flex: 1; }
.premium-card-name { font-weight: 700; font-size: 1rem; color: var(--purple-dark); margin-bottom: 6px; line-height: 1.3; }
.premium-card-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.premium-card-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--purple); }
.premium-add-btn {
  width: 34px; height: 34px; background: var(--gold); color: var(--purple-dark);
  border: none; border-radius: 50%; font-size: 1.3rem; font-weight: bold;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s;
}
.premium-add-btn:hover { transform: scale(1.1); background: #dcb845; }
@media (max-width: 768px) {
  #adOverlay {
    padding: 12px 12px 76px 12px;
  }
  .ad-layout.count-2 {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .ad-layout.count-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }
  .ad-layout.count-1 .ad-img-wrap img { max-height: 72vh; }
  .ad-layout.count-2 .ad-img-wrap img { max-height: 42vh; }
  .ad-layout.count-3 .ad-img-wrap img { max-height: 32vh; }
  .ad-bottom-bar { bottom: 18px; gap: 10px; }
  #adCloseBtn { padding: 10px 22px; font-size: 14px; }
  .ad-timer-badge { padding: 10px 20px; font-size: 15px; }
}
  /* ── CATEGORY TABS ── */
  .cat-scroll {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 8px; margin-bottom: 2rem;
    scrollbar-width: none;
  }
  .cat-scroll::-webkit-scrollbar { display: none; }
  .cat-tabs { display: flex; gap: 10px; width: max-content; padding: 4px 0; }
  .cat-tab {
    background: var(--white); border: 2px solid rgba(26, 20, 20,0.15);
    border-radius: 50px; padding: 9px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; font-weight: 500;
    cursor: pointer; transition: all .2s;
    white-space: nowrap; color: var(--text-light);
    display: flex; align-items: center; gap: 6px;
  }
  .cat-tab.active, .cat-tab:hover {
    background: var(--purple); border-color: var(--purple);
    color: white; box-shadow: 0 4px 16px rgba(26, 20, 20,0.25);
  }
  /* ── SEARCH ── */
  .menu-search-container {
    max-width: 560px; margin: 0 0 1.5rem; position: relative;
  }
  .menu-search-input {
    width: 100%; padding: 13px 20px 13px 44px;
    border: 2px solid rgba(26, 20, 20,0.15); border-radius: 50px;
    font-family: 'DM Sans', sans-serif; font-size: 16px;
    color: var(--text); background: var(--white); transition: all .2s; outline: none;
  }
  .menu-search-input:focus { border-color: var(--purple); box-shadow: 0 4px 14px rgba(26, 20, 20,0.12); }
  .menu-search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); font-size: 1.1rem; color: var(--text-light); }
  /* ── MENU GRID ── */
 .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 18px;
    min-height: 60vh;
    align-content: start;
}
  .category-group-title {
    grid-column: 1 / -1;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; color: var(--purple-dark);
    margin: 28px 0 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(26, 20, 20,0.1);
  }
  .menu-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    transition: all .25s; position: relative;
    display: flex; flex-direction: column;
    cursor: pointer;
    border: 1px solid transparent;
  }
  .menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(232,201,106,0.5); }
  .menu-card-img {
    width: 100%; aspect-ratio: 1;
    background: #F4ECE8;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; position: relative; overflow: hidden;
  }
  .menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
  .menu-card:hover .menu-card-img img { transform: scale(1.06); }
  .menu-card-body { padding: 12px; display: flex; flex-direction: column; flex: 1; }
  .menu-card-name { font-weight: 600; font-size: 0.9rem; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
  .menu-card-desc { font-size: 0.77rem; color: var(--text-light); line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .menu-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
  .price { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--purple); font-size: 1rem; }
  .price-stack { display: inline-flex; flex-direction: column; line-height: 1.05; gap: 3px; }
  .old-price { color: var(--text-light); text-decoration: line-through; text-decoration-thickness: 1.5px; font-family: 'DM Sans', sans-serif; font-size: 0.78em; font-weight: 600; }
  .new-price { color: var(--purple); }
  .add-btn {
    width: 30px; height: 30px;
    background: var(--purple-mid); border: none; border-radius: 50%;
    color: white; font-size: 1.15rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all .2s; flex-shrink: 0;
  }
  .add-btn:hover { background: var(--purple-dark); transform: scale(1.1); }
  .add-btn.added { background: var(--gold); }
  .in-cart-badge {
    position: absolute; top: 8px; right: 8px;
    background: var(--gold); color: white;
    border-radius: 50px; padding: 2px 8px;
    font-size: 0.7rem; font-weight: 700; display: none;
  }
  .in-cart-badge.visible { display: block; }
  /* ── LOADING / EMPTY ── */
  .menu-loading {
    grid-column: 1/-1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 60px 20px; gap: 16px; color: var(--text-light);
  }
  .spinner {
    width: 42px; height: 42px;
    border: 4px solid rgba(26, 20, 20,0.1); border-top-color: var(--purple);
    border-radius: 50%; animation: spin .8s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .menu-empty { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--text-light); }
  .menu-empty .big-icon { font-size: 3rem; margin-bottom: 12px; }
  /* ── CONTACT ── */
  #elaqe { scroll-margin-top: 90px; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .contact-card {
    background: var(--white); border-radius: var(--radius);
    padding: 1.8rem; box-shadow: var(--shadow);
    display: flex; flex-direction: column; gap: 14px;
  }
  .contact-card h3 { font-family: 'Playfair Display', serif; color: var(--purple-dark); font-size: 1.15rem; }
  .contact-row { display: flex; align-items: flex-start; gap: 12px; }
  .contact-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(26, 20, 20,0.08); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple);
  }
  .contact-row span, .contact-row a { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; text-decoration: none; }
  .contact-row a:hover { color: var(--purple); }
  .map-embed {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); grid-column: 1/-1;
  }
  .map-embed iframe { width: 100%; height: 260px; border: none; display: block; }
  /* ── CART DRAWER ── */
  .cart-overlay {
    position: fixed; inset: 0; 
    z-index: 6000;
    background: rgba(21, 17, 15,0.5);
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
    backdrop-filter: blur(4px);
  }
  .cart-overlay.open { opacity: 1; pointer-events: all; }
  .cart-drawer {
  position: fixed; bottom: 0; left: 50%;
  width: 100%; max-width: 440px;
  z-index: 6001; background: white;
  border-radius: 28px 28px 0 0;
  max-height: 92svh; overflow-y: auto;
  transform: translate(-50%, calc(100% + 90px));
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease;
  box-shadow: none;
  pointer-events: none;
}

.cart-drawer.open {
  transform: translate(-50%, 0);
  box-shadow: 0 -20px 60px rgba(26, 20, 20,0.2);
  pointer-events: auto;
}
  .cart-handle { text-align: center; padding: 14px 0 0; }
  .cart-handle div { width: 40px; height: 4px; background: #F4ECE8; border-radius: 2px; margin: 0 auto; }
  .cart-header {
    padding: 16px 20px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid #F4ECE8;
  }
  .cart-header h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--purple-dark); }
  .close-btn {
    background: rgba(26, 20, 20,0.08); border: none;
    width: 34px; height: 34px; border-radius: 50%;
    cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple); transition: background .2s;
  }
  .close-btn:hover { background: rgba(26, 20, 20,0.15); }
  .cart-body { padding: 16px 20px; }
  .cart-empty { text-align: center; padding: 40px 20px; color: var(--text-light); }
  .cart-empty .big-icon { font-size: 3.5rem; margin-bottom: 12px; }
  .cart-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid #F4ECE8;
  }
  .cart-item-img {
    width: 46px; height: 46px; border-radius: 10px;
    background: rgba(26, 20, 20,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0; overflow: hidden;
  }
  .cart-item-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
  .cart-item-info { flex: 1; }
  .cart-item-name { font-weight: 600; font-size: 0.88rem; }
  .cart-item-price { color: var(--purple); font-size: 0.85rem; font-weight: 500; }
  .qty-control { display: flex; align-items: center; gap: 8px; }
  .qty-btn {
    width: 28px; height: 28px;
    background: rgba(26, 20, 20,0.08); border: none; border-radius: 50%;
    cursor: pointer; font-size: 1rem; color: var(--purple);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .qty-btn:hover { background: var(--purple-light); color: white; }
  .qty-num { font-weight: 700; min-width: 20px; text-align: center; font-size: 0.92rem; }
  .cart-note { margin: 16px 0; }
  .cart-note label { font-size: 0.85rem; color: var(--text-light); display: block; margin-bottom: 6px; font-weight: 500; }
  .cart-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; border-top: 2px solid #F4ECE8; margin-top: 8px;
  }
  .cart-total span { font-weight: 600; color: var(--text-light); }
  .cart-total .total-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--purple-dark); font-weight: 700; }
  .whatsapp-btn {
    width: 100%; background: #25D366; border: none; border-radius: 14px;
    padding: 15px; color: white; font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all .2s; box-shadow: 0 8px 24px rgba(37,211,102,0.28); margin-top: 12px;
  }
  .whatsapp-btn:hover { background: #1eb854; transform: translateY(-2px); }
  .delivery-estimate {
    margin-top: 14px;
    background: linear-gradient(135deg, rgba(232,201,106,0.18), rgba(200,49,63,0.08));
    border: 1px solid rgba(200,49,63,0.18);
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--purple-dark);
  }
  .delivery-estimate-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
  }
  .delivery-estimate-time {
    color: var(--purple-mid);
    white-space: nowrap;
  }
  .delivery-estimate-countdown {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-light);
  }
  .delivery-countdown-pill {
    background: var(--purple-dark);
    color: var(--gold);
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .delivery-estimate-note {
    margin-top: 7px;
    font-size: 0.74rem;
    color: var(--text-light);
    line-height: 1.35;
  }
  /* ── VARIANT MODAL ── */
  #varOverlay { z-index: 6002; }
  #varModal { z-index: 6003; }
  .var-option {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px; border: 2px solid rgba(26, 20, 20,0.15); border-radius: 14px;
    margin-bottom: 10px; cursor: pointer; transition: all .2s;
  }
  .var-option:hover { border-color: var(--purple); background: rgba(26, 20, 20,0.04); }
  .var-name { font-weight: 600; color: var(--text); font-size: 0.93rem; }
  .var-weight { font-size: 0.8rem; color: var(--text-light); display: block; margin-top: 3px; }
  .var-price { font-weight: 700; color: var(--purple); font-size: 1.05rem; }
  .var-price .old-price { display: block; font-size: 0.75rem; margin-bottom: 2px; }
  /* ── ITEM DETAIL MODAL ── */
  .img-close-btn {
    position: absolute; top: 12px; right: 12px; z-index: 100;
    background: rgba(255, 255, 255, 0.75); 
    backdrop-filter: blur(4px);
    border: none; width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple-dark); cursor: pointer; font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
  }
  .img-close-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
  }
  #itemOverlay { z-index: 6004; }
  #itemModal { z-index: 6005; }
  .item-modal-img {
    width: 100%; aspect-ratio: 1/1; max-height: 45vh;
    background: rgba(26, 20, 20,0.06);
    border-radius: 14px; overflow: visible;
    margin-bottom: 16px; position: relative; display: block;
  }
  .item-gallery {
    display: flex; width: 100%; height: 100%;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    -webkit-overflow-scrolling: touch; border-radius: 14px;
  }
  .item-gallery::-webkit-scrollbar { display: none; }
  .item-gallery img {
    flex: 0 0 100%; width: 100%; height: 100%;
    object-fit: cover; scroll-snap-align: start;
  }
  .gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%) translateZ(0);
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.88); border: none; border-radius: 50%;
    color: var(--purple-dark); font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 99; box-shadow: 0 4px 12px rgba(0,0,0,0.12); transition: all .2s;
  }
  .gallery-nav:hover { background: white; transform: translateY(-50%) scale(1.1) translateZ(0); }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
  .item-modal-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--purple-dark); margin-bottom: 8px; font-weight: 700; }
  .item-modal-desc { font-size: 0.93rem; color: var(--text-light); line-height: 1.6; margin-bottom: 18px; }
  .item-modal-price { display: block; font-size: 1.25rem; color: var(--purple); font-weight: 700; margin-bottom: 18px; }
  .item-modal-btn { width: 100%; background: var(--purple); color: white; border: none; padding: 15px; border-radius: 14px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all .2s; }
  .item-modal-btn:hover { background: var(--purple-mid); transform: translateY(-2px); }
  /* ── FLOATING CART ── */
  .floating-cart {
    position: fixed; bottom: 20px; left: 50%;
    transform: translateX(-50%) translateY(150px);
    opacity: 0; pointer-events: none;
    background: var(--purple); color: white; border: none; border-radius: 50px;
    padding: 14px 24px; font-family: 'DM Sans', sans-serif;
    font-weight: 700; font-size: 0.93rem;
    cursor: pointer; z-index: 4005;
    box-shadow: 0 12px 40px rgba(26, 20, 20,0.4);
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    display: flex; align-items: center; gap: 10px; white-space: nowrap;
  }
  .floating-cart.visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
  .floating-cart.hidden-by-modal {
    transform: translateX(-50%) translateY(150px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  /* ── FOOTER ── */
  footer {
    background: var(--purple-dark);
    padding: 3rem;
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(232,201,106,0.2);
  }
  .footer-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  }
  .footer-col h4 {
    color: var(--white); font-size: 13px; font-weight: 600;
    margin-bottom: 1rem; display: flex; align-items: center; gap: 8px;
  }
  .footer-col p, .footer-col a {
    font-size: 13px; line-height: 1.8;
    color: rgba(255,255,255,0.6); text-decoration: none; display: block;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    max-width: 1280px; margin: 2rem auto 0;
    padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; gap: 8px;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.45); margin: 0; }
  .footer-social { display: flex; gap: 14px; }
  .footer-social a { color: rgba(255,255,255,0.55); transition: color .2s; }
  .footer-social a:hover { color: var(--gold); }
  /* ── TOAST ── */
  .toast {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--purple-dark); color: white;
    padding: 10px 22px; border-radius: 50px;
    font-size: 0.88rem; font-weight: 500;
    opacity: 0; pointer-events: none;
    transition: all .3s; z-index: 9999; white-space: nowrap;
  }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
  /* ── GOOGLE TRANSLATE HIDE ── */
  .skiptranslate, .goog-te-banner-frame, .goog-te-balloon-frame,
  #goog-gt-tt, .VIpgJd-ZVi9od-ORHb-OEVmcd,
  .VIpgJd-ZVi9od-aZ2wEe-wOHMyf, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc { display: none !important; }
  /* ── MOBILE ── */
  /* ── MOBILE ── */
  @media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-phone { display: none; } 
  .hero-content { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; }
.section { padding: 2rem 1rem; } /* Mobildə boşluqlar daha da azaldıldı */
  #qalereya { padding: 3.5rem 1.5rem; } /* Qalereya şəkilləri köhnə ölçüdə qalsın */
    .scroll-nav { padding: 0 1rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem;}
    .contact-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }
  @media (max-width: 500px) {
    .gallery-item { flex: 0 0 100%; }
  }
  @media (max-width: 480px) {
    nav { padding: 0 1rem; }
    .nav-right { gap: 8px; }
    .cart-btn { padding: 7px 12px; font-size: 0.8rem; }
    .cart-count { width: 18px; height: 18px; min-width: 18px; font-size: 0.68rem; }
    .gallery-nav { width: 30px; height: 30px; font-size: 0.95rem; }
    /* ── YENİ: Yemək kartı üçün tam ekran (90%) dizaynı ── */
    #itemModal { 
      height: 90svh !important; /* Ekranın 90%-ni qəti şəkildə tutacaq */
      display: flex; 
      flex-direction: column; 
    }
    #itemBody { 
      padding-top: 8px !important; 
      flex: 1; /* Açılan pəncərənin bütün boşluğunu doldurur */
      display: flex; 
      flex-direction: column; 
      overflow-y: auto; /* Əgər mətn yenə də çox olarsa, səliqəli şəkildə daxildə sürüşəcək */
    }
    .item-modal-img { 
      margin-bottom: 20px !important; 
      max-height: 40vh !important; /* Şəkli yuxarıya sığışdırır ki, yazılar aşağıda rahat görünsün */
    }
    .item-modal-btn { 
      margin-top: auto !important; /* ÇOX ƏHƏMİYYƏTLİ: Düyməni pəncərənin ən dibinə yapışdırır */
    }
    /* ────────────────────────────────────────────────────── */
    .hero-text h1 { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .menu-card-name { font-size: 0.8rem; }
    @media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}
  }
/* ── SCROLL REVEAL EFFECT ── */
  .reveal {
    opacity: 0;
    transform: translateY(56px) scale(0.965);
    transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .reveal.reveal-delay-1 { transition-delay: 0.08s; }
  .reveal.reveal-delay-2 { transition-delay: 0.16s; }
  .reveal.reveal-delay-3 { transition-delay: 0.24s; }

  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }
  /* ── TELEFON ÜÇÜN HERO DÜZƏLİŞİ ── */
@media (max-width: 600px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr !important;
    padding: 6.6rem 1.2rem 5.8rem !important;
    gap: 1.8rem !important;
    text-align: center;
  }

  /* Telefonda əvvəl mətn və düymələr görünsün, dairə aşağı düşsün */
  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2 !important;
    max-width: 190px !important;
    margin: 0.4rem auto 0;
  }

  .hero-visual-ring {
    inset: -9px;
    border-width: 1.5px;
    opacity: 0.5;
  }

  .hero-seal {
    width: 62px;
    height: 62px;
    left: -3%;
    bottom: -5%;
    border-width: 2px;
  }

  .hero-seal strong {
    font-size: 16px;
  }

  .hero-seal span {
    font-size: 6px;
    letter-spacing: 1px;
  }

  .hero-float-card {
    top: 1%;
    right: -6px;
    padding: 7px 10px;
    font-size: 10.5px;
    border-radius: 11px;
  }

  .hero-float-card .emoji {
    font-size: 16px;
  }

 .hero::after {
  height: 38px !important;
  bottom: -8px !important;
}

  /* Arxadakı dalğavari naxış telefonda düymələrin üstündə çox bilinməsin */
  .hero-pattern {
    opacity: 0.06;
    background-size: 82px 82px;
  }

  .hero-btns {
    position: relative;
    z-index: 5;
    margin-bottom: 0.6rem;
  }
}


  /* ── ÖZ SETİNİ YARAT ── */
  .custom-set-pill {
    display:inline-flex; align-items:center; gap:7px;
    background:rgba(200,49,63,.08); color:var(--purple-dark);
    border:1px solid rgba(200,49,63,.18); border-radius:999px;
    padding:7px 12px; font-size:.82rem; font-weight:700;
  }
  .custom-set-card-note { font-size:.75rem; color:var(--text-light); margin-top:5px; line-height:1.45; }
  .custom-set-footer {
    position:sticky; bottom:0; z-index:5; background:rgba(255,255,255,.97);
    backdrop-filter:blur(12px); border-top:1px solid rgba(26,20,20,.1);
    padding:14px 18px; box-shadow:0 -10px 28px rgba(26,20,20,.08);
  }
  .custom-set-meter { height:9px; background:#f0e7df; border-radius:999px; overflow:hidden; margin:8px 0 10px; }
  .custom-set-meter-fill { height:100%; width:0%; background:linear-gradient(90deg,var(--purple-mid),var(--gold)); border-radius:999px; transition:width .25s ease; }
  .custom-set-cart-btn {
    width:100%; border:none; border-radius:14px; padding:14px;
    background:linear-gradient(120deg,var(--purple-mid),#9c1f2b); color:white;
    font-family:'DM Sans',sans-serif; font-size:1rem; font-weight:800;
    cursor:pointer; box-shadow:0 8px 22px rgba(200,49,63,.28);
    transition:transform .15s, opacity .2s;
  }
  .custom-set-cart-btn:disabled,
  .custom-set-cart-btn.disabled { opacity:.48; cursor:not-allowed; box-shadow:none; background:#9e9e9e; }
  .custom-set-cart-btn:not(:disabled):not(.disabled):hover { transform:translateY(-2px); }
  .custom-set-cart-btn.disabled:hover { transform:none; }
  .image-zoom-overlay {
    position:fixed; inset:0; z-index:90000;
    display:none; align-items:center; justify-content:center;
    background:rgba(10,8,8,.94); padding:18px;
    overflow:auto; overscroll-behavior:contain;
    touch-action:pan-x pan-y pinch-zoom;
  }
  .image-zoom-overlay.open { display:flex; }
  .image-zoom-overlay img {
    max-width:100%; max-height:92vh; object-fit:contain;
    border-radius:14px; box-shadow:0 20px 60px rgba(0,0,0,.55);
    touch-action:pan-x pan-y pinch-zoom;
  }
  .image-zoom-close {
    position:fixed; top:16px; right:16px; z-index:90001;
    width:42px; height:42px; border:none; border-radius:50%;
    background:rgba(255,255,255,.92); color:var(--purple-dark);
    font-size:18px; font-weight:900; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 22px rgba(0,0,0,.25);
  }
  .custom-set-line {
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    background:var(--cream); border:1px solid rgba(26,20,20,.08); border-radius:14px;
    padding:12px; margin-bottom:10px;
  }


  /* ── ÖZ SETİNİ YARAT: TELEFON ÜÇÜN RAHAT DİZAYN ── */
  @media (max-width: 600px) {
    #customSetModal {
      top: 0 !important;
      border-radius: 0 !important;
      height: 100svh !important;
      max-height: 100svh !important;
      background: #fffaf5 !important;
    }

    #customSetHeader {
      padding: calc(12px + env(safe-area-inset-top)) 12px 10px !important;
      border-radius: 0 0 18px 18px;
    }

    #customSetHeader h2 {
      font-size: 1.15rem !important;
      line-height: 1.15 !important;
    }

    #customSetRuleText {
      font-size: 0.74rem !important;
      line-height: 1.35 !important;
      max-width: 260px;
    }

    #customSetHeader .menu-search-container {
      margin-bottom: 8px !important;
    }

    #customSetHeader .menu-search-input {
      padding: 12px 16px 12px 42px !important;
      border-radius: 16px !important;
      font-size: 16px !important;
      background: var(--cream) !important;
    }

    #customSetHeader .cat-scroll {
      margin: 0 -12px !important;
      padding: 2px 12px 6px !important;
    }

    #customSetHeader .cat-tab {
      padding: 8px 14px !important;
      font-size: 0.82rem !important;
    }

    #customSetModal > div[style*="padding:20px"] {
      padding: 12px 10px 0 !important;
    }

    #customSetGrid {
      grid-template-columns: 1fr !important;
      gap: 11px !important;
      min-height: auto !important;
      padding-bottom: 12px;
    }

    #customSetGrid .category-group-title {
      font-size: 1.1rem !important;
      margin: 16px 4px 4px !important;
      padding-bottom: 6px !important;
    }

    #customSetGrid .menu-card {
      display: grid !important;
      grid-template-columns: 112px minmax(0, 1fr) !important;
      min-height: 122px !important;
      border-radius: 18px !important;
      overflow: hidden !important;
      box-shadow: 0 7px 22px rgba(26,20,20,0.10) !important;
      border: 1px solid rgba(26,20,20,0.06) !important;
      background: #fff !important;
    }

    #customSetGrid .menu-card:hover {
      transform: none !important;
    }

    #customSetGrid .menu-card-img {
      width: 112px !important;
      height: 100% !important;
      min-height: 122px !important;
      aspect-ratio: auto !important;
      border-radius: 0 !important;
      align-self: stretch !important;
    }

    #customSetGrid .menu-card-img img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
    }

    #customSetGrid .fallback-emoji {
      font-size: 2.4rem !important;
    }

    #customSetGrid .in-cart-badge {
      top: 7px !important;
      right: 7px !important;
      background: var(--purple-mid) !important;
      color: white !important;
      box-shadow: 0 4px 12px rgba(0,0,0,0.20);
    }

    #customSetGrid .menu-card-body {
      padding: 10px 10px 9px 12px !important;
      min-width: 0 !important;
      justify-content: center !important;
    }

    #customSetGrid .menu-card-name {
      font-size: 0.92rem !important;
      line-height: 1.23 !important;
      margin-bottom: 4px !important;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    #customSetGrid .custom-set-card-note {
      display: inline-flex;
      width: fit-content;
      max-width: 100%;
      margin: 2px 0 5px !important;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(232,201,106,0.18);
      color: var(--purple-dark);
      font-size: 0.72rem !important;
      font-weight: 800;
      white-space: nowrap;
    }

    #customSetGrid .menu-card-desc {
      font-size: 0.73rem !important;
      line-height: 1.32 !important;
      margin-bottom: 6px !important;
      -webkit-line-clamp: 2 !important;
      line-clamp: 2 !important;
    }

    #customSetGrid .menu-card-footer {
      padding-top: 4px !important;
    }

    #customSetGrid .menu-card-footer > span {
      font-size: 0.72rem !important;
    }

    #customSetGrid .add-btn {
      width: 34px !important;
      height: 34px !important;
      font-size: 1.25rem !important;
      box-shadow: 0 5px 14px rgba(200,49,63,0.25);
    }

    #customSetModal .custom-set-footer {
      padding: 10px 12px calc(12px + env(safe-area-inset-bottom)) !important;
      border-radius: 18px 18px 0 0;
      z-index: 4103 !important;
    }

    #customSetModal .custom-set-pill {
      padding: 6px 9px !important;
      font-size: 0.72rem !important;
      max-width: 100%;
    }

    #customSetPricePill {
      width: 100%;
      justify-content: center;
      text-align: center;
    }

    #customSetModal .custom-set-meter {
      margin: 7px 0 8px !important;
    }

    #customSetModal .custom-set-cart-btn {
      padding: 12px 10px !important;
      border-radius: 13px !important;
      font-size: 0.9rem !important;
      line-height: 1.25 !important;
    }
  }

  @media (max-width: 380px) {
    #customSetGrid .menu-card {
      grid-template-columns: 96px minmax(0, 1fr) !important;
      min-height: 112px !important;
    }
    #customSetGrid .menu-card-img {
      width: 96px !important;
      min-height: 112px !important;
    }
    #customSetGrid .menu-card-name {
      font-size: 0.86rem !important;
    }
    #customSetGrid .menu-card-desc {
      -webkit-line-clamp: 1 !important;
      line-clamp: 1 !important;
    }
  }
