@font-face {
  font-family: 'CustomBodyFont';
  src: url('../ff555060b21155cc-s.p.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple: #4b2e64;        /* header / ana mor */
  --purple-video: #481e55;  /* video arka planı ile eşleşen */
  --purple-mid: #5a3e7a;
  --purple-deep: #341c4b;
  --purple-dark: #1e0f33;   /* footer */
  --cream: #f5eddf;
  --cream-soft: #efe4d0;
  --orange: #e8a33d;
  --white: #ffffff;
  --ink: #2a1840;
  --radius: 18px;
  --header-h: 84px;
  --font-title: "Zilla Slab", "Georgia", serif;
  --font-body: "CustomBodyFont", system-ui, -apple-system, sans-serif;
  --font: var(--font-body);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.logo,
.eyebrow,
.btn,
.marquee-track {
  font-family: var(--font-title);
}

body.locked { overflow: hidden; }

img, video { display: block; max-width: 100%; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ---------- Tipografi ---------- */

.section-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--purple);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.title-light { color: var(--cream); }
.title-light em { color: var(--orange); }

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}

.eyebrow-light { color: var(--orange); }

.lead { margin-bottom: 1.1rem; max-width: 46ch; margin-left: auto; margin-right: auto; }

/* ---------- Butonlar ---------- */

.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 2.1rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--purple);
  color: var(--cream);
  margin-top: 0.8rem;
}

.btn-primary:hover {
  background: var(--orange);
  color: var(--purple-dark);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.solid {
  background: var(--purple);
  box-shadow: 0 6px 24px rgba(30, 15, 51, 0.35);
}

.header-inner {
  width: min(1280px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.main-nav a {
  font-family: var(--font-title);
  font-style: italic;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  transition: right 0.25s ease;
}

.main-nav a:hover::after { right: 0; }

.mobile-insta-icon {
  display: none;
}

.header-right { display: flex; align-items: center; gap: 1rem; }

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--purple-dark);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.flag-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d81e30;
  color: #fff;
  font-size: 0.55rem;
  letter-spacing: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  background: var(--purple-video);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: 
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.26) 0%, transparent 40%),
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.26) 0%, transparent 40%),
    radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.26) 0%, transparent 40%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.26) 0%, transparent 40%),
    rgba(0, 0, 0, 0.1);
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-left: clamp(1.5rem, 8vw, 9rem);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 2;
}

.hero-overlay.hidden {
  opacity: 0;
  transform: translateY(-24px);
}

.hero-title-img {
  width: clamp(280px, 60vw, 800px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 30px rgba(30, 15, 51, 0.45));
}

.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.scroll-hint.hidden { opacity: 0; }

