/* ==========================================================================
   YEŞİLKÖŞE KAFE - TASARIM SİSTEMİ & STİLLER (CSS)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Renk Paleti - Doğal Yeşil & Ahşap Sıcaklığı */
  --primary-900: #0d2319;
  --primary-800: #1b382b;
  --primary-700: #2d6a4f;
  --primary-600: #40916c;
  --primary-500: #52b788;
  --primary-200: #b7e4c7;
  --primary-100: #d8f3dc;
  --primary-50:  #f0fdf4;

  --accent-gold: #d4a373;
  --accent-amber: #e9c46a;
  --accent-warm: #f4a261;
  --accent-red: #e63946;

  --neutral-900: #111827;
  --neutral-800: #1f2937;
  --neutral-700: #374151;
  --neutral-600: #4b5563;
  --neutral-400: #9ca3af;
  --neutral-200: #e5e7eb;
  --neutral-100: #f3f4f6;
  --neutral-50:  #f9fafb;

  --bg-gradient: linear-gradient(135deg, #0d2319 0%, #1b382b 50%, #2d6a4f 100%);
  --bg-light: #f4f7f5;
  --surface-card: #ffffff;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(27, 56, 43, 0.08);
  --shadow-lg: 0 16px 36px rgba(27, 56, 43, 0.14);
  --shadow-glow: 0 0 25px rgba(82, 183, 136, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--neutral-800);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile nav */
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-900);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* App Container */
#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   NAVIGATION BAR (WEB SİTESİ VE QR MENÜ ÜST ÇUBUK)
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.12);
  padding: 12px 24px;
  transition: var(--transition-normal);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-800);
  cursor: pointer;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-gradient);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.brand-title span {
  color: var(--primary-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 15px;
  color: var(--neutral-700);
  transition: var(--transition-fast);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-800);
  background: var(--primary-100);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Fixed Bottom Nav */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--neutral-200);
  padding: 8px 16px;
  justify-content: space-around;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.mobile-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--neutral-600);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-nav-btn.active {
  color: var(--primary-700);
  background: var(--primary-100);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--bg-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
  background: var(--primary-100);
  color: var(--primary-800);
}

.btn-secondary:hover {
  background: var(--primary-200);
}

.btn-outline {
  border: 2px solid var(--primary-700);
  color: var(--primary-800);
}

.btn-outline:hover {
  background: var(--primary-700);
  color: #ffffff;
}

.btn-admin {
  background: var(--primary-900);
  color: var(--accent-gold);
  border: 1px solid rgba(212, 163, 115, 0.3);
}

.btn-admin:hover {
  background: #000;
  color: #fff;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

/* ==========================================================================
   HERO SECTION (WEB SİTESİ MANŞET)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 82vh;
  background: var(--bg-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(82, 183, 136, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-100);
  margin-bottom: 24px;
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(183, 228, 199, 0.1); }
  100% { box-shadow: 0 0 25px rgba(183, 228, 199, 0.4); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title span {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #e9c46a, #d4a373);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--primary-100);
  max-width: 720px;
  margin: 0 auto 36px auto;
  opacity: 0.9;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Cards Grid */
.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
  width: 100%;
}

.feature-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: left;
  transition: var(--transition-normal);
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-amber);
}

.feature-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-desc {
  color: var(--primary-100);
  font-size: 14px;
  opacity: 0.85;
}

/* ==========================================================================
   DIGITAL QR MENU PAGE (MÜŞTERİ MENÜ SAYFASI - MOBİL ÖNCELİKLİ)
   ========================================================================== */

.qr-menu-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 16px;
  width: 100%;
  min-height: 100vh;
}

.qr-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-card);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  border: 1px solid var(--neutral-200);
}

.back-to-site-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--primary-800);
  background: var(--primary-100);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.qr-header {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  border: 1px solid rgba(45, 106, 79, 0.1);
  position: relative;
  overflow: hidden;
}

.qr-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--bg-gradient);
}

.qr-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.table-badge {
  background: var(--primary-100);
  color: var(--primary-800);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Search Bar */
.search-box {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-full);
  font-size: 15px;
  background: var(--neutral-50);
  transition: var(--transition-fast);
  color: var(--neutral-900);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(64, 145, 108, 0.15);
}

.search-icon-inside {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-400);
}

/* Category Tabs (Horizontally Scrollable) */
.category-scroller {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 24px;
  scrollbar-width: none;
}

