/*
  Zeytinlik Şarap Evi — public site theme
  WoodMart "Drinks" demosunun gerçek tasarım sistemine (açık/beyaz zemin, amber
  vurgu #f2ad44, Jost gövde + Playfair Display başlık + Great Vibes el yazısı,
  köşeler keskin/0px) birebir sadık, elle yazılmış, tamamen yerel bir stil
  katmanı. Hiçbir harici font/CDN/demo görseline bağımlı değildir — fontlar
  tema/fonts/ altında yerel olarak barındırılıyor.
*/

@import url('../fonts/fonts.css');

:root {
  --sv-bg: #ffffff;
  --sv-bg-alt: #f7f7f7;
  --sv-bg-alt-2: #f1f1f1;
  --sv-title: #242424;
  --sv-text: #767676;
  --sv-text-muted: #a5a5a5;
  --sv-accent: #f2ad44;
  --sv-accent-dark: #e0972b;
  --sv-script: #f2ad44;
  --sv-line: rgba(0, 0, 0, 0.08);
  --sv-line-strong: rgba(0, 0, 0, 0.12);
  --sv-white: #ffffff;
  --sv-radius: 0px;
  --sv-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  --sv-container: 1222px;
  --sv-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sv-font-body: 'Jost', Arial, Helvetica, sans-serif;
  --sv-font-script: 'Great Vibes', cursive;
  --sv-header-h: 90px;

  /* Koyu bölümler (hero, footer) için ayrı bir palet */
  --sv-dark-bg: #17130f;
  --sv-dark-bg-alt: #1c1713;
  --sv-dark-line: rgba(242, 173, 68, 0.2);
  --sv-cream: #f6f1e7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.sv-body {
  margin: 0;
  background: var(--sv-bg);
  color: var(--sv-text);
  font-family: var(--sv-font-body);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--sv-font-display); font-weight: 400; margin: 0 0 .5em; color: var(--sv-title); }
p { margin: 0 0 1em; }
.sv-container { max-width: var(--sv-container); margin: 0 auto; padding: 0 15px; }
.sv-section { padding: 90px 0; position: relative; }
.sv-section--alt { background: var(--sv-bg-alt); }
.sv-section--tight { padding: 60px 0; }
.sv-section--dark { background: var(--sv-dark-bg); color: rgba(255,255,255,.65); }

/* ---------- Kicker / başlık blokları (Great Vibes el yazısı) ---------- */
.sv-kicker {
  display: block;
  color: var(--sv-script);
  font-family: var(--sv-font-script);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.2;
}
.sv-section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.sv-section-head.sv-align-left { text-align: left; margin-left: 0; }
.sv-title { font-size: clamp(24px, 3vw, 34px); line-height: 1.25; font-weight: 400; }
.sv-lead { color: var(--sv-text); font-size: 16px; }

/* ---------- Butonlar ---------- */
.sv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid var(--sv-accent);
  color: var(--sv-title);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--sv-font-body);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--sv-radius);
  transition: all .25s ease;
  background: transparent;
  cursor: pointer;
}
.sv-btn:hover { background: var(--sv-accent); color: var(--sv-white); }
.sv-btn--solid { background: var(--sv-accent); color: var(--sv-white); border-color: var(--sv-accent); }
.sv-btn--solid:hover { background: var(--sv-accent-dark); border-color: var(--sv-accent-dark); }
.sv-btn--sm { padding: 9px 20px; font-size: 12px; }
.sv-btn--on-dark { border-color: rgba(255,255,255,.4); color: #fff; }
.sv-btn--on-dark:hover { background: var(--sv-accent); border-color: var(--sv-accent); }
.sv-icon { width: 18px; height: 18px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; }

/* ---------- Header ---------- */
.sv-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--sv-header-h);
  display: flex; align-items: center;
  background: var(--sv-white);
  border-bottom: 1px solid var(--sv-line);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease, border-color .3s ease;
}
.sv-header .sv-logo,
.sv-header .sv-nav a,
.sv-header .sv-burger span { color: var(--sv-title); }
.sv-header .sv-burger span { background: var(--sv-title); }