.scroll-hint-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.scroll-hint-arrow {
  font-size: 1.4rem;
  animation: bounce 1.6s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- Zigzag ayraç ---------- */

.zigzag {
  height: 92px;
  background-color: var(--cream);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' width='72' height='46' viewBox='0 0 72 46'%3E%3Cpath d='M0 0 H72 L36 46 Z' fill='%234b2e64'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: 288px 92px;
}

.zigzag-hero { margin-top: -1px; }

.zigzag-story {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' width='72' height='46' viewBox='0 0 72 46'%3E%3Cpath d='M0 0 H72 L36 46 Z' fill='%234a1f60'/%3E%3C/svg%3E");
  margin-top: -92px;
  position: relative;
  z-index: 10;
}

.zigzag-gallery-bottom {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' width='72' height='46' viewBox='0 0 72 46'%3E%3Cpath d='M0 0 H72 L36 46 Z' fill='%237c5292'/%3E%3C/svg%3E");
}

.zigzag-footer {
  background-color: var(--purple-deep);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' width='72' height='46' viewBox='0 0 72 46'%3E%3Cpath d='M0 0 H72 L36 46 Z' fill='%231e0f33'/%3E%3C/svg%3E");
}

/* ---------- Story (video + yazı) ---------- */

.story {
  background: url("../bancgweis.webp") center/cover no-repeat;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.story-grid-reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 60px rgba(42, 24, 64, 0.28);
  background: var(--purple-video);
}

.frame-border {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}
.frame-top {
  top: 1px; left: 0; width: 100%; height: auto;
  transform: translateY(-100%);
}
.frame-bottom {
  bottom: 1px; left: 0; width: 100%; height: auto;
  transform: translateY(100%);
}
.frame-left {
  top: 0; left: 1px; height: 100%; width: auto;
  transform: translateX(-100%);
}
.frame-right {
  top: 0; right: 1px; height: 100%; width: auto;
  transform: translateX(100%);
}

.video-frame video,
.video-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

.video-caption {
  margin-top: 0.9rem;
  font-style: italic;
  font-weight: 500;
  color: var(--purple-mid);
  text-align: right;
  font-size: 0.95rem;
}

/* ---------- Marquee ---------- */

.marquee {
  background: #240931;
  color: #f5eee3;
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-weight: 700;
  font-style: italic;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Galeri ---------- */

.gallery {
  background: linear-gradient(to bottom, #4a1f60, #7c5292);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.gallery-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.gallery-asset-4 {
  left: -160px;
  top: 10%;
  width: 400px;
  transform: rotate(15deg);
}

.gallery-asset-1 {
  right: -140px;
  top: 5%;
  width: 380px;
  transform: rotate(-20deg);
}

.gallery-asset-2 {
  left: -120px;
  bottom: 8%;
  width: 340px;
  transform: rotate(-10deg);
}

.gallery-asset-3 {
  right: -150px;
  bottom: 25%;
  width: 420px;
  transform: rotate(25deg);
}

.gallery .container {
  position: relative;
  z-index: 2;
}

.gallery-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.g-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--purple-deep);
  box-shadow: 0 14px 34px rgba(30, 15, 51, 0.35);
  text-decoration: none;
  aspect-ratio: 4 / 5;
}

.g-span-2 {
  grid-column: span 2;
  aspect-ratio: auto;
}

.g-span-2-desk {
  grid-column: span 2;
  aspect-ratio: auto;
}

.g-hide-mob {
  display: block;
}

.g-hide-desk {
  display: none;
}

.g-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 9, 49, 0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.g-overlay .insta-icon {
  font-size: 1.6rem;
}

.g-item:hover img { transform: scale(1.08); }

/* ---------- SSS ---------- */

.faq {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

/* Decorative plants in FAQ */
.faq-plant {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.faq-plant-left-1 {
  top: 4%;
  left: -50px;
  width: min(240px, 25vw);
  transform: rotate(-15deg);
}

.faq-plant-right-1 {
  top: 4%;
  right: -50px;
  width: min(270px, 28vw);
  transform: none;
}

.faq-plant-left-2 {
  bottom: 8%;
  left: -60px;
  width: min(270px, 28vw);
  transform: scaleX(-1);
}

.faq-plant-right-2 {
  bottom: 3%;
  right: -40px;
  width: min(220px, 24vw);
  transform: rotate(-20deg);
}

.faq-list { margin-top: 2rem; display: grid; gap: 1rem; }

.faq-item {
  background: var(--white);
  border: 2px solid rgba(75, 46, 100, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item[open] { border-color: var(--purple); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--orange);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 1.5rem 1.3rem;
  color: var(--ink);
  max-width: 62ch;
}

/* ---------- Noktalar / Map ---------- */

.stores {
  background: linear-gradient(to bottom, #4a1f60, #7c5292);
  padding: clamp(4rem, 8vw, 7rem) 0 calc(clamp(4rem, 8vw, 7rem) + 90px);
  position: relative;
  overflow: hidden;
}

.stores::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../mapline-ist.svg") center/cover no-repeat;
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.stores .container {
  position: relative;
  z-index: 2;
}

.ginger-shot {
  position: absolute;
  top: 5%;
  right: 15%;
  width: 60px;
  z-index: 0;
  transform: rotate(-30deg);
  transform-origin: center center;
  pointer-events: none;
}

.oakberry-cup {
  position: absolute;
  top: 50%;
  left: 10%;
  width: min(104px, 24vw);
  z-index: 10;
  transform: translateY(-50%) rotate(-10deg);
  transform-origin: center center;
  pointer-events: none;
}

.stores-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.6rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.store-list {
  display: grid;
  gap: 1rem;
  align-content: start;
  max-height: 640px;
  overflow-y: auto;
  padding-right: 0.5rem; /* space for scrollbar */
}

/* Custom Scrollbar for store list */
.store-list::-webkit-scrollbar {
  width: 6px;
}
.store-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.store-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.store-list::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

.store-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  transition: background 0.25s ease, transform 0.25s ease;
  position: relative;
}

.store-card-special {
  background: rgba(232, 163, 61, 0.12); /* light orange tint */
  border-color: rgba(232, 163, 61, 0.4);
}

.new-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--white);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.store-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.store-card-special:hover {
  background: rgba(232, 163, 61, 0.25);
}

.store-card h3 {
  color: var(--orange);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.store-card p {
  color: var(--cream);
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0.2rem 0 0.5rem;
  max-width: 80%; /* leave space for badge if needed */
}

.store-card a {
  color: var(--white);
  font-weight: 700;
  font-style: italic;
  text-decoration: none;
  font-size: 0.95rem;
}

.store-card a:hover { color: var(--orange); }

.soon-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  padding: 0.2rem 0.9rem;
}

.store-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 24px 60px rgba(20, 8, 36, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.store-map-leaflet {
  width: 100%;
  height: 100%;
  min-height: 420px;
  z-index: 1;
}

.jagged-divider-space {
  position: relative;
  margin-top: -92px;
  z-index: 10;
  width: 100%;
  display: grid;
  align-items: center;
  -webkit-mask-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' width='72' height='46' viewBox='0 0 72 46'%3E%3Cpath d='M0 46 H72 L36 0 Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(black, black),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' width='72' height='46' viewBox='0 0 72 46'%3E%3Cpath d='M0 0 H72 L36 46 Z' fill='%23000'/%3E%3C/svg%3E");
  mask-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' width='72' height='46' viewBox='0 0 72 46'%3E%3Cpath d='M0 46 H72 L36 0 Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(black, black),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' width='72' height='46' viewBox='0 0 72 46'%3E%3Cpath d='M0 0 H72 L36 46 Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-position: top left, 0 92px, bottom left;
  mask-position: top left, 0 92px, bottom left;
  -webkit-mask-size: 288px 92px, 100% calc(100% - 184px), 288px 92px;
  mask-size: 288px 92px, 100% calc(100% - 184px), 288px 92px;
  -webkit-mask-repeat: repeat-x, no-repeat, repeat-x;
  mask-repeat: repeat-x, no-repeat, repeat-x;
}

.jagged-bg-img {
  grid-area: 1 / 1;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.jagged-overlay-content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  padding: 4rem 0 10rem;
  width: 100%;
}

.jagged-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.jagged-title {
  position: relative;
  display: inline-block;
  color: var(--orange);
  font-family: 'Zilla Slab', serif;
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  margin-bottom: 4rem;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
  padding: 0.5rem 1.5rem;
  z-index: 1;
}

.jagged-title::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--purple);
  transform: skewX(-15deg);
  z-index: -1;
  border-radius: 4px;
}

.jagged-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
}

.jagged-box {
  background: rgba(75, 46, 100, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.jagged-box:hover {
  transform: translateY(-5px);
}

.jagged-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--white);
}

.jagged-box-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.jagged-loc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--orange);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: rgba(255,255,255,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.jagged-loc-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.jagged-loc-link svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .jagged-overlay-content {
    padding: 6rem 0;
  }
  
  .jagged-container {
    background: rgba(75, 46, 100, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(20, 8, 36, 0.4);
    margin: 2rem auto 0 auto;
    width: 71%;
  }
  
  .jagged-title {
    margin-bottom: 2rem;
    text-shadow: none;
  }
  
  .jagged-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .jagged-box {
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    text-align: left;
    transition: none;
  }
  
  .jagged-box:hover {
    transform: none;
  }
}

/* ---------- Spin Section ---------- */

.spin-section {
  background: url("../wall.webp") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: -92px;
  z-index: 5;
  padding: calc(clamp(1.5rem, 3vw, 2.5rem) + 90px) 0 0 0;
}

.spin-layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
}

