@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

:root {
  --gold-100: #f9f0d8;
  --gold-200: #f3dfb0;
  --gold-300: #e8c97a;
  --gold-400: #d4a84a;
  --gold-500: #c9923a;
  --gold-600: #a87528;
  --gold-700: #865a1c;
  --gold-gradient: linear-gradient(135deg, #d4a84a 0%, #f3dfb0 50%, #c9923a 100%);
  --gold-gradient-dark: linear-gradient(135deg, #a87528 0%, #c9923a 50%, #d4a84a 100%);
  --bg-primary: #0a0908;
  --bg-secondary: #131210;
  --bg-card: #161412;
  --text-primary: #fff;
  --text-secondary: #a09a8c;
  --text-muted: #6b655a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ================= LOADER ================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  width: 100px;
  height: 100px;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold-400);
  border-right-color: var(--gold-300);
  animation: spin 1.2s linear infinite;
}

.loader-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: var(--gold-500);
  border-left-color: var(--gold-400);
  animation: spin 0.8s linear infinite reverse;
}

.loader-logo{
    position:absolute;
    width:90px;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}

.loader-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    user-select:none;
    -webkit-user-drag:none;
}

.loader-text {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================= TOPBAR ================= */
.topbar {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  height: 68px;
  padding: 0 20px;
  border-radius: 20px;
  background: rgba(19, 18, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 74, 0.12);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:12px;
    background:transparent;
    flex-shrink:0;
}

.logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.brand-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-primary);
}

.brand-text p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-top: 2px;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 140px 24px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1513104890138-7c749659a591?q=80&w=1600") center/cover;
  animation: subtleZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg-primary) 0%, rgba(10, 9, 8, 0.7) 40%, rgba(10, 9, 8, 0.3) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212, 168, 74, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 168, 74, 0.06) 0%, transparent 40%);
}

@keyframes subtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  background: rgba(212, 168, 74, 0.08);
  border: 1px solid rgba(212, 168, 74, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge span {
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.badge-icon {
  color: var(--gold-400);
  font-size: 8px;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 10vw, 88px);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero h2 em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(212, 168, 74, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(212, 168, 74, 0.45);
}

.hero-btn svg {
  transition: transform 0.3s ease;
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  width: 26px;
  height: 42px;
  border-radius: 100px;
  border: 2px solid rgba(212, 168, 74, 0.25);
  position: relative;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 100px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ================= CATEGORY TABS ================= */
.category-tabs {
  position: sticky;
  top: 84px;
  z-index: 99;
  padding: 16px 16px 16px;
  background: var(--bg-primary);
}

.tabs-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tabs-container::-webkit-scrollbar {
  display: none;
}

.tab {
  flex-shrink: 0;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1px solid rgba(212, 168, 74, 0.15);
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover {
  border-color: rgba(212, 168, 74, 0.3);
  color: var(--text-primary);
}

.tab.active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(212, 168, 74, 0.25);
}

/* ================= SEARCH ================= */
.search-area {
  padding: 8px 20px 20px;
}

.search-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

#searchInput {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border-radius: 16px;
  border: 1px solid rgba(212, 168, 74, 0.12);
  background: rgba(22, 20, 18, 0.8);
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#searchInput:focus {
  border-color: rgba(212, 168, 74, 0.3);
  box-shadow: 0 0 0 4px rgba(212, 168, 74, 0.08);
}

#searchInput::placeholder {
  color: var(--text-muted);
}

/* ================= MENU GRID ================= */
.menu-grid {
  padding: 24px 16px 140px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ================= PRODUCT CARD ================= */
.product-card {
  position: relative;
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 74, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
}

.product-card.show {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-card.featured,
.product-card.special,
.product-card.dessert {
  grid-column: span 2;
  min-height: 380px;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.95) 0%, rgba(10, 9, 8, 0.4) 50%, transparent 100%);
  pointer-events: none;
}

.card-body {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.card-body p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,.95);
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,.9);
    margin-top: 8px;
}