/* Ana sayfa: hero üstünde saydam + beyaz metin, scroll sonrası beyaz zemine döner */
body.sv-home .sv-header:not(.is-scrolled) {
  background: linear-gradient(to bottom, rgba(10,8,7,.55), transparent);
  border-bottom-color: transparent;
}
body.sv-home .sv-header:not(.is-scrolled) .sv-logo,
body.sv-home .sv-header:not(.is-scrolled) .sv-nav a,
body.sv-home .sv-header:not(.is-scrolled) .sv-burger span { color: #fff; }
body.sv-home .sv-header:not(.is-scrolled) .sv-burger span { background: #fff; }

.sv-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  height: 70px;
}
.sv-header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.sv-logo { font-family: var(--sv-font-display); font-size: 24px; letter-spacing: .01em; transition: color .3s ease; }
.sv-logo span { color: var(--sv-accent); }
.sv-nav { display: flex; gap: 32px; }
.sv-nav a {
  font-size: 13px; text-transform: uppercase; letter-spacing: .06em; font-weight: 500;
  position: relative; padding: 6px 0; transition: color .3s ease;
}
.sv-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--sv-accent); transition: width .25s ease;
}
.sv-nav a:hover::after, .sv-nav a.is-active::after { width: 100%; }
.sv-nav a.is-active { color: var(--sv-accent) !important; }
.sv-header-actions { display: flex; align-items: center; gap: 18px; }
.sv-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.sv-burger span { width: 24px; height: 2px; display: block; transition: background .3s ease; }

/* Mobil menü */
.sv-mobile-nav {
  position: fixed; inset: 0; background: #17130f; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transform: translateY(-100%); transition: transform .35s ease; visibility: hidden;
}
.sv-mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.sv-mobile-nav a { font-family: var(--sv-font-display); font-size: 24px; color: #fff; }
.sv-mobile-nav a.is-active { color: var(--sv-accent); }
.sv-mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; }

/* ---------- Hero / Slider (koyu görsel zemin — tek istisna) ---------- */
.sv-hero {
  position: relative; height: 100vh; min-height: 560px; overflow: hidden; background: var(--sv-dark-bg);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.sv-hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 2s ease; display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.sv-hero-slide.is-active { opacity: 1; }
.sv-hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,8,7,.88) 0%, rgba(10,8,7,.72) 40%, rgba(10,8,7,.45) 70%, rgba(10,8,7,.68) 100%);
}
.sv-hero-content { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; color: rgba(255,255,255,.85); }
.sv-hero-content .sv-kicker { color: #ffd98a; font-size: 36px; }
.sv-hero-title { font-size: clamp(38px, 6vw, 64px); line-height: 1.12; margin-bottom: 22px; color: #fff; font-weight: 400; }
.sv-hero-text { color: rgba(255,255,255,.7); font-size: 19px; max-width: 500px; margin-bottom: 30px; }
.sv-hero-float {
  position: absolute; z-index: 4; right: 6%; bottom: 8%; width: min(32%, 380px);
  display: flex; align-items: center; justify-content: center;
}
.sv-hero-float img {
  width: 100%; height: auto; max-height: 460px; object-fit: contain; display: block;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.45));
}

/* Kademeli giriş animasyonu — arka plan (slayt kendi opacity geçişiyle) önce,
   sonra yazılar tek tek, en son yüzen ürün görseli; hepsi TEK BLOK olarak
   değil ayrı ayrı, gecikmeli sırayla belirir. */