.spin-contact {
  flex: 1;
  color: var(--purple-dark);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spin-contact p {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.contact-email {
  display: inline-block;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.6vw, 1.66rem);
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-email:hover {
  transform: translateY(-3px);
  color: #000;
}

.inline-email {
  color: var(--purple);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.inline-email:hover {
  color: #000;
}

.spin-anim-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.spin-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 422px;
  margin-bottom: 0;
}

.hand-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
}

.alt-spin {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 1;
  transform-origin: center center;
}

/* ---------- Footer ---------- */

.site-footer {
  background-color: #45215d;
  background-image: url('../footer%20bg.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  color: var(--white);
}

.container.footer-grid {
  width: min(1500px, 94%);
  margin: 0 auto;
  display: block;
  padding: 8rem 0 4rem;
}

.footer-logo-col {
  display: flex;
  align-items: center;
  min-height: 250px; 
}

.footer-oak-logo {
  height: 80px;
  width: auto;
}

.footer-col h4 {
  color: var(--white);
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--orange); }

.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.6rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lang-selector:hover { background: rgba(0, 0, 0, 0.6); }
.flag-icon { width: 20px; border-radius: 2px; }
.chevron { margin-left: 0.5rem; font-size: 1.1rem; }

.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.social-icon:hover {
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a0a24;
  padding: 0.88rem clamp(1.5rem, 5vw, 4rem);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
  margin: 0;
  font-size: 0.95rem;
}

.footer-bottom p { margin: 0; }
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-decoration: none;
}