.category-scroller::-webkit-scrollbar {
  display: none;
}

.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface-card);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  color: var(--neutral-700);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.cat-chip:hover {
  border-color: var(--primary-600);
  color: var(--primary-800);
}

.cat-chip.active {
  background: var(--bg-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

/* Products Grid / Feed */
.products-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  padding: 14px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  transition: var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.product-card.out-of-stock {
  opacity: 0.65;
  filter: grayscale(0.2);
}

.product-img-wrapper {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--neutral-100);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.stock-tag {
  position: absolute;
  bottom: 6px;
  left: 6px;
  right: 6px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  padding: 2px 4px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.product-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-900);
}

.product-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-700);
  white-space: nowrap;
}

.product-desc {
  font-size: 13px;
  color: var(--neutral-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 4px 0 8px 0;
}

.product-tags-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tag-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--primary-100);
  color: var(--primary-800);
}

.tag-badge.special {
  background: #fef3c7;
  color: #92400e;
}

/* Garson Çağır Floating Action Bar */
.call-waiter-bar {
  position: fixed;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  width: calc(100% - 32px);
  max-width: 500px;
  background: var(--primary-900);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 32px rgba(13, 35, 25, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(82, 183, 136, 0.3);
}

/* ==========================================================================
   ADMIN PANEL (YÖNETİCİ PANELİ)
   ========================================================================== */

.admin-layout {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 24px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  background: var(--surface-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
}

.admin-title-group h1 {
  font-size: 28px;
  color: var(--primary-900);
}

.admin-title-group p {
  color: var(--neutral-600);
  font-size: 14px;
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--surface-card);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--primary-100);
  color: var(--primary-800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-900);
}

.stat-label {
  font-size: 13px;
  color: var(--neutral-600);
  font-weight: 600;
}

/* Admin Tabs & Toolbar */
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  background: var(--neutral-200);
  padding: 4px;
  border-radius: var(--radius-full);
}

.admin-tab {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  color: var(--neutral-700);
  transition: var(--transition-fast);
}

.admin-tab.active {
  background: var(--surface-card);
  color: var(--primary-800);
  box-shadow: var(--shadow-sm);
}

/* Admin Table / Product List */
.admin-table-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  background: var(--neutral-50);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--neutral-700);
  border-bottom: 1px solid var(--neutral-200);
}

.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--neutral-100);
  font-size: 14px;
  vertical-align: middle;
}

.data-table tr:hover td {
  background: var(--primary-50);
}

.table-product-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.stock-toggle-btn {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}

.stock-toggle-btn.in-stock {
  background: #dcfce7;
  color: #166534;
}

.stock-toggle-btn.out-stock {
  background: #fee2e2;
  color: #991b1b;
}

.action-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-100);
  color: var(--neutral-700);
  transition: var(--transition-fast);
}

.icon-btn:hover {
  background: var(--primary-100);
  color: var(--primary-800);
}

.icon-btn.delete:hover {
  background: #fee2e2;
  color: var(--accent-red);
}

/* Modals & Forms */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--neutral-200);
}

.modal-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--neutral-700);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition-fast);
  color: var(--neutral-900);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.preset-images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.preset-img-option {
  height: 54px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
}

.preset-img-option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preset-img-option.selected {
  border-color: var(--primary-600);
  box-shadow: var(--shadow-glow);
}

/* PIN Auth Card */
.pin-card {
  max-width: 400px;
  margin: 80px auto;
  background: var(--surface-card);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--neutral-200);
}

.pin-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--primary-100);
  color: var(--primary-800);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.pin-input {
  font-size: 28px;
  letter-spacing: 12px;
  text-align: center;
  font-weight: 800;
  max-width: 220px;
  margin: 0 auto 20px auto;
}

/* ==========================================================================
   SECTIONS & FOOTER
   ========================================================================== */

.section {
  padding: 80px 24px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title-wrap {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  color: var(--primary-600);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--primary-900);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 35, 25, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* Footer */
.footer {
  background: var(--primary-900);
  color: var(--primary-100);
  padding: 60px 24px 30px 24px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col p {
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-bottom-nav {
    display: flex;
  }
  .section {
    padding: 50px 16px;
  }
  .product-card {
    grid-template-columns: 84px 1fr;
    padding: 10px;
  }
  .product-img-wrapper {
    width: 84px;
    height: 84px;
  }
}