.sv-hero-content .sv-kicker,
.sv-hero-title,
.sv-hero-text,
.sv-hero-content > .sv-btn,
.sv-hero-float { opacity: 0; }
.sv-hero-slide.is-active .sv-hero-content .sv-kicker { animation: sv-hero-in .8s ease .35s forwards; }
.sv-hero-slide.is-active .sv-hero-title { animation: sv-hero-in .8s ease .55s forwards; }
.sv-hero-slide.is-active .sv-hero-text { animation: sv-hero-in .8s ease .75s forwards; }
.sv-hero-slide.is-active .sv-hero-content > .sv-btn { animation: sv-hero-in .8s ease .95s forwards; }
.sv-hero-slide.is-active .sv-hero-float { animation: sv-hero-in-float 1s ease 1.15s forwards; }
@keyframes sv-hero-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes sv-hero-in-float { from { opacity: 0; transform: translateY(20px) scale(.92); } to { opacity: 1; transform: none; } }
.sv-hero-dots { position: absolute; z-index: 3; left: 50%; bottom: 60px; transform: translateX(-50%); display: flex; gap: 10px; }
.sv-hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--sv-accent); background: transparent; cursor: pointer; padding: 0; }
.sv-hero-dots button.is-active { background: var(--sv-accent); }
.sv-hero-arrows button {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
  background: rgba(20,17,16,.35); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.sv-hero-arrows .sv-prev { left: 24px; } .sv-hero-arrows .sv-next { right: 24px; }
.sv-scroll-cue {
  position: absolute; z-index: 3; left: 50%; bottom: 86px; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.sv-scroll-cue::after { content:''; width: 1px; height: 34px; background: var(--sv-accent); animation: sv-scroll-pulse 1.8s infinite; }
@keyframes sv-scroll-pulse { 0%,100%{opacity:.2} 50%{opacity:1} }

/* ---------- Icon-feature şeridi (WoodMart "Most Popular Cocktails" info-box deseni) ---------- */
.sv-feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--sv-line); border-bottom: 1px solid var(--sv-line); }
.sv-feature-item { display: flex; align-items: center; gap: 16px; padding: 30px 24px; border-right: 1px solid var(--sv-line); text-align: right; flex-direction: row-reverse; }
.sv-feature-item:last-child { border-right: 0; }
.sv-feature-item .sv-icon { width: 34px; height: 34px; color: var(--sv-accent); stroke-width: 1.2; flex: none; }
.sv-feature-title { font-family: var(--sv-font-display); font-size: 18px; color: var(--sv-title); margin-bottom: 2px; }
.sv-feature-text { font-size: 13px; color: var(--sv-text-muted); }