.weis-logo-svg {
  height: 13px;
  width: auto;
  display: block;
}

.weis-text {
  font-style: italic;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
}

/* ---------- Reveal animasyonu ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .story-grid,
  .stores-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-col-empty { display: none; }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 45; /* Under header (which has z-index 50) */
  }

  .main-nav.open { 
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a { 
    font-size: 2rem; 
    padding: 0.5rem 1rem;
  }

  .mobile-insta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    color: var(--orange);
    opacity: 0.9;
    padding: 1rem 0;
    transition: opacity 0.3s ease, color 0.3s ease;
  }
  .mobile-insta-icon svg {
    width: 36px;
    height: 36px;
  }

  .nav-toggle { 
    display: flex; 
    z-index: 51; /* Keep above overlay if needed, though header is 50 */
  }

  .store-card { padding: 1.5rem; }
  
  .store-list {
    max-height: 350px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-hide-mob {
    display: none;
  }
  .g-hide-desk {
    display: block;
  }
  .g-span-2 {
    grid-column: span 2;
    aspect-ratio: 1.68 / 1;
  }
  .g-span-2-mob {
    grid-column: span 2;
    aspect-ratio: 1.68 / 1;
  }
  .g-span-2-desk {
    grid-column: span 1;
    aspect-ratio: 4 / 5;
  }
  
  /* Show only first 3 rows on mobile (items 1 to 6) */
  .gallery-grid .g-item:nth-child(n+7) {
    display: none !important;
  }

  .store-map { min-height: 320px; }

  .spin-layout {
    align-items: stretch;
  }
  .spin-contact {
    padding-bottom: 2rem;
  }
  .contact-email {
    font-size: 0.8rem;
    word-break: break-all;
  }
  .spin-anim-wrapper {
    justify-content: flex-end;
  }
  .spin-container {
    max-width: 234px;
  }

  .site-footer {
    background-position: right bottom;
  }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ================= PRODUCTS SECTION ================= */
.products-section {
  background-color: #f3ede0;
  padding: 4rem 0;
  position: relative;
  z-index: 10;
}

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: transparent;
  border: 1px solid var(--purple);
  color: var(--purple);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--purple);
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.products-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-behavior: smooth;
  /* Hide scrollbar for a cleaner look */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.products-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.product-card {
  flex: 0 0 auto;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .product-card {
    width: 320px;
  }
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-title {
  color: var(--purple);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.product-desc {
  color: var(--purple);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  flex-grow: 1;
}

.product-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple);
  font-family: var(--font-primary);
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.product-order-btn:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-order-btn .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.product-order-btn:hover .arrow {
  transform: translateX(4px);
}


/* ================= BOWLS & SMOOTHIES TABS ================= */
.products-section {
  font-family: "Inter", sans-serif; /* or inherit your site font */
  overflow: hidden;
}

.products-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tabs-control {
  display: flex;
  gap: 1rem;
  background-color: transparent;
  margin-bottom: 2rem;
}

.tab-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--purple, #4b2e64); /* Seçilmeyen mor */
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-title) !important;
  font-style: italic !important;
  transform: skewX(-15deg) !important; /* Sola yatık paralelkenar */
  border-radius: 4px !important; /* Köşeleri hafif yuvarlatılmış */
}