.card-body strong {
  display: inline-block;
  margin-top: 14px;
  font-size: 26px;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sizes {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.sizes span {
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(212, 168, 74, 0.12);
  border: 1px solid rgba(212, 168, 74, 0.2);
  color: var(--gold-300);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.25s ease;
}

.sizes span:hover {
  background: var(--gold-400);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge.gold {
  background: var(--gold-gradient);
}

/* ================= DRINKS CARD ================= */
.drinks-card {
  grid-column: span 2;
  padding: 28px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 74, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.drinks-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 168, 74, 0.1);
}

.drinks-head > span {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: var(--gold-gradient);
  box-shadow: 0 4px 20px rgba(212, 168, 74, 0.2);
}

.drinks-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
}

.drinks-head p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.drink-box {
  padding: 20px;
  border-radius: 20px;
  background: rgba(19, 18, 16, 0.6);
  border: 1px solid rgba(212, 168, 74, 0.08);
}

.drink-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(212, 168, 74, 0.2);
}

.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.drink-item:last-child {
  border-bottom: none;
}

.drink-item span {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.drink-item strong {
  min-width: 50px;
  text-align: center;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 700;
}

.drink-box.hot h3 {
  color: #e8a060;
}

.drink-box.hot strong {
  background: linear-gradient(135deg, #e8a060 0%, #c76a28 100%);
}

/* ================= FOOTER ================= */
.footer {
  background: var(--bg-secondary);
  text-align: center;
  padding: 60px 24px 140px;
  border-top: 1px solid rgba(212, 168, 74, 0.08);
}

.footer-content {
  max-width: 380px;
  margin: 0 auto;
}

.footer-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--bg-primary);
  box-shadow: 0 4px 30px rgba(212, 168, 74, 0.2);
}

.footer h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.footer-content > p {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-400);
  text-transform: uppercase;
}