/* ---------- Hakkımızda ---------- */
.sv-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sv-about-media { position: relative; }
.sv-about-media img { border-radius: 24px; box-shadow: var(--sv-shadow); }
.sv-about-media .sv-about-media-sm {
  position: absolute; width: 46%; bottom: -32px; right: -32px; border: 6px solid var(--sv-bg);
  border-radius: var(--sv-radius); box-shadow: var(--sv-shadow);
}
.sv-stats-row { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.sv-stat b { display: block; font-family: var(--sv-font-display); font-size: 32px; color: var(--sv-accent); font-weight: 400; }
.sv-stat span { color: var(--sv-text-muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Kategori kartları ---------- */
.sv-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sv-cat-card {
  position: relative; aspect-ratio: 3/4; border-radius: 18px; overflow: hidden;
  background: var(--sv-bg-alt-2) center/cover no-repeat; display: flex; align-items: flex-end; padding: 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.sv-cat-card:hover { transform: translateY(-6px); box-shadow: 0 26px 40px rgba(0,0,0,.28); }
.sv-cat-card span { position: relative; z-index: 1; font-family: var(--sv-font-display); font-size: 20px; color: var(--sv-title); font-weight: 400; }
.sv-cat-card em {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px;
  font-style: normal; color: var(--sv-accent); background: none; border: none;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  padding: 0; border-bottom: 1px solid rgba(242,173,68,.5);
  padding-bottom: 3px; transition: border-color .3s ease, gap .3s ease;
}
.sv-cat-card:hover em { border-color: var(--sv-accent); gap: 10px; }
.sv-cat-card em::after { content: '→'; font-size: 13px; line-height: 1; }

/* ---------- Ürün kartları (WoodMart .wd-product deseni: görsel → başlık → kategori → fiyat) ---------- */
.sv-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sv-product-card { border-radius: var(--sv-radius); overflow: hidden; background: var(--sv-bg); transition: box-shadow .3s ease; text-align: center; }
.sv-product-card:hover { box-shadow: var(--sv-shadow); }
.sv-product-media { aspect-ratio: 1/1; background: var(--sv-bg-alt) center/contain no-repeat; position: relative; }
.sv-product-badge { position: absolute; top: 10px; left: 10px; background: var(--sv-accent); color: #fff; font-size: 10.5px; font-weight: 600; padding: 3px 9px; border-radius: 2px; text-transform: uppercase; letter-spacing: .05em; }
.sv-product-body { padding: 18px 10px; }
.sv-product-name { font-family: var(--sv-font-display); font-size: 16px; font-weight: 400; color: var(--sv-title); margin-bottom: 6px; }
.sv-product-cat { color: var(--sv-text-muted); font-size: 12px; margin-bottom: 8px; }
.sv-product-desc { color: var(--sv-text-muted); font-size: 13px; margin-bottom: 8px; }
.sv-product-price { color: var(--sv-accent); font-weight: 600; font-size: 15px; }
.sv-product-price small { color: var(--sv-text-muted); font-weight: 400; text-decoration: line-through; margin-left: 8px; }

/* ---------- Menü sayfası (akordiyon) ---------- */
.sv-menu-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; position: relative; z-index: 5; }
.sv-menu-pill {
  border: 1px solid var(--sv-line-strong); color: var(--sv-text); padding: 9px 18px; border-radius: var(--sv-radius);
  font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; background: var(--sv-bg); cursor: pointer;
}
.sv-menu-pill.is-active, .sv-menu-pill:hover { color: #fff; background: var(--sv-accent); border-color: var(--sv-accent); }
.sv-menu-cat { border: 1px solid var(--sv-line-strong); border-radius: var(--sv-radius); margin-bottom: 16px; overflow: hidden; }
.sv-menu-cat-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; background: var(--sv-bg-alt); }
.sv-menu-cat-head h3 { margin: 0; font-size: 20px; font-weight: 400; display: flex; align-items: center; gap: 12px; color: var(--sv-title); }
.sv-menu-cat-head .sv-icon { color: var(--sv-accent); width: 22px; height: 22px; }
.sv-menu-cat-chevron { transition: transform .25s ease; color: var(--sv-accent); }
.sv-menu-cat.is-open .sv-menu-cat-chevron { transform: rotate(180deg); }
.sv-menu-cat-body { padding: 8px 24px 24px; }
.sv-menu-cat-body.sv-collapsed { display: none !important; }
.sv-menu-item { display: flex; gap: 16px; padding: 15px 0; border-bottom: 1px dashed var(--sv-line); align-items: center; }
.sv-menu-item:last-child { border-bottom: 0; }
.sv-menu-item-thumb { width: 60px; height: 60px; border-radius: var(--sv-radius); object-fit: cover; background: var(--sv-bg-alt-2); flex: none; }
.sv-menu-item-body { flex: 1; }
.sv-menu-item-name { font-family: var(--sv-font-display); font-size: 16px; font-weight: 400; color: var(--sv-title); }
.sv-menu-item-desc { color: var(--sv-text-muted); font-size: 13px; margin-top: 2px; }
.sv-menu-item-price { color: var(--sv-accent); font-weight: 600; white-space: nowrap; }
.sv-menu-pdf-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 36px; }

/* ---------- Etkinlik kartları ---------- */
.sv-event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sv-event-card { border: 1px solid var(--sv-line); border-radius: var(--sv-radius); overflow: hidden; background: var(--sv-bg); }
.sv-event-media { aspect-ratio: 4/3; background: var(--sv-bg-alt-2) center/cover no-repeat; position: relative; }
.sv-event-date {
  position: absolute; top: 14px; left: 14px; background: #fff; border: 1px solid var(--sv-line-strong);
  color: var(--sv-title); text-align: center; padding: 8px 12px; line-height: 1.1;
}
.sv-event-date b { display: block; font-size: 19px; color: var(--sv-accent); font-family: var(--sv-font-display); font-weight: 400; }
.sv-event-date span { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--sv-text-muted); }
.sv-event-body { padding: 22px; }
.sv-event-time { color: var(--sv-accent); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.sv-event-title { font-family: var(--sv-font-display); font-size: 19px; font-weight: 400; margin-bottom: 8px; color: var(--sv-title); }
.sv-event-desc { color: var(--sv-text-muted); font-size: 13.5px; }

/* ---------- Sanatçılar ---------- */
.sv-artist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sv-artist-card { text-align: center; }
.sv-artist-photo { aspect-ratio: 1/1; border-radius: 50%; background: var(--sv-bg-alt-2) center/cover no-repeat; margin: 0 auto 16px; border: 1px solid var(--sv-line-strong); }
.sv-artist-name { font-family: var(--sv-font-display); font-size: 16px; font-weight: 400; color: var(--sv-title); }
.sv-artist-role { color: var(--sv-accent); font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; }
.sv-artist-social { display: flex; gap: 10px; justify-content: center; margin-top: 10px; }
.sv-artist-social a { width: 32px; height: 32px; border: 1px solid var(--sv-line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--sv-text); }
.sv-artist-social a:hover { border-color: var(--sv-accent); color: var(--sv-accent); }

/* ---------- Menüler (Şarap / Kokteyl / Bira görsel menü kartları) ---------- */
.sv-menu-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.sv-menu-showcase-item {
  display: block; background: var(--sv-bg); border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius); overflow: hidden; box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease; cursor: zoom-in;
}
.sv-menu-showcase-item:hover { transform: translateY(-6px); box-shadow: var(--sv-shadow); }
.sv-menu-showcase-item img { width: 100%; height: auto; display: block; }
.sv-menu-showcase-caption {
  display: block; text-align: center; padding: 16px 12px; font-family: var(--sv-font-display);
  font-size: 18px; color: var(--sv-title); border-top: 1px solid var(--sv-line); background: var(--sv-bg-alt);
}

/* ---------- Galeri ---------- */
.sv-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.sv-gallery-item { aspect-ratio: 1/1; border-radius: var(--sv-radius); overflow: hidden; position: relative; }
.sv-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sv-gallery-item:hover img { transform: scale(1.08); }

/* ---------- İletişim ---------- */
.sv-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.sv-contact-info-item { display: flex; gap: 16px; margin-bottom: 22px; }
.sv-contact-info-item .sv-icon { color: var(--sv-accent); width: 20px; height: 20px; margin-top: 2px; }
.sv-contact-info-item h4 { font-size: 14px; margin-bottom: 4px; color: var(--sv-title); font-family: var(--sv-font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.sv-contact-info-item p { color: var(--sv-text); margin: 0; font-size: 14.5px; }
.sv-map-wrap { border-radius: var(--sv-radius); overflow: hidden; border: 1px solid var(--sv-line); height: 100%; min-height: 320px; }
.sv-map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.sv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.sv-input, .sv-textarea {
  width: 100%; background: var(--sv-bg-alt); border: 1px solid var(--sv-line-strong); color: var(--sv-title);
  padding: 13px 16px; border-radius: var(--sv-radius); font-family: var(--sv-font-body); font-size: 14px;
}
.sv-input::placeholder, .sv-textarea::placeholder { color: var(--sv-text-muted); }
.sv-input:focus, .sv-textarea:focus { outline: none; border-color: var(--sv-accent); }
.sv-textarea { resize: vertical; min-height: 130px; }

/* ---------- Footer (koyu, WoodMart footer deseniyle aynı zıtlık) ---------- */
.sv-footer { background: var(--sv-dark-bg); padding: 76px 0 26px; color: rgba(255,255,255,.65); }
.sv-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.sv-footer h5 { color: #fff; font-family: var(--sv-font-display); font-size: 17px; font-weight: 400; margin-bottom: 20px; }
.sv-footer ul { list-style: none; margin: 0; padding: 0; }
.sv-footer li { margin-bottom: 10px; }
.sv-footer a { color: rgba(255,255,255,.6); font-size: 14px; }
.sv-footer a:hover { color: var(--sv-accent); }
.sv-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.sv-footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.sv-footer-social a:hover { border-color: var(--sv-accent); }
.sv-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,.45); }

/* ---------- WhatsApp yüzen buton ---------- */
.sv-whatsapp-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.sv-whatsapp-fab svg { width: 27px; height: 27px; fill: #fff; }

/* ---------- 18+ Yaş doğrulama katmanı ---------- */
.sv-age-gate { position: fixed; inset: 0; z-index: 500; background: rgba(10,8,7,.92); display: flex; align-items: center; justify-content: center; padding: 24px; }
.sv-age-gate[hidden] { display: none; }
.sv-age-gate-box { max-width: 420px; text-align: center; color: #fff; }
.sv-age-gate-box .sv-kicker { color: #ffd98a; justify-content: center; }
.sv-age-gate-box h2 { color: #fff; font-size: 28px; margin-bottom: 14px; }
.sv-age-gate-box p { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 30px; }
.sv-age-gate-actions { display: flex; gap: 14px; justify-content: center; }

/* ---------- Reveal animasyonu ---------- */
.sv-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.sv-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Sayfa üst başlık (iç sayfalar) ---------- */
.sv-page-header { padding: 160px 0 60px; text-align: center; background: var(--sv-bg-alt); border-bottom: 1px solid var(--sv-line); }
.sv-page-header .sv-title { margin-bottom: 8px; color: var(--sv-title); }
.sv-breadcrumb { color: var(--sv-text-muted); font-size: 13px; }
.sv-breadcrumb a { color: var(--sv-accent); }

/* ---------- Genel içerik (Hakkımızda vb.) ---------- */
.sv-prose { color: var(--sv-text); font-size: 16px; max-width: 780px; margin: 0 auto; }
.sv-prose h2, .sv-prose h3 { margin-top: 1.4em; color: var(--sv-title); }
.sv-prose img { border-radius: var(--sv-radius); margin: 24px 0; }

/* ---------- Empty state ---------- */
.sv-empty { text-align: center; color: var(--sv-text-muted); padding: 40px 0; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1100px) {
  .sv-cat-grid, .sv-product-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-menu-showcase { grid-template-columns: repeat(2, 1fr); }
  .sv-event-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-artist-grid { grid-template-columns: repeat(3, 1fr); }
  .sv-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .sv-about-grid, .sv-contact-grid { grid-template-columns: 1fr; }
  .sv-footer-grid { grid-template-columns: 1fr 1fr; }
  .sv-feature-row { grid-template-columns: repeat(2, 1fr); }
  .sv-feature-item:nth-child(2) { border-right: 0; }
}
@media (max-width: 782px) {
  .sv-nav, .sv-header-actions .sv-btn { display: none; }
  .sv-burger { display: flex; }
  .sv-section { padding: 60px 0; }
  .sv-cat-grid, .sv-product-grid, .sv-event-grid, .sv-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sv-menu-showcase { grid-template-columns: 1fr; gap: 20px; }
  .sv-artist-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sv-form-row { grid-template-columns: 1fr; }
  .sv-hero-arrows { display: none; }
  .sv-about-media .sv-about-media-sm { width: 55%; right: -14px; bottom: -20px; border-width: 4px; }
  .sv-menu-pills { position: static; }
  .sv-feature-row { grid-template-columns: 1fr; }
  .sv-feature-item { border-right: 0 !important; border-bottom: 1px solid var(--sv-line); flex-direction: row; text-align: left; }
}
@media (max-width: 480px) {
  .sv-cat-grid, .sv-product-grid, .sv-event-grid, .sv-gallery-grid, .sv-artist-grid { grid-template-columns: 1fr 1fr; }
  .sv-container { padding: 0 16px; }
  .sv-page-header { padding: 140px 0 50px; }
}