.tab-btn span {
  display: inline-block;
  transform: skewX(15deg) !important; /* Yazının yatmasını engellemek için ters skew */
}

.tab-btn:hover {
  opacity: 0.8;
}

.tab-btn.active {
  color: #f3ede0; /* Seçilen yazı rengi */
  background-color: var(--purple, #4b2e64); /* Arkaplan mor olsun ki yazı okunsun */
}

.tab-pane {
  width: 100%;
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

.products-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
  /* Hide scrollbar for a cleaner look */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.products-carousel::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.product-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .product-card {
    flex: 0 0 calc(33.333% - 1rem);
    scroll-snap-align: start;
  }
}

.product-card img {
  width: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
  background-color: transparent;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--purple, #4b2e64);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.product-card p {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--purple, #4b2e64);
  margin: 0;
  line-height: 1.4;
}

.product-card .order-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--purple, #4b2e64);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.product-card .order-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-card .order-link svg {
  transition: transform 0.3s ease;
}

.product-card .order-link:hover svg {
  transform: translateX(4px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= CAROUSEL DOTS ================= */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dots .dot {
  width: 14px;
  height: 14px;
  background-color: rgba(75, 46, 100, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
  background-color: var(--purple, #4b2e64);
  box-shadow: 0 0 0 3px var(--cream, #f5eddf), 0 0 0 5px var(--orange, #e8a33d);
}

@media (max-width: 767px) {
  .faq-container .section-title {
    text-align: center;
  }
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
#aboutBadgeSpin {
  animation: slowSpin 15s linear infinite;
  transform-origin: center center;
}
@media (max-width: 768px) {
  #hikayemiz .lead {
    font-size: 0.85em !important;
  }
  #hikayemiz .story-media {
    max-width: 71%;
    margin: 0 auto;
    justify-self: center;
  }
  .about-badge {
    width: 96px !important;
    height: 96px !important;
    top: -32px !important;
    left: -32px !important;
  }
}

@media (max-width: 900px) {
  .story-grid-reverse .story-text {
    order: -1;
  }
}

.hareket-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.hareket-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skewX(-15deg);
  width: 110%; 
  height: 60%; 
  background-color: #552b75;
  z-index: -1;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .jagged-box-info {
    align-items: flex-start !important;
  }
}

.highlight-yellow {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.highlight-yellow::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%) skewX(-15deg);
  width: 110%; 
  height: 40%; 
  background-color: var(--orange);
  z-index: -1;
  border-radius: 2px;
}

.numarali-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.numarali-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skewX(-15deg);
  width: 105%; 
  height: 60%; 
  background-color: #381550;
  z-index: -1;
  border-radius: 2px;
}