.footer-tagline {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-divider {
  width: 60px;
  height: 2px;
  margin: 28px auto;
  background: var(--gold-gradient);
  border-radius: 100px;
}

.powered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.powered:hover {
  color: var(--text-secondary);
}

.powered strong {
  color: var(--gold-400);
  font-weight: 600;
}

/* ================= FLOATING BUTTONS ================= */
.floating-buttons {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.floating-buttons.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fab {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab:hover {
  transform: scale(1.08);
}

.phone-fab {
  background: #2d8f4e;
  color: white;
  box-shadow: 0 4px 20px rgba(45, 143, 78, 0.35);
}

.top-fab {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(212, 168, 74, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.top-fab.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .drinks-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card.featured,
  .product-card.special,
  .product-card.dessert {
    grid-column: span 1;
    min-height: 320px;
  }

  .drinks-card {
    grid-column: span 1;
    padding: 20px;
  }

  .hero h2 {
    font-size: 44px;
  }

  .hero p {
    font-size: 16px;
  }

  .topbar {
    top: 8px;
    left: 8px;
    right: 8px;
    height: 60px;
    padding: 0 16px;
    border-radius: 16px;
  }

  .category-tabs {
    top: 76px;
  }

  .logo {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .brand-text h1 {
    font-size: 16px;
  }

  .card-body h3 {
    font-size: 22px;
  }

  .card-body strong {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 16px 80px;
  }

  .hero-badge {
    padding: 6px 14px;
    gap: 8px;
  }

  .hero-badge span {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .hero h2 {
    font-size: 36px;
  }

  .hero-btn {
    padding: 16px 26px;
    font-size: 14px;
  }

  .tab {
    padding: 10px 18px;
    font-size: 13px;
  }

  .footer {
    padding: 50px 20px 120px;
  }
}

.drinks-card::before,
.drinks-card::after,
.drinks-grid::before,
.drinks-grid::after,
.drink-box::before,
.drink-box::after {
  display: none !important;
}

.drinks-card,
.drinks-grid,
.drink-box,
.drink-item {
  opacity: 1 !important;
  filter: none !important;
}

.drinks-card {
  background: linear-gradient(145deg, #151311, #0d0c0b) !important;
}

/* ================= HESAP SEPETİ ================= */

.cart-fab {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-weight: 800;
  position: relative;
}

.cart-fab .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #e63946;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-panel {
  position: fixed;
  right: 16px;
  bottom: 86px;
  width: min(380px, calc(100% - 32px));
  max-height: 70vh;
  background: rgba(19, 18, 16, 0.98);
  border: 1px solid rgba(212, 168, 74, 0.25);
  border-radius: 24px;
  z-index: 1000;
  box-shadow: 0 20px 70px rgba(0,0,0,.6);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

.cart-panel.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cart-header {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(212, 168, 74, 0.08);
  border-bottom: 1px solid rgba(212, 168, 74, 0.12);
}

.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
}

.cart-close {
  border: none;
  background: transparent;
  color: var(--gold-300);
  font-size: 28px;
  cursor: pointer;
}

.cart-items {
  padding: 14px;
  max-height: 42vh;
  overflow-y: auto;
}

.cart-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 28px 10px;
  font-size: 14px;
}

.cart-item {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  margin-bottom: 10px;
  border: 1px solid rgba(212,168,74,.08);
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-name {
  font-weight: 700;
  color: #fff;
}

.cart-item-price {
  color: var(--gold-300);
  font-weight: 700;
  white-space: nowrap;
}

.cart-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-weight: 900;
  cursor: pointer;
}

.cart-controls .remove-item {
  margin-left: auto;
  width: auto;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.cart-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(212,168,74,.12);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold-300);
}

.cart-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.add-cart-btn {
  margin-top: 12px;
  border: none;
  border-radius: 999px;
  padding: 10px 15px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(212,168,74,.25);
}

.size-cart-btn {
  cursor: pointer;
}

.drink-item {
  gap: 8px;
}

.drink-add-btn {
  border: none;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.card-body {
  right: 20px;
}

.card-body .add-cart-btn {
  float: right;
  margin-top: 12px;
  margin-left: 12px;
}

/* ================= İÇECEKLER SEPET DÜZENİ ================= */

.drink-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto 38px;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
}

.drink-item span {
  min-width: 0;
  font-size: 14px;
  line-height: 1.3;
  color: var(--text-secondary);
}

.drink-item strong {
  min-width: 58px;
  padding: 7px 10px;
  text-align: center;
  white-space: nowrap;
}

.drink-add-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  flex-shrink: 0;
}

.drinks-card {
  width: 100%;
  overflow: visible;
}

.drinks-head {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 480px) {
  .drinks-card {
    padding: 16px;
  }

  .drink-box {
    padding: 16px;
  }

  .drink-item {
    grid-template-columns: minmax(0, 1fr) 56px 34px;
    gap: 7px;
  }

  .drink-item span {
    font-size: 13px;
  }

  .drink-item strong {
    min-width: 54px;
    padding: 6px 7px;
    font-size: 12px;
  }
}

.brand{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.logo{
    width:300px;
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:none;
    border:none;
    box-shadow:none;
}

.logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.product-calorie {
  width: fit-content;
  margin-top: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(212, 168, 74, 0.25);
  border-radius: 999px;
  background: rgba(212, 168, 74, 0.12);
  color: #f3dfb0;
  font-size: 12px;
  font-weight: 700;
}

.product-card > img {
  cursor: zoom-in;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
}

.image-modal.show {
  display: flex;
}

.image-modal img {
  display: block;
  max-width: min(900px, 95vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  animation: imageZoomIn 0.25s ease;
}

.image-modal-close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #f4c86a;
  color: #111;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 100000;
}

@keyframes imageZoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ÜRÜN FOTOĞRAFI BÜYÜTME */

.image-zoom-card {
  position: relative;
}

.product-card > img {
  cursor: zoom-in;
}

.image-zoom-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 8;

  width: 38px;
  height: 38px;
  padding: 9px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 215, 128, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #ffffff;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.image-zoom-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-zoom-icon:hover {
  color: #111111;
  background: linear-gradient(135deg, #ffe29a, #d99d2b);
  transform: scale(1.08);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;
  background: rgba(0, 0, 0, 0.92);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.image-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-modal img {
  display: block;
  max-width: min(100%, 1000px);
  max-height: 88vh;

  border-radius: 18px;
  object-fit: contain;

  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.75);
  transform: scale(0.92);

  transition: transform 0.25s ease;
}

.image-modal.show img {
  transform: scale(1);
}

.image-modal-close {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 2;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;

  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .image-zoom-icon {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .image-modal {
    padding: 14px;
  }

  .image-modal img {
    max-height: 82vh;
    border-radius: 14px;
  }
}

html,
body {
    overflow-x: hidden;
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
}

img,
video,
button,
a {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}