:root {
  --ink: #15120f;
  --muted: #716960;
  --paper: #fff8ef;
  --cream: #fff0dc;
  --sage: #f97316;
  --olive: #f97316;
  --honey: #ffb020;
  --tomato: #ea580c;
  --charcoal: #0f0d0b;
  --line: rgba(21, 18, 15, 0.14);
  --shadow: 0 20px 45px rgba(21, 18, 15, 0.18);
}

.campaign-gallery-premium {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.campaign-payment-card {
  background: #fffaf4;
  border: 1px solid rgba(20, 17, 15, 0.08);
  box-shadow: 0 22px 50px rgba(20, 17, 15, 0.1);
  transition:
    transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.campaign-payment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(20, 17, 15, 0.16);
}

.campaign-payment-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: #f7efe2;
}

.campaign-payment-card > div {
  min-height: 210px;
}

.campaign-payment-card span {
  color: #ea580c;
  background: rgba(249, 115, 22, 0.1);
}

@media (max-width: 1180px) {
  .campaign-gallery-premium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .campaign-gallery-premium {
    grid-template-columns: 1fr;
  }

  .campaign-payment-card img {
    aspect-ratio: 3 / 4;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  --cinema-parallax-x: 0px;
  --cinema-parallax-y: 0px;
}

body.cinema-ready {
  overflow-x: hidden;
}

.cinematic-root main,
.cinematic-root .topbar,
.cinematic-root .announcement-bar,
.cinematic-root .footer,
.cinematic-root .toast {
  position: relative;
  z-index: 2;
}

.cinematic-root .modal {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.cinematic-title .cinema-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.04em;
}

.cinematic-title .cinema-word-inner {
  display: inline-block;
  transform: translate3d(0, 118%, 0) rotateX(18deg);
  transform-origin: 50% 100%;
  clip-path: inset(0 0 100% 0);
  animation: cinemaTitleWord 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc(var(--word-index, 0) * 72ms + 140ms);
  will-change: transform, clip-path, opacity;
}

.cinematic-title.is-complete .cinema-word-inner {
  will-change: auto;
}

.cinematic-zoom-target {
  --cinema-zoom: 1;
  transform: scale(var(--cinema-zoom));
  transform-origin: center;
  transition: transform 0.18s linear;
  will-change: transform;
}

.cinematic-bg-zoom {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent !important;
}

.cinematic-bg-zoom::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--cinema-bg-image);
  background-position: var(--cinema-bg-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(var(--cinema-zoom, 1));
  transform-origin: center;
  transition: transform 0.18s linear;
  will-change: transform;
}

.cinematic-bg-zoom::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 13, 11, 0.78), rgba(15, 13, 11, 0.18));
  pointer-events: none;
}

.cinema-reveal {
  --cinema-delay: 0ms;
  opacity: 0;
  filter: blur(13px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.92s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.92s ease,
    transform 0.92s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--cinema-delay);
  will-change: opacity, filter, transform;
}

.cinema-reveal.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.cinema-reveal-left {
  transform: translate3d(-42px, 18px, 0);
}

.cinema-reveal-right {
  transform: translate3d(42px, 18px, 0);
}

.cinema-reveal-scale {
  transform: translate3d(0, 28px, 0) scale(0.965);
}

.cinema-reveal-image {
  overflow: hidden;
  transform: translate3d(0, 34px, 0) scale(0.985);
}

.cinema-reveal-image > img,
.cinema-reveal-image picture img,
img.cinema-reveal-image {
  transition:
    transform 1.25s cubic-bezier(0.19, 1, 0.22, 1),
    filter 1.05s ease;
}

.cinema-reveal-image:not(.is-revealed) > img,
.cinema-reveal-image:not(.is-revealed) picture img,
img.cinema-reveal-image:not(.is-revealed) {
  filter: saturate(0.82) blur(2px);
  transform: scale(1.075);
}

.cinema-reveal-image.is-revealed > img,
.cinema-reveal-image.is-revealed picture img,
img.cinema-reveal-image.is-revealed {
  filter: saturate(1) blur(0);
  transform: scale(1);
}

.cinema-reveal-card {
  transform: translate3d(0, 38px, 0) scale(0.975);
}

.cinema-stagger > .cinema-reveal:nth-child(1) {
  --cinema-delay: 0ms;
}

.cinema-stagger > .cinema-reveal:nth-child(2) {
  --cinema-delay: 80ms;
}

.cinema-stagger > .cinema-reveal:nth-child(3) {
  --cinema-delay: 160ms;
}

.cinema-stagger > .cinema-reveal:nth-child(4) {
  --cinema-delay: 240ms;
}

.cinema-stagger > .cinema-reveal:nth-child(5) {
  --cinema-delay: 320ms;
}

.cinema-stagger > .cinema-reveal:nth-child(n + 6) {
  --cinema-delay: 400ms;
}

.magnetic-target {
  --magnet-x: 0px;
  --magnet-y: 0px;
  --magnet-scale: 1;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0) scale(var(--magnet-scale));
  transition:
    transform 0.42s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.42s cubic-bezier(0.19, 1, 0.22, 1),
    background 0.42s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.42s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.primary-button.magnetic-target:hover,
.secondary-button.magnetic-target:hover,
.ghost-button.magnetic-target:hover {
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 6px), 0) scale(var(--magnet-scale));
}

body.modal-open {
  overflow: hidden;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
  padding: 8px clamp(18px, 4vw, 72px);
  color: white;
  background: #df1717;
  font-size: 13px;
  font-weight: 800;
}

.announcement-bar a {
  color: white;
  text-decoration: none;
}

.announcement-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.announcement-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.announcement-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.announcement-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 18px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.announcement-bar a:hover {
  opacity: 0.82;
}

.announcement-social a:hover {
  transform: translateY(-2px);
}

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

::selection {
  color: white;
  background: var(--olive);
}

button,
input,
select,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(217, 155, 43, 0.48);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 112px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 13, 11, 0.06);
  box-shadow: 0 12px 38px rgba(15, 13, 11, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: block;
  width: 118px;
  height: 96px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.nav > a[href="iletisim.php"],
.nav > a[href="iletisim.php"] {
  min-height: 52px;
  padding: 0 28px;
  color: white;
  background: #ff4038;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(255, 64, 56, 0.22);
}

.nav > a[href="iletisim.php"]:hover,
.nav > a[href="iletisim.php"]:hover {
  color: white;
  background: #e9211b;
}

.brand-mark::after {
  content: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(15, 13, 11, 0.16));
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  max-width: 220px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: #6b7280;
  font-size: 13px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.auth-buttons,
.user-menu,
.admin-top-actions,
.account-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-menu span {
  max-width: 180px;
  overflow: hidden;
  color: var(--olive);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 4px;
  border-radius: 0;
  color: #1f2933;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav a:hover,
.nav a.active {
  color: #f43f3a;
  background: transparent;
}

.nav a.active {
  color: #f43f3a;
  background: transparent;
}

.menu-button,
.close-button {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-menu-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(21, 18, 15, 0.12);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.site-menu-login:hover,
.site-menu-login:focus-visible {
  color: var(--ink);
  border-color: rgba(21, 18, 15, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.site-menu-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-menu-panel a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-menu-panel a:hover,
.site-menu-panel a.active {
  color: var(--tomato);
}

.site-menu-panel a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 3px;
  background: var(--tomato);
  border-radius: 999px;
}

.site-menu-panel a[href="iletisim.php"] {
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  color: white;
  background: #ff4038;
  border-radius: 8px;
  box-shadow: 0 18px 30px rgba(255, 64, 56, 0.22);
}

.site-menu-panel a[href="iletisim.php"]:hover,
.site-menu-panel a[href="iletisim.php"].active {
  color: white;
  background: #e9211b;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, #ff9f1c, #ea580c);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.24);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.secondary-button {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.ghost-button {
  color: var(--olive);
  background: transparent;
  border-color: var(--line);
}

.hero {
  min-height: min(760px, calc(100svh - 42px));
  display: flex;
  align-items: center;
  padding: clamp(48px, 9vw, 110px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(36, 31, 27, 0.72), rgba(36, 31, 27, 0.16)),
    url("assets/food-4k/tereyagi-peynir-4k.jpg") center/cover;
}

.hero-pro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 6vw, 72px);
}

.hero-content {
  max-width: 720px;
  color: white;
}

.hero-panel {
  align-self: end;
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel h2,
.hero-panel p {
  margin: 0;
}

.hero-panel h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.hero-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-badge {
  width: fit-content;
  padding: 7px 10px;
  color: white;
  background: var(--tomato);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics span {
  display: grid;
  gap: 2px;
  padding: 12px;
  background: #eef1e7;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-metrics strong {
  color: var(--olive);
  font-size: 26px;
  line-height: 1;
}

.panel-link,
.promo-card a {
  color: var(--olive);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--honey);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.modal h2,
.admin-panel h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(42px, 7vw, 78px);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-hero {
  position: relative;
  min-height: 0;
  height: clamp(640px, calc(100svh - 112px), 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #1f2933;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 7vw, 120px);
  background: #f7f7f5;
}

.home-hero-content {
  position: relative;
  z-index: 4;
  width: min(620px, 100%);
  margin: 0;
  transition:
    opacity 0.52s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.52s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.52s ease;
  will-change: opacity, transform, filter;
}

.home-hero-content h1 {
  max-width: 620px;
  margin: 0;
  color: #1f2933;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

.home-hero-content p:not(.eyebrow) {
  max-width: 560px;
  color: #1f2933;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
  line-height: 1.7;
}

.home-hero.is-switching .home-hero-content {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 28px, 0);
}

.hero-wave {
  position: absolute;
  right: -6vw;
  bottom: -20%;
  z-index: 0;
  width: 68vw;
  height: 58%;
  background: #dfe8d2;
  border-radius: 58% 42% 0 0 / 72% 62% 0 0;
  animation: waveBreath 7s ease-in-out infinite;
}

.hero-product-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-image-slider {
  --hero-slide-index: 0;
  position: absolute;
  top: 50%;
  right: clamp(24px, 7vw, 118px);
  width: min(760px, 54vw);
  height: min(560px, 58vh);
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  border-radius: 42% 48% 38% 45%;
  filter: drop-shadow(0 34px 32px rgba(31, 41, 51, 0.22));
  transform: translateY(-50%) rotate(4deg);
  animation: heroSliderFloat 5.8s ease-in-out infinite;
  pointer-events: auto;
  transition:
    opacity 0.58s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.58s ease;
  will-change: opacity, filter, transform;
}

.hero-image-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(calc(var(--hero-slide-index) * -100%), 0, 0);
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.hero-image-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-image-slider.is-sliding .hero-image-track {
  transition-duration: 1.05s;
}

.home-hero.is-switching .hero-image-slider {
  opacity: 0.72;
  filter: drop-shadow(0 30px 28px rgba(31, 41, 51, 0.16)) blur(2px);
}

.home-hero .primary-button {
  min-width: 178px;
  min-height: 54px;
  background: #ff4038;
  box-shadow: 0 16px 28px rgba(255, 64, 56, 0.24);
}

.home-hero .secondary-button {
  min-width: 178px;
  min-height: 54px;
  color: white;
  background: #e31b18;
  border-color: #e31b18;
  box-shadow: 0 16px 28px rgba(227, 27, 24, 0.2);
}

.home-hero .primary-button::after,
.home-hero .secondary-button::after {
  content: "\00a0\00bb";
  font-weight: 900;
}

.hero-promo-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
  isolation: isolate;
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.92) rotate(var(--badge-rotate, 0deg));
  animation:
    heroBadgeEnter 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards,
    heroBadgeFloat 5.4s ease-in-out calc(var(--badge-delay, 0s) + 0.9s) infinite;
  animation-delay: var(--badge-delay, 0s), calc(var(--badge-delay, 0s) + 0.9s);
  will-change: transform, opacity;
  transition:
    opacity 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.46s ease;
}

.home-hero.is-switching .hero-promo-badge {
  opacity: 0;
  filter: blur(8px);
}

.hero-promo-badge::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(12px);
  opacity: 0.85;
  animation: badgeAura 3.8s ease-in-out infinite;
}

.hero-promo-badge small,
.hero-promo-badge strong,
.natural-badge span {
  display: block;
  width: 100%;
}

.hero-promo-badge small {
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-promo-badge strong {
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 0.95;
  letter-spacing: 0;
}

.natural-badge {
  top: 11%;
  right: clamp(390px, 46vw, 690px);
  left: auto;
  width: clamp(118px, 13vw, 180px);
  height: clamp(118px, 13vw, 180px);
  background: #f50918;
  border-radius: 48% 52% 46% 54%;
  box-shadow: 0 18px 30px rgba(245, 9, 24, 0.24);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 0.85;
  --badge-delay: 0.3s;
  --badge-rotate: -4deg;
}

.natural-badge span {
  font-size: 0.48em;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.badge-fresh,
.badge-local,
.badge-payment {
  min-width: clamp(118px, 13vw, 168px);
  min-height: clamp(72px, 8vw, 96px);
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(31, 41, 51, 0.16);
  backdrop-filter: blur(14px);
}

.badge-fresh {
  right: clamp(30px, 9vw, 150px);
  top: 14%;
  background: linear-gradient(135deg, rgba(255, 64, 56, 0.95), rgba(227, 27, 24, 0.92));
  --badge-delay: 0.48s;
  --badge-rotate: 4deg;
}

.badge-local {
  right: clamp(380px, 48vw, 710px);
  left: auto;
  bottom: 18%;
  color: #1f2933;
  background: rgba(255, 255, 255, 0.82);
  --badge-delay: 0.66s;
  --badge-rotate: -3deg;
}

.badge-local small {
  color: #f43f3a;
}

.badge-payment {
  right: clamp(22px, 6vw, 100px);
  bottom: 16%;
  background: linear-gradient(135deg, rgba(15, 13, 11, 0.94), rgba(66, 48, 29, 0.9));
  --badge-delay: 0.84s;
  --badge-rotate: 3deg;
}

.leaf {
  position: absolute;
  z-index: 1;
  width: 86px;
  height: 36px;
  background:
    radial-gradient(circle at 26% 42%, rgba(255, 255, 255, 0.55), transparent 12%),
    linear-gradient(135deg, #94c83d, #3c9a1f);
  border-radius: 90% 8% 90% 8%;
  filter: blur(0.2px) drop-shadow(0 12px 18px rgba(55, 125, 31, 0.18));
  transform-origin: 50% 50%;
  animation: leafDrift 8s ease-in-out infinite;
}

.leaf::after {
  content: "";
  position: absolute;
  inset: 50% 12% auto 12%;
  height: 2px;
  background: rgba(255, 255, 255, 0.52);
  transform: rotate(-8deg);
}

.leaf-one {
  left: 10%;
  bottom: 26%;
  transform: rotate(-24deg);
}

.leaf-two {
  left: 42%;
  top: 13%;
  width: 74px;
  height: 32px;
  animation-delay: 1.2s;
}

.leaf-three {
  left: 47%;
  bottom: 30%;
  width: 82px;
  height: 34px;
  animation-delay: 2.1s;
}

.leaf-four {
  left: 24%;
  bottom: 5%;
  width: 92px;
  height: 38px;
  animation-delay: 3s;
}

.hero-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: #f50918;
  background: white;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.12);
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.28s cubic-bezier(0.19, 1, 0.22, 1), background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  color: white;
  background: #f50918;
  box-shadow: 0 22px 48px rgba(245, 9, 24, 0.24);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow.magnetic-target {
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 50%), 0) scale(var(--magnet-scale));
}

.hero-arrow.magnetic-target:hover,
.hero-arrow.magnetic-target:focus-visible {
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 50%), 0) scale(calc(var(--magnet-scale) + 0.06));
}

.hero-arrow-left {
  left: clamp(18px, 4vw, 70px);
}

.hero-arrow-right {
  right: clamp(18px, 4vw, 70px);
}

.hero-slide-dots {
  position: absolute;
  left: clamp(18px, 7vw, 120px);
  bottom: clamp(24px, 6vw, 58px);
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slide-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 41, 51, 0.2);
  box-shadow: inset 0 0 0 1px rgba(31, 41, 51, 0.1);
  cursor: pointer;
  transition:
    width 0.32s cubic-bezier(0.19, 1, 0.22, 1),
    background 0.32s ease,
    transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-slide-dot:hover,
.hero-slide-dot:focus-visible,
.hero-slide-dot.is-active {
  width: 34px;
  background: #f50918;
  transform: translateY(-2px);
}

.home-nature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 64, 56, 0.09), transparent 24%),
    radial-gradient(circle at 90% 80%, rgba(124, 179, 66, 0.16), transparent 26%);
}

.home-category-showcase {
  padding-top: clamp(74px, 8vw, 104px);
  padding-bottom: clamp(64px, 8vw, 96px);
  background: white;
}

.category-showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: clamp(22px, 6vw, 86px);
  align-items: end;
  max-width: 900px;
  margin: 0 auto 42px;
  min-width: 0;
}

.category-showcase-heading .script-eyebrow {
  margin: 0 0 18px;
  text-align: left;
  transform: none;
}

.category-showcase-heading h2 {
  max-width: 520px;
  margin: 0;
  color: #1f2933;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.category-showcase-heading > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
  min-width: 0;
  overflow-wrap: anywhere;
}

.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
  max-width: 900px;
  margin: 0 auto;
}

.category-showcase-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 172px;
  padding: 24px 14px 20px;
  color: #1f2933;
  text-align: center;
  background: #fffefb;
  border: 1px solid rgba(124, 179, 66, 0.22);
  box-shadow: 0 18px 34px rgba(31, 41, 51, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-showcase-card:hover {
  border-color: rgba(124, 179, 66, 0.55);
  box-shadow: 0 22px 44px rgba(31, 41, 51, 0.08);
  transform: translateY(-6px);
}

.category-showcase-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #f2f7eb;
  transform: translateX(-50%);
}

.category-showcase-card strong {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.25;
}

.category-art {
  position: relative;
  z-index: 1;
  display: block;
  width: 76px;
  height: 76px;
}

.category-art-cheese::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 25px;
  width: 50px;
  height: 34px;
  background: #ffd15c;
  border: 4px solid #111827;
  border-radius: 50% 10px 12px 50%;
}

.category-art-cheese::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 32px;
  width: 26px;
  height: 24px;
  border: 4px solid #111827;
  border-left: 0;
  background:
    radial-gradient(circle at 50% 40%, #111827 0 3px, transparent 4px),
    radial-gradient(circle at 72% 70%, #111827 0 2px, transparent 3px),
    #ffd15c;
  clip-path: polygon(0 0, 100% 28%, 100% 100%, 0 76%);
}

.category-art-olive::before,
.category-art-olive::after {
  content: "";
  position: absolute;
  bottom: 12px;
  width: 25px;
  height: 38px;
  background: #212529;
  border: 4px solid #050505;
  border-radius: 50%;
}

.category-art-olive::before {
  left: 18px;
  transform: rotate(22deg);
}

.category-art-olive::after {
  right: 18px;
  transform: rotate(-18deg);
}

.category-art-olive {
  background:
    linear-gradient(28deg, transparent 43%, #111827 44% 50%, transparent 51%),
    radial-gradient(ellipse at 34% 28%, #83b735 0 18px, transparent 19px),
    radial-gradient(ellipse at 62% 24%, #83b735 0 17px, transparent 18px);
}

.category-art-honey::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 29px;
  width: 34px;
  height: 24px;
  background: #f6c562;
  border: 3px solid #111827;
  border-radius: 6px 6px 10px 10px;
}

.category-art-honey::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 46px;
  height: 24px;
  background:
    radial-gradient(circle at 13px 15px, #ffe8a3 0 8px, transparent 9px),
    radial-gradient(circle at 25px 10px, #ffe8a3 0 8px, transparent 9px),
    radial-gradient(circle at 37px 15px, #ffe8a3 0 8px, transparent 9px);
  border-bottom: 3px solid #111827;
}

.category-art-butter::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 50px;
  height: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), transparent 44%),
    #9bb7ff;
  border-radius: 10px;
  box-shadow: inset 0 -10px 0 rgba(255, 255, 255, 0.62);
}

.category-art-butter::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 17px;
  width: 24px;
  height: 14px;
  background: #ffd15c;
  border-radius: 50%;
}

.category-art-package::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 13px;
  width: 8px;
  height: 56px;
  background: #f0b429;
  border-radius: 999px;
  transform: rotate(-24deg);
  box-shadow:
    -13px 8px 0 #f0b429,
    13px -8px 0 #f0b429;
}

.category-art-package::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 44px;
  width: 42px;
  height: 4px;
  background: #7cb342;
  border-radius: 999px;
  transform: rotate(18deg);
}

.category-squiggle {
  position: relative;
  width: 44px;
  height: 14px;
  margin-top: 12px;
}

.category-squiggle::before {
  content: "";
  position: absolute;
  inset: 3px 0 0;
  border-top: 3px solid #7cb342;
  border-radius: 50%;
  transform: skewX(-24deg);
}

.category-squiggle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #7cb342;
  border-right: 3px solid #7cb342;
  transform: rotate(36deg);
}

.home-nature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.home-nature-media:hover img {
  filter: saturate(1.08);
  transform: rotate(0deg) scale(1.025);
}

.home-nature-copy {
  display: grid;
  gap: 18px;
}

.home-identity {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 92%, rgba(31, 41, 51, 0.04), transparent 22%),
    linear-gradient(180deg, #ffffff, #fffdf8);
}

.identity-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.identity-bg-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 253, 248, 0.76) 46%, rgba(255, 253, 248, 0.9) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 239, 0.92));
}

.identity-bg-slider span {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: identityBgFade 9s ease-in-out infinite;
}

.identity-bg-slider span:nth-child(1) {
  background-image: url("assets/food-4k/peynir-secimi-4k.jpg");
}

.identity-bg-slider span:nth-child(2) {
  background-image: url("assets/food-4k/yesil-zeytin-4k.jpg");
  animation-delay: 3s;
}

.identity-bg-slider span:nth-child(3) {
  background-image: url("assets/food-4k/bal-kaymak-4k.jpg");
  animation-delay: 6s;
}

.identity-photo {
  position: relative;
  z-index: 1;
  align-self: start;
  min-height: 470px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 28px 68px rgba(15, 13, 11, 0.12);
}

.identity-photo::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 72%;
  height: 34%;
  background: white;
  clip-path: polygon(0 45%, 10% 18%, 20% 42%, 30% 8%, 42% 36%, 54% 15%, 64% 42%, 76% 20%, 88% 48%, 100% 30%, 100% 100%, 0 100%);
}

.identity-photo img {
  width: 100%;
  height: 540px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.identity-photo:hover img {
  transform: scale(1.035);
}

.identity-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: clamp(24px, 4vw, 54px);
  text-align: center;
}

.script-eyebrow {
  margin: 0 0 20px;
  color: #ff6a00;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 24px;
  font-weight: 700;
  transform: rotate(-7deg);
}

.identity-copy h2 {
  margin: 0;
  color: #1f2933;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.18;
}

.identity-cheese-line {
  position: absolute;
  right: 7%;
  top: 22%;
  width: clamp(220px, 24vw, 390px);
  height: clamp(120px, 12vw, 210px);
  opacity: 0.09;
  background:
    radial-gradient(ellipse at 35% 58%, transparent 36%, #1f2933 37%, #1f2933 39%, transparent 40%),
    radial-gradient(ellipse at 72% 55%, transparent 36%, #1f2933 37%, #1f2933 39%, transparent 40%);
  border: 8px solid #1f2933;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 45% 45% 32% 32%;
  transform: rotate(8deg);
}

.identity-cards {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: min(760px, 72%);
  margin: -170px 0 0 min(280px, 23vw);
}

.identity-card {
  position: relative;
  min-height: 245px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 13, 11, 0.04);
  border-radius: 2px;
  box-shadow: 0 28px 60px rgba(15, 13, 11, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.identity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 70px rgba(15, 13, 11, 0.14);
}

.identity-card::after {
  content: counter(identity-card);
  counter-increment: identity-card;
  position: absolute;
  right: 18px;
  top: 10px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(31, 41, 51, 0.06);
  font-size: 132px;
  font-weight: 900;
  line-height: 1;
}

.identity-cards {
  counter-reset: identity-card;
}

.identity-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ff312b;
  border: 1px solid rgba(255, 49, 43, 0.18);
  border-radius: 10px;
  font-weight: 900;
}

.identity-card strong {
  position: relative;
  z-index: 1;
  color: #1f2933;
  font-size: 21px;
  line-height: 1.3;
}

.identity-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #6b7280;
  line-height: 1.8;
}

.home-checks {
  display: grid;
  gap: 10px;
}

.home-checks span {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 800;
}

.home-checks span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background: var(--tomato);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px white;
}

.home-product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-product {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 13, 11, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-product::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 46%;
  background: linear-gradient(135deg, rgba(255, 64, 56, 0.16), rgba(124, 179, 66, 0.14));
  border-radius: 50% 50% 0 0;
  transform: translateY(36%);
  transition: transform 0.3s ease;
}

.home-product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.home-product:hover::before {
  transform: translateY(18%);
}

.home-product img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.35s ease;
}

.home-product:hover img {
  transform: scale(1.045);
}

.home-product span {
  position: relative;
  z-index: 1;
  color: var(--tomato);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-product strong {
  position: relative;
  z-index: 1;
  font-size: 18px;
}

.animated-band {
  position: relative;
  overflow: hidden;
}

.animated-band > *:not(.band-orbit) {
  position: relative;
  z-index: 1;
}

.band-orbit {
  position: absolute;
  z-index: 0;
  width: clamp(180px, 24vw, 360px);
  height: clamp(180px, 24vw, 360px);
  border: 1px solid rgba(255, 64, 56, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 64, 56, 0.12), transparent 18%),
    radial-gradient(circle at 68% 70%, rgba(124, 179, 66, 0.18), transparent 24%);
  animation: orbitFloat 12s ease-in-out infinite;
  pointer-events: none;
}

.orbit-one {
  top: 8%;
  left: -100px;
}

.orbit-two {
  right: -110px;
  bottom: 4%;
  animation-delay: 2.4s;
}

.orbit-three {
  top: -90px;
  right: 8%;
  animation-delay: 1.5s;
}

.home-branches {
  background:
    linear-gradient(180deg, #fff8ef 0%, #f7f7f5 100%);
}

.home-map-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.98fr) minmax(420px, 1fr);
  min-height: clamp(360px, 34vw, 460px);
  overflow: hidden;
  background: #0f0d0b;
  isolation: isolate;
}

.map-promo-panel {
  position: relative;
  min-height: clamp(360px, 34vw, 460px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(48px, 7vw, 92px) clamp(24px, 9vw, 170px);
}

.map-promo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 58%;
  filter: grayscale(0.25) brightness(0.56);
  transform: scale(1.035);
}

.map-promo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.38), rgba(15, 13, 11, 0.06)),
    rgba(15, 13, 11, 0.24);
}

.map-promo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(130, 0, 0, 0.96) 0%, rgba(158, 0, 0, 0.92) 42%, transparent 42.2%),
    linear-gradient(90deg, rgba(91, 0, 0, 0.9), rgba(156, 0, 0, 0.2) 64%, transparent);
  mix-blend-mode: multiply;
}

.map-promo-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  color: white;
}

.map-promo-content p {
  margin: 0 0 18px;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: clamp(20px, 2.1vw, 34px);
  font-weight: 700;
  line-height: 1.1;
}

.map-promo-content h2 {
  margin: 0 0 clamp(26px, 4vw, 46px);
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.map-promo-content .primary-button {
  min-width: 152px;
  background: #ff3d36;
  box-shadow: 0 18px 36px rgba(255, 61, 54, 0.28);
}

.map-promo-content .primary-button::after {
  content: "\00a0\00bb";
  font-weight: 900;
}

.map-live-panel {
  min-height: clamp(360px, 34vw, 460px);
  background: #ebe7dc;
}

.home-map-showcase .map-frame {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 34vw, 460px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-map-showcase .map-frame::after {
  display: none;
}

.home-map-showcase .map-frame:hover {
  transform: none;
  box-shadow: none;
}

.home-map-showcase .map-frame iframe {
  min-height: clamp(360px, 34vw, 460px);
  filter: saturate(0.92) contrast(1.02);
}

.home-contact {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 64, 56, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f7f5, #fff8ef);
}

.compact-hidden {
  display: none;
}

.reveal-up,
.reveal-left,
.reveal-right {
  animation: revealSoft 0.78s ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 28%;
}

.reveal-left {
  animation-name: revealLeft;
}

.reveal-right {
  animation-name: revealRight;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.16s;
}

.delay-3 {
  animation-delay: 0.24s;
}

.delay-4 {
  animation-delay: 0.32s;
}

@keyframes homeSlide {
  0%,
  32% {
    opacity: 1;
    transform: scale(1);
  }

  38%,
  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

@keyframes homeDot {
  0%,
  32% {
    background: white;
    transform: scale(1.2);
  }

  38%,
  100% {
    background: transparent;
    transform: scale(1);
  }
}

@keyframes cinemaTitleWord {
  0% {
    opacity: 0;
    transform: translate3d(0, 118%, 0) rotateX(18deg);
    clip-path: inset(0 0 100% 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }

  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes identityBgFade {
  0%,
  27% {
    opacity: 1;
    transform: scale(1);
  }

  34%,
  93% {
    opacity: 0;
    transform: scale(1.04);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroSliderFloat {
  0%,
  100% {
    transform: translateY(-50%) rotate(4deg) scale(1);
  }

  50% {
    transform: translateY(calc(-50% - 14px)) rotate(2deg) scale(1.012);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: rotate(-4deg) scale(1);
  }

  50% {
    transform: rotate(-1deg) scale(1.04);
  }
}

@keyframes heroBadgeEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.88) rotate(calc(var(--badge-rotate, 0deg) - 5deg));
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(var(--badge-rotate, 0deg));
    filter: blur(0);
  }
}

@keyframes heroBadgeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(var(--badge-rotate, 0deg));
  }

  50% {
    transform: translate3d(0, -12px, 0) scale(1.035) rotate(calc(var(--badge-rotate, 0deg) + 1deg));
  }
}

@keyframes badgeAura {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.92;
    transform: scale(1.06);
  }
}

@keyframes leafDrift {
  0%,
  100% {
    translate: 0 0;
    rotate: -4deg;
  }

  50% {
    translate: 18px -16px;
    rotate: 8deg;
  }
}

@keyframes waveBreath {
  0%,
  100% {
    transform: translateY(0) scaleX(1);
  }

  50% {
    transform: translateY(-16px) scaleX(1.03);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -20px, 0) scale(1.04);
  }
}

@keyframes footerLight {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(220%);
  }
}

@keyframes footerGlow {
  0%,
  100% {
    opacity: 0.65;
  }

  50% {
    opacity: 1;
  }
}

@keyframes footerLogoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes footerButtonPulse {
  0%,
  100% {
    box-shadow: 0 16px 28px rgba(255, 138, 0, 0.24);
  }

  50% {
    box-shadow: 0 18px 36px rgba(255, 138, 0, 0.42);
  }
}

@keyframes footerDoodleDrift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 16px -14px;
  }
}

@keyframes revealSoft {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.feature {
  min-height: 130px;
  padding: 30px;
  background: var(--cream);
}

.feature strong,
.feature span {
  display: block;
}

.feature strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.feature span,
.section-heading p,
.about p,
.contact-info p,
.contact-info li,
.hint {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.promo-section {
  background: #f4f0e6;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 0.85fr));
  gap: 18px;
}

.promo-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
  color: white;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(36, 31, 27, 0.08), rgba(36, 31, 27, 0.82)),
    url("assets/food-4k/zeytin-sunum-4k.jpg") center/cover;
  box-shadow: 0 14px 34px rgba(55, 42, 25, 0.14);
}

.promo-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(36, 31, 27, 0.08), rgba(36, 31, 27, 0.82)),
    url("assets/food-4k/bal-kaymak-4k.jpg") center/cover;
}

.promo-main {
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(36, 31, 27, 0.06), rgba(36, 31, 27, 0.8)),
    url("assets/food-4k/kahvalti-vitrin-4k.jpg") center/cover;
}

.promo-card span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--ink);
  background: #ffe2a0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.promo-card h3,
.promo-card p {
  margin: 0;
}

.promo-card h3 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.promo-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.promo-card a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.showcase-section {
  background: var(--paper);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  min-height: 310px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  color: white;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(36, 31, 27, 0.08), rgba(36, 31, 27, 0.78)),
    url("assets/food-4k/peynir-secimi-4k.jpg") center/cover;
  box-shadow: 0 14px 34px rgba(55, 42, 25, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(55, 42, 25, 0.18);
}

.olive-card {
  background:
    linear-gradient(180deg, rgba(36, 31, 27, 0.08), rgba(36, 31, 27, 0.78)),
    url("assets/food-4k/yesil-zeytin-4k.jpg") center/cover;
}

.honey-card {
  background:
    linear-gradient(180deg, rgba(36, 31, 27, 0.08), rgba(36, 31, 27, 0.78)),
    url("assets/food-4k/yumurta-kahvalti-4k.jpg") center/cover;
}

.category-card span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--ink);
  background: #fffaf1;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.category-card strong {
  max-width: 360px;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.12;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(55, 42, 25, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--cream);
}

.product-card > div {
  padding: 18px;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.products-hero {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 28px;
  align-items: end;
  padding: clamp(46px, 8vw, 86px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(36, 31, 27, 0.76), rgba(36, 31, 27, 0.24)),
    url("assets/food-4k/tereyagi-peynir-4k.jpg") center/cover;
  color: white;
}

.products-body {
  background: #fff8ef;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.9), rgba(15, 13, 11, 0.58), rgba(234, 88, 12, 0.22)),
    url("assets/food-4k/kahvalti-vitrin-4k.jpg") center/cover;
}

.catalog-hero-content {
  max-width: 820px;
}

.catalog-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.catalog-hero-card {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  background: rgba(255, 248, 239, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalog-hero-card span {
  width: fit-content;
  padding: 7px 10px;
  color: white;
  background: var(--charcoal);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.catalog-hero-card strong {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.catalog-hero-card a {
  color: var(--tomato);
  font-weight: 900;
}

.catalog-shell {
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 72px) clamp(60px, 8vw, 96px);
  background:
    linear-gradient(180deg, #fff8ef, #fff0dc);
}

.catalog-toolbar {
  position: sticky;
  top: 76px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(255, 248, 239, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 18, 15, 0.1);
  backdrop-filter: blur(16px);
}

.catalog-search,
.catalog-sort {
  color: var(--ink);
}

.catalog-search span,
.catalog-sort span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-search input,
.catalog-sort select {
  min-height: 54px;
  border: 1px solid rgba(21, 18, 15, 0.18);
  background: white;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.category-chip {
  min-height: 42px;
  padding: 0 15px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(21, 18, 15, 0.14);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.category-chip:hover {
  transform: translateY(-1px);
}

.category-chip.active {
  color: white;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.catalog-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 700;
}

.catalog-summary p,
.catalog-summary span {
  margin: 0;
}

.catalog-summary p {
  color: var(--ink);
  font-weight: 900;
}

.premium-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.premium-product-card {
  display: grid;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(21, 18, 15, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(21, 18, 15, 0.11);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.premium-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(21, 18, 15, 0.18);
}

.premium-product-media {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.premium-product-media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.premium-product-card:hover .premium-product-media img {
  transform: scale(1.04);
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-badges span {
  padding: 7px 10px;
  color: white;
  background: rgba(15, 13, 11, 0.88);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.product-badges .discount-badge {
  background: linear-gradient(135deg, #ff9f1c, #ea580c);
}

.favorite-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(15, 13, 11, 0.2);
  backdrop-filter: blur(12px);
}

.favorite-button.active,
.favorite-detail-button.active {
  color: white;
  background: var(--tomato);
  border-color: var(--tomato);
}

.premium-product-content {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-topline,
.product-rating,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-topline span {
  color: var(--tomato);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-topline strong {
  color: var(--muted);
  font-size: 13px;
}

.premium-product-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.premium-product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-rating {
  justify-content: start;
  color: var(--ink);
  font-weight: 900;
}

.product-rating small {
  color: var(--muted);
  font-weight: 800;
}

.price-row {
  align-items: end;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.price-row div {
  display: grid;
  gap: 2px;
}

.price-row del {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-row strong {
  color: var(--charcoal);
  font-size: 26px;
  line-height: 1;
}

.price-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: white;
  background: var(--charcoal);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--charcoal);
  background: #ffb020;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.compact-reviews {
  gap: 8px;
}

.compact-reviews blockquote {
  padding: 10px;
}

.detail-shell {
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 72px) clamp(54px, 7vw, 82px);
  background: linear-gradient(180deg, #fff8ef, #fff0dc);
}

.detail-breadcrumb {
  margin-bottom: 22px;
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: stretch;
}

.detail-media {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.detail-thumb-grid {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.detail-thumb-grid img {
  width: 100%;
  height: auto;
  min-height: 64px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(15, 13, 11, 0.24);
}

.detail-media span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  color: white;
  background: linear-gradient(135deg, #ff9f1c, #ea580c);
  border-radius: 8px;
  font-weight: 900;
}

.detail-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(21, 18, 15, 0.1);
}

.detail-content h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.98;
}

.detail-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.detail-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-weight: 900;
}

.detail-rating small {
  color: var(--muted);
}

.detail-price {
  display: grid;
  gap: 4px;
}

.detail-price del {
  color: var(--muted);
  font-weight: 800;
}

.detail-price strong {
  color: var(--charcoal);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
}

.detail-price span {
  color: var(--muted);
  font-weight: 900;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.detail-specs div {
  padding: 12px;
  background: #fff0dc;
  border-radius: 8px;
}

.detail-specs dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-specs dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.detail-variations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.detail-variations strong {
  width: 100%;
}

.detail-variations span {
  padding: 9px 11px;
  background: #fff6e3;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.related-section {
  padding: clamp(44px, 7vw, 78px) clamp(18px, 5vw, 72px);
  background: #fff8ef;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-card {
  display: grid;
  gap: 10px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 18, 15, 0.1);
}

.related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.related-card span,
.related-card strong {
  margin: 0 16px;
}

.related-card span {
  color: var(--tomato);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card strong {
  margin-bottom: 16px;
  font-size: 22px;
}

.gallery-body {
  background: #fff8ef;
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.9), rgba(15, 13, 11, 0.58), rgba(234, 88, 12, 0.2)),
    url("assets/food-4k/kahvalti-vitrin-4k.jpg") center/cover;
}

.gallery-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
}

.gallery-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 14px;
  color: white;
  background: rgba(15, 13, 11, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.breadcrumb strong {
  color: #ffb020;
}

.gallery-section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #fff8ef, #fff0dc);
}

.gallery-video-section {
  padding: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 176, 32, 0.12), transparent 24%),
    linear-gradient(180deg, #fff8ef, #fff7ed);
}

.gallery-video-heading {
  max-width: 820px;
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.gallery-video-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
  background: white;
  border: 1px solid rgba(21, 18, 15, 0.09);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(21, 18, 15, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(21, 18, 15, 0.13);
}

.gallery-video-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 168px;
  max-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 13, 11, 0.98), rgba(42, 33, 24, 0.96));
}

.gallery-video-card video {
  width: 100%;
  max-height: 230px;
  display: block;
  object-fit: contain;
  background: transparent;
}

.gallery-video-card video:fullscreen {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: #080706;
}

.gallery-video-fullscreen {
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-height: 34px;
  padding: 0 11px;
  color: white;
  background: rgba(15, 13, 11, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  backdrop-filter: blur(10px);
  transition: background 0.18s ease, transform 0.18s ease;
}

.gallery-video-fullscreen:hover,
.gallery-video-fullscreen:focus-visible {
  background: #ea580c;
  transform: translateY(-2px);
}

.gallery-video-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 15px;
}

.gallery-video-copy span {
  width: fit-content;
  padding: 6px 9px;
  color: white;
  background: linear-gradient(135deg, #ff9f1c, #ea580c);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
}

.gallery-video-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.gallery-video-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.gallery-chip {
  min-height: 42px;
  padding: 0 15px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(21, 18, 15, 0.14);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.gallery-chip.active {
  color: white;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(21, 18, 15, 0.14);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.gallery-item:hover img {
  opacity: 0.72;
  transform: scale(1.05);
}

.gallery-item > div {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 10px;
  padding: 20px;
  color: white;
  background: linear-gradient(180deg, rgba(15, 13, 11, 0), rgba(15, 13, 11, 0.92));
}

.gallery-item span {
  width: fit-content;
  padding: 7px 10px;
  color: white;
  background: linear-gradient(135deg, #ff9f1c, #ea580c);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.gallery-item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
}

.gallery-item button {
  width: fit-content;
  min-height: 38px;
  padding: 0 13px;
  color: var(--ink);
  background: white;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(15, 13, 11, 0.86);
}

.gallery-lightbox.show {
  display: grid;
}

.gallery-lightbox figure {
  width: min(1080px, 100%);
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-lightbox img {
  width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  background: #080706;
}

.gallery-lightbox figcaption {
  padding: 14px 16px;
  color: white;
  font-weight: 900;
}

.gallery-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.corporate-body {
  background: #fff8ef;
}

.corporate-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.92), rgba(15, 13, 11, 0.58), rgba(234, 88, 12, 0.18)),
    url("assets/food-4k/tereyagi-peynir-4k.jpg") center/cover;
}

.corporate-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
}

.corporate-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.corporate-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: #fff8ef;
}

.corporate-copy h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
}

.corporate-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.corporate-image-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.corporate-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.corporate-image-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.corporate-image-card span {
  color: var(--tomato);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.corporate-image-card strong {
  font-size: 22px;
  line-height: 1.18;
}

.corporate-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--line);
}

.corporate-stats article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 26px;
  background: var(--charcoal);
  color: white;
}

.corporate-stats strong {
  color: #ffb020;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.corporate-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.corporate-values,
.corporate-categories {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.corporate-values {
  background:
    linear-gradient(180deg, #fff0dc, #fff8ef);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-grid article {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 18, 15, 0.1);
}

.value-grid span {
  width: fit-content;
  padding: 7px 10px;
  color: white;
  background: linear-gradient(135deg, #ff9f1c, #ea580c);
  border-radius: 8px;
  font-weight: 900;
}

.value-grid h3,
.value-grid p {
  margin: 0;
}

.value-grid h3 {
  font-size: 24px;
  line-height: 1.12;
}

.value-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.corporate-categories {
  background: #fff8ef;
}

.corporate-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.corporate-category-grid a {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 22px;
  color: white;
  background:
    linear-gradient(180deg, rgba(15, 13, 11, 0.1), rgba(15, 13, 11, 0.88)),
    url("assets/food-4k/peynir-secimi-4k.jpg") center/cover;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(21, 18, 15, 0.13);
}

.corporate-category-grid a:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(15, 13, 11, 0.1), rgba(15, 13, 11, 0.88)),
    url("assets/food-4k/kahvalti-vitrin-4k.jpg") center/cover;
}

.corporate-category-grid a:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(15, 13, 11, 0.1), rgba(15, 13, 11, 0.88)),
    url("assets/food-4k/sarkuteri-sofra-4k.jpg") center/cover;
}

.corporate-category-grid a:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(15, 13, 11, 0.1), rgba(15, 13, 11, 0.88)),
    url("assets/food-4k/kahvalti-vitrin-4k.jpg") center/cover;
}

.corporate-category-grid span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--ink);
  background: #ffb020;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.corporate-category-grid strong {
  font-size: 22px;
  line-height: 1.15;
}

.corporate-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(46px, 7vw, 78px) clamp(18px, 5vw, 72px);
  color: white;
  background: var(--charcoal);
}

.corporate-cta h2,
.corporate-cta p {
  margin: 0;
}

.corporate-cta h2 {
  max-width: 840px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.04;
}

.corporate-cta p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.corporate-cta .secondary-button {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
}

.products-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
}

.products-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.search-box {
  color: white;
}

.search-box input {
  min-height: 54px;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.94);
}

.product-page-section {
  background: #f4f0e6;
}

.product-detail-card > div {
  display: grid;
  gap: 12px;
}

.product-meta,
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--olive);
  font-weight: 800;
}

.product-meta span,
.rating-summary {
  width: fit-content;
  padding: 7px 10px;
  background: #eef1e7;
  border-radius: 8px;
}

.product-reviews {
  display: grid;
  gap: 10px;
}

.product-reviews blockquote,
.review-card {
  margin: 0;
  padding: 14px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
  border-radius: 7px;
}

.product-review-photo {
  aspect-ratio: 4 / 3;
  margin-top: 8px;
}

.product-reviews blockquote p,
.review-card p {
  margin: 7px 0;
}

.product-reviews cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.product-review-form,
.review-form {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: #f7edd8;
  border-radius: 8px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.reviews-section {
  background: #fff6e3;
}

.announcements-section {
  background: linear-gradient(180deg, #fff8ef, #fff0dc);
}

.announcement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.announcement-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: clamp(18px, 3vw, 28px);
  color: white;
  background: linear-gradient(135deg, var(--charcoal), #2d2118);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 13, 11, 0.18);
}

.announcement-card:nth-child(2) {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.announcement-card:nth-child(3) {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.announcement-card span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  color: var(--charcoal);
  background: #ffb020;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.announcement-card h3,
.announcement-card p {
  margin: 0;
}

.announcement-card h3 {
  font-size: clamp(22px, 3vw, 30px);
}

.announcement-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.announcement-card:nth-child(3) p {
  color: var(--muted);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.review-score-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 24px;
  color: white;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.review-score {
  color: #ffb020;
  font-size: 70px;
  font-weight: 900;
  line-height: 0.9;
}

.review-score-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.review-score-card a {
  width: fit-content;
  color: #ffb020;
  font-weight: 900;
}

.stars {
  color: var(--honey);
  font-size: 18px;
  font-weight: 800;
}

.login-note {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  background: #fff7f3;
  border: 1px solid rgba(169, 70, 44, 0.22);
  border-radius: 8px;
  line-height: 1.6;
}

.faq-section {
  background: #fff8ef;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(21, 18, 15, 0.08);
}

.faq-grid summary {
  padding: 18px;
  cursor: pointer;
  font-weight: 900;
}

.faq-grid p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  background: #eef1e7;
}

.location-section {
  background: #f4f0e6;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 20px;
  align-items: stretch;
}

.map-frame {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(55, 42, 25, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 64, 56, 0.08), transparent 42%);
  pointer-events: none;
}

.map-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 62px rgba(15, 13, 11, 0.18);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  border: 0;
}

.location-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  color: white;
  background: linear-gradient(135deg, #11100e, #f23b32);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease;
}

.location-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: orbitFloat 10s ease-in-out infinite;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-card h3,
.location-card p,
.location-card ul {
  margin: 0;
}

.location-card h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.location-card p,
.location-card li {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.location-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.location-card .primary-button {
  color: #f23b32;
  background: white;
  box-shadow: none;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
}

.contact a {
  color: var(--olive);
  font-weight: 800;
}

.contact-form {
  padding: clamp(18px, 3vw, 28px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(55, 42, 25, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 62px rgba(15, 13, 11, 0.16);
}

.contact-info ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-form,
.auth-form,
.admin-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 64, 56, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 64, 56, 0.12);
}

.account-section {
  background: #fff6e3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.favorite-preview {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.compact-heading {
  margin-bottom: 0;
}

.compact-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.favorite-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.favorite-preview-card,
.favorite-empty {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(21, 18, 15, 0.08);
}

.favorite-preview-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 7px;
}

.favorite-preview-card span,
.favorite-preview-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.favorite-empty {
  grid-column: 1 / -1;
  align-items: start;
  padding: 20px;
}

.favorite-empty p {
  margin: 0;
  color: var(--muted);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 6vw, 92px) 26px;
  color: white;
  background:
    radial-gradient(circle at 18% 30%, rgba(58, 165, 35, 0.38), transparent 28%),
    radial-gradient(circle at 58% -12%, rgba(255, 176, 32, 0.16), transparent 24%),
    linear-gradient(135deg, #0f6f00, #126f04 46%, #0b5d03);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 17%, rgba(255, 255, 255, 0.04) 17% 23%, transparent 23% 100%),
    linear-gradient(70deg, transparent 0 40%, rgba(255, 255, 255, 0.035) 40% 48%, transparent 48% 100%);
  opacity: 0.8;
  pointer-events: none;
  animation: footerGlow 8s ease-in-out infinite;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 48%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 32, 0.94), rgba(255, 255, 255, 0.78), transparent);
  animation: footerLight 5s linear infinite;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(220px, 0.85fr) minmax(240px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.footer h2 {
  margin: 0 0 26px;
  color: white;
  font-size: 20px;
  line-height: 1.2;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 12px 34px;
}

.footer-links a,
.footer-contact-block a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-links a:hover,
.footer-contact-block a:hover {
  color: #ffb020;
  transform: translateX(3px);
}

.footer-brand-panel {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  animation: footerLogoFloat 4.8s ease-in-out infinite;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}

.footer-social {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.18s ease, transform 0.18s ease;
}

.footer-social a:hover {
  background: #ff8a00;
  transform: translateY(-4px);
}

.footer-contact-block address {
  display: grid;
  gap: 14px;
  margin: 0;
  font-style: normal;
}

.footer-contact-block p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 800;
  line-height: 1.7;
}

.footer-contact-block span {
  min-width: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1180px;
  margin: 54px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  font-size: 13px;
  font-weight: 800;
}

.back-to-top {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: white;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  background: #ff8a00;
  box-shadow: 0 16px 28px rgba(255, 138, 0, 0.26);
  transition: transform 0.18s ease, background 0.18s ease;
  animation: footerButtonPulse 2.4s ease-in-out infinite;
}

.back-to-top:hover {
  background: #ff4038;
  transform: translateY(-4px);
}

.footer-doodle {
  position: absolute;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
}

.footer-doodle-cheese {
  left: clamp(18px, 5vw, 88px);
  top: 34%;
  width: 128px;
  height: 78px;
  border: 4px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px 44px 12px 12px;
  transform: rotate(5deg);
  animation: footerDoodleDrift 7s ease-in-out infinite;
}

.footer-doodle-cheese::before,
.footer-doodle-cheese::after {
  content: "";
  position: absolute;
  border: 4px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.footer-doodle-cheese::before {
  left: 22px;
  top: 22px;
  width: 20px;
  height: 14px;
}

.footer-doodle-cheese::after {
  right: 26px;
  top: 28px;
  width: 24px;
  height: 18px;
}

.footer-doodle-olive {
  left: 14%;
  bottom: 58px;
  width: 72px;
  height: 72px;
  border: 5px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  animation: footerDoodleDrift 6.5s ease-in-out infinite reverse;
}

.footer-doodle-olive::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -36px;
  width: 92px;
  height: 34px;
  border: 5px solid rgba(255, 255, 255, 0.48);
  border-radius: 50% 50% 50% 0;
  transform: rotate(22deg);
}

.footer-doodle-pack {
  right: clamp(18px, 5vw, 82px);
  bottom: 72px;
  width: 106px;
  height: 70px;
  border: 4px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  transform: rotate(-15deg);
  animation: footerDoodleDrift 7.6s ease-in-out infinite;
}

.footer-doodle-pack::before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -18px;
  width: 96px;
  height: 42px;
  border: 4px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  transform: rotate(-8deg);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.social-links a {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  transition: color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.social-links a:hover {
  color: #ffb020;
  border-color: rgba(255, 176, 32, 0.55);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .announcement-bar {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 10px 18px;
    text-align: center;
  }

  .announcement-group {
    justify-content: center;
    gap: 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .footer-links {
    max-width: 420px;
    margin: 0 auto;
  }

  .footer-contact-block address {
    max-width: 420px;
    margin: 0 auto;
  }

  .footer-contact-block p {
    justify-content: center;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
    text-align: center;
  }

  .back-to-top {
    grid-column: auto;
    grid-row: 1;
  }
}

@media (max-width: 560px) {
  .announcement-bar {
    font-size: 12px;
  }

  .announcement-item {
    white-space: normal;
  }

  .announcement-separator {
    display: none;
  }

  .footer {
    padding: 42px 18px 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 108px;
    height: 108px;
  }

  .footer-doodle {
    opacity: 0.14;
  }

  .footer-doodle-cheese {
    left: -34px;
    top: 20%;
  }

  .footer-doodle-olive {
    left: -12px;
    bottom: 96px;
  }

  .footer-doodle-pack {
    right: -38px;
    bottom: 112px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(36, 31, 27, 0.55);
}

.modal.show {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(460px, 100%);
  padding: 24px;
  background: var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--muted);
  font-size: 28px;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 42px 20px 0;
}

.tab {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-weight: 800;
}

.tab.active {
  color: white;
  background: var(--olive);
}

.hidden {
  display: none !important;
}

.admin-body {
  min-height: 100vh;
  background: #f4f0e6;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 75px);
}

.admin-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  background: var(--ink);
}

.admin-nav {
  min-height: 44px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.admin-nav.active,
.admin-nav:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.admin-content {
  padding: clamp(22px, 4vw, 44px);
}

.admin-page-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.admin-page-heading h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.admin-page-heading p:not(.eyebrow),
.admin-card p,
.admin-row span,
.admin-row small,
.empty-state {
  color: var(--muted);
  line-height: 1.7;
}

.admin-screen {
  display: grid;
  gap: 20px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admin-metric-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.metric-card,
.admin-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(55, 42, 25, 0.08);
}

.metric-card {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.metric-card span {
  color: var(--muted);
  font-weight: 700;
}

.metric-card strong {
  font-size: clamp(28px, 4vw, 44px);
}

.admin-card {
  padding: 22px;
}

.admin-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.admin-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.admin-card-title h2 {
  margin-bottom: 0;
}

.admin-card-title input {
  max-width: 280px;
}

.admin-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-inline-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 18px;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.wide-field {
  grid-column: 1 / -1;
}

.admin-slider-preview {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: #fffaf4;
  border: 1px solid rgba(234, 88, 12, 0.18);
  border-radius: 8px;
}

.admin-slider-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(55, 42, 25, 0.12);
}

.admin-slider-preview span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.gallery-empty-state {
  grid-column: 1 / -1;
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 28px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(234, 88, 12, 0.28);
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
}

.admin-table {
  display: grid;
  gap: 10px;
}

.admin-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-row.no-image {
  grid-template-columns: 1fr auto;
}

.admin-row img {
  width: 92px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}

.admin-row strong,
.admin-row span,
.admin-row small {
  display: block;
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-import-label {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.admin-code-box {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.admin-code-box pre {
  max-height: 180px;
  overflow: auto;
  padding: 12px;
  color: #f8fafc;
  background: var(--charcoal);
  border-radius: 8px;
  white-space: pre-wrap;
}

.admin-profile-detail,
.admin-profile-card {
  display: grid;
  gap: 12px;
}

.admin-profile-card {
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-chart {
  display: grid;
  gap: 12px;
}

.chart-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(120px, 2fr) auto;
  gap: 12px;
  align-items: center;
}

.chart-row span,
.chart-row strong {
  font-weight: 900;
}

.chart-row div {
  height: 12px;
  overflow: hidden;
  background: #f2dfbf;
  border-radius: 999px;
}

.chart-row i {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, #ff9f1c, #ea580c);
  border-radius: inherit;
}

.unread-row {
  border-color: rgba(234, 88, 12, 0.45);
  background: #fff5e8;
}

.check-ok {
  border-color: rgba(22, 163, 74, 0.32);
  background: #f0fdf4;
}

.check-warn {
  border-color: rgba(234, 88, 12, 0.34);
  background: #fff7ed;
}

.admin-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(430px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-item img {
  width: 74px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
}

.admin-item strong,
.admin-item small {
  display: block;
}

.admin-item small {
  color: var(--muted);
}

.delete-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--tomato);
  background: #fff7f3;
  cursor: pointer;
  font-weight: 800;
}

.admin-login-shell {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  padding: clamp(22px, 5vw, 54px);
  background:
    radial-gradient(circle at 12% 18%, rgba(249, 115, 22, 0.14), transparent 28%),
    linear-gradient(135deg, #fff8ef 0%, #f7efe1 48%, #111111 48%, #111111 100%);
}

.admin-login-card {
  width: min(560px, 100%);
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 250, 241, 0.96);
  border: 1px solid rgba(20, 18, 16, 0.1);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(15, 13, 11, 0.2);
}

.admin-login-card h1 {
  margin: 8px 0 10px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}

.admin-login-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.admin-login-footer a {
  color: var(--orange-dark);
  font-weight: 900;
}

.admin-layout-fresh .admin-sidebar {
  position: sticky;
  top: 75px;
  min-height: calc(100vh - 75px);
}

.admin-sidebar-title {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-home-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

button.admin-nav,
button.ghost-button {
  font: inherit;
}

.admin-login-footer button {
  padding: 0;
  color: var(--orange-dark);
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.admin-notice {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 900;
}

.admin-notice.success {
  color: #14532d;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.admin-notice.error {
  color: #7f1d1d;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.admin-dashboard-strip {
  margin-bottom: 20px;
}

.admin-dashboard-strip .metric-card strong {
  font-size: clamp(20px, 2.4vw, 34px);
}

.admin-help-card {
  color: white;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.88)),
    var(--ink);
}

.admin-help-card p {
  color: rgba(255, 255, 255, 0.72);
}

.admin-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.admin-product-row {
  grid-template-columns: 92px minmax(0, 1fr) minmax(220px, 360px) auto;
}

.admin-edit-box {
  min-width: 0;
}

.admin-edit-box summary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ef;
  cursor: pointer;
  font-weight: 900;
}

.admin-edit-box[open] {
  grid-column: 1 / -1;
  padding: 14px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-edit-box[open] summary {
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .admin-product-row {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .admin-product-row .admin-edit-box,
  .admin-product-row .row-actions {
    grid-column: 1 / -1;
  }

  .admin-login-shell {
    background: #fff8ef;
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  display: none;
  transform: translateX(-50%);
  padding: 12px 16px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.toast.show {
  display: block;
}

.content-body {
  background: linear-gradient(180deg, #fff8ef 0%, #fff0dc 100%);
}

.content-hero {
  min-height: 420px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 72px);
  color: white;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.8), rgba(15, 13, 11, 0.2)),
    url("assets/food-4k/kahvalti-vitrin-4k.jpg") center/cover;
}

.content-hero h1,
.content-hero p {
  max-width: 760px;
  margin: 0;
}

.content-hero h1 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.content-hero > p:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.campaign-hero {
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.78), rgba(15, 13, 11, 0.14)),
    url("assets/food-4k/sarkuteri-sofra-4k.jpg") center/cover;
}

.campaign-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 176, 32, 0.22), transparent 30%),
    linear-gradient(135deg, #fff8ef 0%, #f7f7f5 52%, #efe2cd 100%);
}

.campaign-page-copy {
  max-width: 760px;
}

.campaign-page-copy h1,
.campaign-page-copy p {
  margin: 0;
}

.campaign-page-copy h1 {
  margin-top: 12px;
  color: var(--charcoal);
  font-size: clamp(42px, 6.6vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.campaign-page-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.7;
}

.campaign-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.campaign-hero-poster {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: clamp(10px, 1.3vw, 16px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 31, 27, 0.12);
  border-radius: 8px;
  box-shadow: 0 34px 86px rgba(36, 31, 27, 0.18);
}

.campaign-hero-poster img {
  width: 100%;
  max-height: min(680px, 72vh);
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

.campaign-card-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px clamp(18px, 5vw, 72px);
  color: white;
  background: linear-gradient(135deg, var(--charcoal), #2a2118);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.campaign-card-strip > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.campaign-card-strip > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.campaign-card-strip strong {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 13px;
}

.campaign-showcase {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: #fff8ef;
}

.campaign-section-heading {
  max-width: 760px;
  margin: 0 auto clamp(28px, 5vw, 48px);
  text-align: center;
}

.campaign-section-heading h2,
.campaign-section-heading p {
  margin: 0;
}

.campaign-section-heading h2 {
  color: var(--charcoal);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.campaign-section-heading > p:not(.eyebrow) {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.campaign-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
  max-width: 1180px;
  margin: 0 auto;
}

.campaign-feature-card {
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(36, 31, 27, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(36, 31, 27, 0.11);
}

.campaign-feature-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: contain;
  background: #f0e4cf;
}

.campaign-feature-card > div {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.5vw, 26px);
}

.campaign-feature-card span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  color: white;
  background: var(--charcoal);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.campaign-feature-card h3,
.campaign-feature-card p {
  margin: 0;
}

.campaign-feature-card h3 {
  color: var(--charcoal);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.05;
  letter-spacing: 0;
}

.campaign-feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

.campaign-service-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(135deg, rgba(36, 31, 27, 0.96), rgba(66, 48, 29, 0.92)),
    url("assets/food-4k/peynir-secimi-4k.jpg") center/cover;
}

.campaign-service-panel h2,
.campaign-service-panel p {
  max-width: 780px;
  margin: 0;
}

.campaign-service-panel h2 {
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.campaign-service-panel > div > p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.campaign-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .campaign-page-hero,
  .campaign-service-panel {
    grid-template-columns: 1fr;
  }

  .campaign-page-copy,
  .campaign-page-copy > p:not(.eyebrow),
  .campaign-service-panel h2,
  .campaign-service-panel p {
    max-width: none;
  }

  .campaign-hero-poster {
    width: min(520px, 100%);
    justify-self: center;
  }

  .campaign-card-strip {
    grid-template-columns: 1fr;
  }

  .campaign-card-strip > div,
  .campaign-service-actions {
    justify-content: flex-start;
  }

  .campaign-gallery {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .campaign-page-hero,
  .campaign-showcase,
  .campaign-service-panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .campaign-page-copy h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .campaign-hero-actions,
  .campaign-service-actions {
    display: grid;
  }

  .campaign-hero-actions a,
  .campaign-service-actions a {
    width: 100%;
  }

  .campaign-card-strip {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.recipe-hero {
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.78), rgba(15, 13, 11, 0.16)),
    url("assets/food-4k/bal-kaymak-4k.jpg") center/cover;
}

.brand-hero {
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.78), rgba(15, 13, 11, 0.18)),
    url("assets/food-4k/yesil-zeytin-4k.jpg") center/cover;
}

.gift-hero {
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.8), rgba(15, 13, 11, 0.2)),
    url("assets/food-4k/kahvalti-vitrin-4k.jpg") center/cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.8), rgba(15, 13, 11, 0.18)),
    url("assets/food-4k/kahvalti-vitrin-4k.jpg") center/cover;
}

.feature-page {
  padding: clamp(38px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.offer-grid,
.recipe-grid,
.brand-grid,
.hours-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hours-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.offer-grid article,
.recipe-grid article,
.brand-grid article,
.hours-layout article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: clamp(18px, 3vw, 28px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(21, 18, 15, 0.1);
}

.recipe-grid article {
  padding: 0;
  overflow: hidden;
}

.recipe-grid article > div {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.recipe-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.brand-grid strong {
  font-size: 22px;
}

.offer-grid article:first-child,
.hours-layout article:first-child {
  color: white;
  background: linear-gradient(135deg, var(--charcoal), #2a2118);
}

.offer-grid span,
.recipe-grid span,
.brand-grid span,
.hours-layout span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  color: white;
  background: var(--tomato);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.offer-grid h2,
.recipe-grid h2,
.brand-grid h2,
.hours-layout h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0;
}

.offer-grid p,
.recipe-grid p,
.brand-grid p,
.hours-layout p,
.hours-layout li {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.offer-grid article:first-child p,
.hours-layout article:first-child p,
.hours-layout article:first-child li {
  color: rgba(255, 255, 255, 0.76);
}

.recipe-hero-premium {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
}

.recipe-hero-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.recipe-hero-copy h1,
.recipe-hero-copy p {
  margin: 0;
}

.recipe-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.recipe-hero-visual {
  position: relative;
  min-height: 390px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(21, 18, 15, 0.24);
  transform: rotate(2deg);
}

.recipe-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.recipe-hero-visual span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: white;
  background: var(--tomato);
  border-radius: 999px;
  font-weight: 900;
}

.recipe-intro-panel,
.recipe-service-band,
.recipe-cta-panel {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(32px, 6vw, 76px) auto;
  padding: clamp(22px, 4vw, 42px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 56px rgba(21, 18, 15, 0.09);
}

.recipe-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 20px;
  align-items: center;
}

.recipe-intro-panel h2,
.recipe-service-band h2,
.recipe-cta-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0;
}

.recipe-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.recipe-intro-tags span {
  padding: 10px 13px;
  color: var(--charcoal);
  background: #fff4e9;
  border: 1px solid rgba(234, 88, 12, 0.18);
  border-radius: 999px;
  font-weight: 900;
}

.recipes-premium-section {
  padding-top: 0;
}

.recipe-premium-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recipe-card-pro {
  transition:
    transform 0.34s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.34s ease;
}

.recipe-card-pro:hover,
.recipe-card-pro:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(21, 18, 15, 0.16);
}

.recipe-card-pro img {
  aspect-ratio: 16 / 11;
}

.recipe-card-pro ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.recipe-card-pro li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.recipe-card-pro li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  background: var(--tomato);
  border-radius: 999px;
}

.recipe-service-band {
  display: grid;
  gap: 26px;
  color: white;
  background:
    linear-gradient(135deg, rgba(20, 17, 15, 0.94), rgba(20, 17, 15, 0.72)),
    url("assets/food-4k/siyah-sari-zeytin-4k.jpg") center/cover;
}

.recipe-service-band .eyebrow,
.recipe-service-band h2 {
  color: white;
}

.recipe-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.recipe-service-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.recipe-service-grid strong {
  color: white;
  font-size: 18px;
}

.recipe-service-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.recipe-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(48px, 8vw, 92px);
  background: #fff7ed;
}

.recipe-cta-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.legal-page {
  width: min(1120px, calc(100% - 32px));
  margin: clamp(34px, 6vw, 76px) auto;
}

.legal-page {
  display: grid;
  gap: 16px;
}

.legal-page article {
  padding: clamp(18px, 3vw, 30px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(21, 18, 15, 0.09);
}

.legal-page h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-page p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.not-found-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  align-content: center;
  gap: 16px;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.not-found-page img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.not-found-page h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 74px);
  letter-spacing: 0;
}

.not-found-page p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .recipe-hero-premium,
  .recipe-intro-panel {
    grid-template-columns: 1fr;
  }

  .recipe-hero-visual {
    min-height: 300px;
    transform: none;
  }

  .recipe-hero-visual img {
    min-height: 300px;
  }

  .recipe-premium-grid,
  .recipe-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recipe-intro-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .recipe-hero-premium {
    gap: 20px;
  }

  .recipe-hero-actions,
  .recipe-cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .recipe-hero-actions a,
  .recipe-cta-panel a {
    width: 100%;
  }

  .recipe-hero-visual {
    min-height: 220px;
  }

  .recipe-hero-visual img {
    min-height: 220px;
  }

  .recipe-intro-panel,
  .recipe-service-band,
  .recipe-cta-panel {
    width: min(100% - 20px, 1180px);
    margin-block: 28px;
    padding: 18px;
  }

  .recipe-premium-grid,
  .recipe-service-grid {
    grid-template-columns: 1fr;
  }

  .recipe-intro-panel h2,
  .recipe-service-band h2,
  .recipe-cta-panel h2 {
    font-size: 26px;
  }

  .recipe-card-pro img {
    aspect-ratio: 16 / 10;
  }

  .recipe-card-pro li,
  .recipe-service-grid p {
    font-size: 14px;
  }
}

.hours-layout ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.campaign-popup {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 13, 11, 0.58);
  backdrop-filter: blur(8px);
}

.campaign-popup.show {
  display: flex;
}

.campaign-popup-card {
  position: relative;
  width: min(520px, 100%);
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
  color: white;
  background:
    linear-gradient(135deg, rgba(15, 13, 11, 0.92), rgba(234, 88, 12, 0.78)),
    url("assets/food-4k/kahvalti-vitrin-4k.jpg") center/cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.campaign-popup-card > span {
  width: max-content;
  padding: 7px 10px;
  color: var(--charcoal);
  background: #ffb020;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.campaign-popup-card h2,
.campaign-popup-card p {
  margin: 0;
}

.campaign-popup-card h2 {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
}

.campaign-popup-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.campaign-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
}

.campaign-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.maintenance-notice {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 13, 11, 0.72);
  backdrop-filter: blur(10px);
}

.maintenance-notice > div {
  width: min(520px, 100%);
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 36px);
  color: white;
  background: linear-gradient(135deg, var(--charcoal), #2a2118);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.maintenance-notice strong {
  font-size: clamp(28px, 5vw, 44px);
}

.maintenance-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.admin-mini-chart {
  min-height: 180px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.08), rgba(20, 17, 15, 0.04));
  border: 1px solid rgba(20, 17, 15, 0.08);
  border-radius: 8px;
}

.admin-mini-chart span {
  flex: 1;
  min-height: 8px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--orange), var(--charcoal));
}

.admin-repeat-row {
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(20, 17, 15, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.detail-thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.detail-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid rgba(20, 17, 15, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  cursor: pointer;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.google-review-section {
  background: #fff8ef;
}

.google-review-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  color: white;
  background: linear-gradient(135deg, var(--charcoal), #2a2118);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.google-review-card h2,
.google-review-card p {
  margin: 0;
}

.google-review-card p:last-child {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.instagram-section {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 72px) clamp(44px, 6vw, 72px);
  background:
    linear-gradient(180deg, #f7f7f5 0%, #fff8ef 100%);
  border-top: 1px solid rgba(36, 31, 27, 0.08);
}

.instagram-heading {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 clamp(24px, 4vw, 38px);
  text-align: center;
}

.instagram-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.instagram-heading h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(24px, 3.8vw, 44px);
  font-weight: 800;
  letter-spacing: 0;
}

.instagram-heading p {
  max-width: 520px;
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(36, 31, 27, 0.14);
}

.instagram-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  color: white;
  background: #15120f;
  isolation: isolate;
  transition: all 0.4s ease;
}

.instagram-card + .instagram-card {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.instagram-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.4s ease;
}

.instagram-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  transition: all 0.4s ease;
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px;
  opacity: 0;
  color: white;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
  transition: all 0.4s ease;
}

.instagram-icon {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
}

.instagram-overlay strong {
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 900;
}

.instagram-overlay small {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 800;
}

.instagram-card:hover img,
.instagram-card:focus-visible img {
  transform: scale(1.08);
}

.instagram-card:hover::before,
.instagram-card:focus-visible::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
}

.instagram-card:hover .instagram-overlay,
.instagram-card:focus-visible .instagram-overlay {
  opacity: 1;
}

.instagram-profile-link {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: clamp(22px, 4vw, 34px) auto 0;
  padding: 0 18px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(36, 31, 27, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  transition: all 0.4s ease;
}

.instagram-profile-link:hover,
.instagram-profile-link:focus-visible {
  color: white;
  background: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(36, 31, 27, 0.16);
}

@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .instagram-card + .instagram-card {
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .instagram-section {
    padding-right: 0;
    padding-left: 0;
  }

  .instagram-heading {
    padding-right: 18px;
    padding-left: 18px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-hero {
    min-height: auto;
    height: clamp(660px, calc(100svh - 78px), 760px);
    padding: 56px 18px 42px;
    overflow: hidden;
  }

  .home-hero-content {
    width: 100%;
    min-width: 0;
  }

  .home-hero-content h1 {
    font-size: clamp(42px, 14vw, 64px);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .home-hero-content p:not(.eyebrow) {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-product-stage {
    inset: 0;
  }

  .hero-image-slider {
    top: 62%;
    right: -10vw;
    width: min(620px, 92vw);
    height: min(430px, 46vh);
  }

  .natural-badge {
    top: 42%;
    right: auto;
    left: 4%;
    width: 104px;
    height: 104px;
  }

  .badge-fresh,
  .badge-local,
  .badge-payment {
    min-width: 112px;
    min-height: 66px;
    padding: 10px 12px;
  }

  .badge-fresh {
    top: 44%;
    right: 7%;
  }

  .badge-local {
    right: auto;
    left: 3%;
    bottom: 12%;
  }

  .badge-payment {
    right: 4%;
    bottom: 10%;
  }

  .hero-arrow {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }

  .hero-arrow-left {
    left: 14px;
  }

  .hero-arrow-right {
    right: 14px;
  }

  .hero-slide-dots {
    left: 18px;
    bottom: 22px;
  }

  .leaf {
    width: 58px;
    height: 26px;
  }

  .leaf-two,
  .leaf-three {
    display: none;
  }

  .home-nature,
  .category-showcase-heading,
  .home-identity,
  .home-product-row,
  .home-map-showcase {
    grid-template-columns: 1fr;
  }

  .home-map-showcase,
  .map-promo-panel,
  .map-live-panel,
  .home-map-showcase .map-frame,
  .home-map-showcase .map-frame iframe {
    min-height: 360px;
  }

  .map-promo-panel {
    padding: 56px 24px;
  }

  .map-promo-overlay {
    background:
      linear-gradient(135deg, rgba(130, 0, 0, 0.96) 0%, rgba(158, 0, 0, 0.92) 58%, transparent 58.2%),
      linear-gradient(90deg, rgba(91, 0, 0, 0.9), rgba(156, 0, 0, 0.22) 76%, transparent);
  }

  .home-category-showcase {
    padding-top: 56px;
  }

  .category-showcase-heading {
    max-width: 620px;
    margin-bottom: 28px;
    text-align: center;
  }

  .category-showcase-heading .script-eyebrow,
  .category-showcase-heading h2 {
    max-width: none;
    text-align: center;
  }

  .category-showcase-heading h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .category-showcase-heading > p {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  .category-showcase-heading .script-eyebrow {
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .category-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .category-showcase-card:last-child {
    grid-column: 1 / -1;
  }

  .identity-photo {
    min-height: 0;
  }

  .identity-photo img {
    height: 360px;
  }

  .identity-copy {
    padding-top: 0;
    text-align: left;
  }

  .script-eyebrow {
    transform: none;
  }

  .identity-cheese-line {
    right: -12%;
    top: 34%;
  }

  .identity-cards {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0;
  }

  .identity-card {
    min-height: 0;
  }

  .home-product {
    grid-template-columns: 108px 1fr;
    align-items: center;
  }

  .home-product img {
    height: 92px;
    aspect-ratio: auto;
  }

  .menu-button {
    flex: 0 0 auto;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 24px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 60;
  }

  .nav.open {
    display: grid;
  }

  .nav .primary-button,
  .nav .ghost-button {
    width: 100%;
  }

  .auth-buttons,
  .user-menu,
  .admin-top-actions,
  .account-actions {
    display: grid;
    width: 100%;
  }

  .strip,
  .promo-grid,
  .category-grid,
  .catalog-hero,
  .gallery-hero,
  .corporate-hero,
  .corporate-intro,
  .corporate-stats,
  .value-grid,
  .corporate-category-grid,
  .corporate-cta,
  .detail-layout,
  .related-grid,
  .reviews-layout,
  .faq-grid,
  .announcement-grid,
  .google-review-card,
  .favorite-preview-grid,
  .offer-grid,
  .recipe-grid,
  .brand-grid,
  .hours-layout,
  .catalog-toolbar,
  .product-grid,
  .product-grid-wide,
  .premium-product-grid,
  .gallery-video-grid,
  .gallery-grid,
  .review-grid,
  .about,
  .contact,
  .location-layout,
  .metric-grid,
  .admin-grid-2,
  .admin-form-grid,
  .admin-inline-form,
  .admin-slider-preview,
  .chart-row,
  .products-hero,
  .hero-pro {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    align-self: stretch;
  }

  .gallery-video-feature {
    grid-row: auto;
  }

  .gallery-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-toolbar {
    position: static;
  }

  .catalog-summary {
    display: grid;
  }

  .review-score-card {
    position: static;
  }

  .breadcrumb {
    justify-self: start;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
  }

  .wide-field {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .topbar {
    gap: 10px;
    min-height: 96px;
    padding: 12px 18px;
    width: 100%;
  }

  .brand {
    gap: 8px;
    flex: 0 1 min(300px, calc(100% - 116px));
    max-width: min(300px, calc(100% - 116px));
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand-mark {
    width: 92px;
    height: 74px;
    flex: 0 0 auto;
  }

  .brand strong {
    max-width: 142px;
    font-size: 17px;
  }

  .brand small {
    max-width: 142px;
    font-size: 12px;
  }

  .menu-button {
    position: absolute;
    top: 50%;
    right: clamp(82px, 20vw, 118px);
    z-index: 70;
    display: grid !important;
    margin-left: auto;
    width: 40px;
    height: 40px;
    color: #1f2933;
    background: white;
    transform: translateY(-50%);
  }

  .nav {
    right: 12px;
    left: 12px;
  }

  .hero {
    min-height: calc(100svh - 34px);
    align-items: end;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions a {
    width: 100%;
  }

  .catalog-hero h1 {
    font-size: 40px;
  }

  .category-filter {
    flex-wrap: nowrap;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 6px;
    overflow-x: auto;
  }

  .gallery-filter {
    flex-wrap: nowrap;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 6px;
    overflow-x: auto;
  }

  .gallery-chip {
    min-width: max-content;
  }

  .category-showcase-grid {
    grid-template-columns: 1fr;
  }

  .home-category-showcase {
    overflow: hidden;
  }

  .category-showcase-heading {
    width: 100%;
    max-width: 100%;
  }

  .category-showcase-heading .script-eyebrow,
  .category-showcase-heading h2,
  .category-showcase-heading > p {
    max-width: min(320px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .category-showcase-heading h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .category-showcase-card:last-child {
    grid-column: auto;
  }

  .category-showcase-card {
    min-height: 152px;
  }

  .gallery-hero h1 {
    font-size: 40px;
  }

  .corporate-hero h1 {
    font-size: 40px;
  }

  .corporate-stats {
    padding: 0;
  }

  .corporate-cta {
    align-items: start;
  }

  .category-chip {
    min-width: max-content;
  }

  .premium-product-content {
    padding: 16px;
  }

  .product-topline,
  .price-row {
    align-items: start;
    flex-direction: column;
  }

  .detail-media img {
    min-height: 320px;
  }

  .detail-specs {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }

  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-sidebar {
    grid-template-columns: 1fr;
  }

  .admin-card-title {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-card-title input {
    max-width: none;
  }

  .admin-row {
    grid-template-columns: 68px 1fr auto;
  }

  .admin-row.no-image {
    grid-template-columns: 1fr;
  }

  .row-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-row img {
    width: 68px;
    height: 58px;
  }

  .content-hero {
    min-height: 360px;
  }

  .admin-item {
    grid-template-columns: 58px 1fr auto;
  }

  .admin-item img {
    width: 58px;
    height: 52px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 14px;
  }

  .announcement-bar {
    min-height: 34px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .announcement-group {
    gap: 9px;
  }

  .announcement-item {
    gap: 5px;
  }

  .announcement-social {
    gap: 8px;
  }

  .topbar {
    min-height: 78px;
    padding: 8px 12px;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand-mark {
    width: 66px;
    height: 54px;
  }

  .brand strong {
    max-width: 128px;
    font-size: 15px;
    line-height: 1.05;
  }

  .brand small {
    max-width: 128px;
    font-size: 10px;
  }

  .menu-button {
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .nav {
    right: 10px;
    left: 10px;
    padding: 12px;
  }

  .home-hero {
    gap: 14px;
    height: 640px;
    padding: 26px 14px 28px;
  }

  .hero-product-stage {
    inset: 0;
    margin: 0;
  }

  .hero-image-slider {
    top: 70%;
    right: -34vw;
    width: min(430px, 112vw);
    height: min(300px, 42vh);
    border-radius: 28% 34% 26% 32%;
    filter: drop-shadow(0 18px 18px rgba(31, 41, 51, 0.18));
  }

  .natural-badge {
    top: 50%;
    left: 5%;
    right: auto;
    width: 68px;
    height: 68px;
    font-size: 22px;
  }

  .natural-badge span {
    font-size: 11px;
  }

  .badge-fresh,
  .badge-local,
  .badge-payment {
    min-width: 82px;
    min-height: 48px;
    padding: 7px 9px;
    box-shadow: 0 12px 24px rgba(31, 41, 51, 0.13);
  }

  .hero-promo-badge small {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .hero-promo-badge strong {
    font-size: 15px;
  }

  .badge-fresh {
    top: 51%;
    right: 4%;
  }

  .badge-local {
    left: 3%;
    right: auto;
    bottom: 8%;
  }

  .badge-payment {
    right: 3%;
    bottom: 6%;
  }

  .hero-wave {
    right: -24vw;
    bottom: -12%;
    width: 108vw;
    height: 42%;
  }

  .home-hero-content h1 {
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.08;
  }

  .home-hero-content p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.48;
    font-weight: 700;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 16px;
  }

  .hero-actions a,
  .hero-actions button,
  .home-hero .primary-button,
  .home-hero .secondary-button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 10px 9px;
    font-size: 13px;
    line-height: 1.15;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 23px;
  }

  .hero-arrow-left {
    left: 8px;
  }

  .hero-arrow-right {
    right: 8px;
  }

  .home-map-showcase,
  .map-promo-panel,
  .map-live-panel,
  .home-map-showcase .map-frame,
  .home-map-showcase .map-frame iframe {
    min-height: 320px;
  }

  .map-promo-panel {
    padding: 42px 18px;
  }

  .map-promo-panel img {
    object-position: center top;
  }

  .map-promo-content {
    max-width: 320px;
  }

  .map-promo-content p {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .map-promo-content h2 {
    margin-bottom: 24px;
    font-size: clamp(32px, 10vw, 42px);
  }

  .hero-slide-dots {
    left: 14px;
    bottom: 12px;
    gap: 7px;
  }

  .hero-slide-dot {
    width: 8px;
    height: 8px;
  }

  .hero-slide-dot:hover,
  .hero-slide-dot:focus-visible,
  .hero-slide-dot.is-active {
    width: 25px;
  }

  .section,
  .home-category-showcase,
  .home-featured,
  .products-body,
  .gallery-section,
  .recipes-section,
  .brand-section,
  .offers-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .home-category-showcase {
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .category-showcase-heading {
    display: block;
    margin-bottom: 18px;
    max-width: calc(100vw - 24px);
  }

  .category-showcase-heading .script-eyebrow {
    font-size: 20px;
  }

  .category-showcase-heading h2 {
    font-size: 25px;
    line-height: 1.15;
  }

  .category-showcase-heading > p {
    width: min(330px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    font-size: 13px;
    line-height: 1.55;
  }

  .category-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: none;
  }

  .category-showcase-card,
  .category-showcase-card:last-child {
    grid-column: auto;
    min-height: 126px;
    padding: 12px 8px 10px;
  }

  .category-showcase-card strong {
    font-size: 13px;
    line-height: 1.2;
  }

  .category-art {
    width: 58px;
    height: 58px;
  }

  .home-product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-product {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 7px;
    padding: 9px;
    min-width: 0;
  }

  .home-product img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
  }

  .home-product span {
    font-size: 10px;
  }

  .home-product strong {
    font-size: 13px;
    line-height: 1.22;
  }

  .product-grid,
  .product-grid-wide,
  .premium-product-grid,
  .gallery-grid,
  .favorite-preview-grid,
  .offer-grid,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .gallery-video-section {
    padding: 34px 12px;
  }

  .gallery-video-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-video-copy {
    padding: 12px;
  }

  .recipe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card,
  .premium-product-card,
  .gallery-card,
  .recipe-card,
  .brand-card,
  .offer-card {
    min-width: 0;
    border-radius: 8px;
  }

  .product-card img,
  .premium-product-media img,
  .gallery-card img,
  .recipe-card img,
  .brand-card img,
  .offer-card img {
    aspect-ratio: 1 / 0.86;
    min-height: 0;
    height: auto;
    object-fit: cover;
  }

  .product-card > div,
  .premium-product-content,
  .gallery-card > div,
  .recipe-card > div,
  .brand-card > div,
  .offer-card > div {
    padding: 10px;
  }

  .product-card h3,
  .premium-product-card h2,
  .gallery-card h3,
  .recipe-card h3,
  .brand-card h3,
  .offer-card h3 {
    font-size: 13px;
    line-height: 1.22;
  }

  .product-card p,
  .premium-product-card p,
  .gallery-card p,
  .recipe-card p,
  .brand-card p,
  .offer-card p {
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .price-row,
  .product-topline {
    gap: 6px;
  }

  .price,
  .premium-price,
  .current-price {
    font-size: 14px;
  }

  .catalog-hero,
  .products-hero,
  .gallery-hero,
  .corporate-hero,
  .content-hero,
  .hero,
  .hero-pro {
    min-height: 0;
    padding: 34px 14px;
  }

  .catalog-hero h1,
  .products-hero h1,
  .gallery-hero h1,
  .corporate-hero h1,
  .content-hero h1,
  .hero h1 {
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: 1.1;
  }

  .catalog-hero p,
  .products-hero p,
  .gallery-hero p,
  .corporate-hero p,
  .content-hero p,
  .hero p:not(.eyebrow) {
    width: min(100%, calc(100vw - 52px));
    max-width: calc(100vw - 52px);
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .catalog-toolbar {
    gap: 9px;
    padding: 10px;
  }

  .search-box input,
  .catalog-toolbar select,
  .filter-select {
    min-height: 42px;
    font-size: 13px;
  }

  .detail-layout,
  .reviews-layout,
  .contact,
  .location-layout,
  .about,
  .corporate-intro,
  .corporate-cta {
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .home-hero-content,
  .catalog-hero-content,
  .products-hero > *,
  .gallery-hero > *,
  .corporate-hero > *,
  .content-hero > * {
    max-width: calc(100vw - 28px);
    min-width: 0;
  }

  .home-hero-content h1 {
    font-size: clamp(27px, 7.6vw, 34px);
  }

  .catalog-hero h1,
  .products-hero h1,
  .gallery-hero h1,
  .corporate-hero h1,
  .content-hero h1,
  .hero h1 {
    max-width: 100%;
    font-size: clamp(27px, 7.8vw, 34px);
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .catalog-shell {
    padding: 18px 12px 44px;
  }

  .catalog-hero-card {
    padding: 18px;
  }

  .catalog-hero-card strong {
    font-size: 22px;
  }

  .catalog-summary {
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
  }

  .category-filter,
  .gallery-filter {
    gap: 8px;
    margin-right: -12px;
    margin-left: -12px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .category-chip,
  .gallery-chip {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .premium-product-grid {
    gap: 8px;
    width: calc(100% - 16px);
    padding-right: 8px;
  }

  .product-badges {
    top: 7px;
    right: 7px;
    left: 7px;
    gap: 4px;
  }

  .product-badges span {
    padding: 5px 7px;
    font-size: 10px;
    line-height: 1.1;
  }

  .favorite-button {
    right: 7px;
    bottom: 7px;
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .premium-product-content {
    gap: 8px;
    padding: 10px;
  }

  .product-topline span,
  .product-topline strong {
    font-size: 10px;
  }

  .premium-product-card h2 {
    font-size: 13px;
  }

  .price-row {
    padding-top: 7px;
  }

  .price-row del,
  .product-rating,
  .product-rating small {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .cinematic-title .cinema-word-inner,
  .cinematic-zoom-target,
  .cinematic-bg-zoom::before,
  .cinema-reveal,
  .cinema-reveal-image,
  .cinema-reveal-image > img,
  .cinema-reveal-image picture img,
  .identity-bg-slider span,
  .magnetic-target,
  .hero-promo-badge {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }

  .identity-bg-slider span {
    animation: none !important;
  }

  .identity-bg-slider span:not(:first-child) {
    opacity: 0 !important;
  }
}

@media (max-width: 760px), (pointer: coarse) {
  .magnetic-target {
    --magnet-x: 0px !important;
    --magnet-y: 0px !important;
    --magnet-scale: 1 !important;
  }
}

@media (max-width: 760px) {
  :root {
    --mobile-page-pad: 16px;
    --mobile-card-radius: 8px;
    --mobile-soft-shadow: 0 10px 24px rgba(21, 18, 15, 0.08);
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #fff8ef;
  }

  body {
    font-size: 15px;
    line-height: 1.55;
  }

  .announcement-bar {
    display: none;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 70;
    min-height: 70px;
    gap: 12px;
    padding: 10px var(--mobile-page-pad);
    background: rgba(255, 248, 239, 0.96);
    border-bottom: 1px solid rgba(21, 18, 15, 0.08);
    box-shadow: 0 10px 24px rgba(21, 18, 15, 0.06);
    backdrop-filter: blur(14px);
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 54px);
    min-width: 0;
  }

  .brand-mark {
    width: 56px;
    height: 48px;
  }

  .brand strong {
    max-width: 190px;
    font-size: 16px;
    line-height: 1.1;
  }

  .brand small {
    max-width: 190px;
    font-size: 11px;
  }

  .menu-button {
    position: static;
    z-index: 90;
    flex: 0 0 42px;
    display: grid !important;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    color: var(--charcoal);
    background: white;
    border: 1px solid rgba(21, 18, 15, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(21, 18, 15, 0.08);
    pointer-events: auto;
    transform: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: var(--mobile-page-pad);
    left: var(--mobile-page-pad);
    z-index: 100;
    display: none !important;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(21, 18, 15, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(21, 18, 15, 0.14);
    pointer-events: none;
  }

  .nav.open {
    display: grid !important;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }

  .nav a,
  .nav > a[href="iletisim.php"] {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 13px;
    background: #fff8ef;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
  }

  .section,
  .products-body,
  .gallery-section,
  .gallery-video-section,
  .recipes-section,
  .brand-section,
  .offers-section,
  .product-page-section,
  .related-section,
  .reviews-section,
  .announcements-section,
  .faq-section,
  .location-section,
  .account-section,
  .google-review-section,
  .instagram-section {
    padding-right: var(--mobile-page-pad);
    padding-left: var(--mobile-page-pad);
  }

  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
  }

  .section-heading h2,
  .section h2 {
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.15;
    text-wrap: balance;
  }

  .section-heading p,
  .section-heading > p:not(.eyebrow),
  .section p {
    font-size: 14px;
    line-height: 1.6;
  }

  .eyebrow {
    margin-bottom: 7px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .home-hero {
    height: auto;
    min-height: 590px;
    padding: 34px var(--mobile-page-pad) 30px;
    align-items: start;
    background: linear-gradient(180deg, #fffefb, #eef1e7);
  }

  .home-hero-content {
    width: min(100%, 430px);
    padding-top: 6px;
  }

  .home-hero-content h1 {
    max-width: 10ch;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.04;
    letter-spacing: 0;
  }

  .home-hero-content p:not(.eyebrow) {
    max-width: 31ch;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions a,
  .hero-actions button,
  .primary-button,
  .secondary-button,
  .ghost-button {
    min-height: 44px;
    border-radius: 8px;
    font-size: 14px;
  }

  .home-hero .primary-button,
  .home-hero .secondary-button {
    flex: 1 1 148px;
    width: auto;
    padding: 0 13px;
  }

  .hero-image-slider {
    top: auto;
    right: -20vw;
    bottom: 32px;
    width: min(500px, 108vw);
    height: min(315px, 40vh);
    opacity: 0.96;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .hero-arrow-left {
    left: 10px;
  }

  .hero-arrow-right {
    right: 10px;
  }

  .hero-slide-dots {
    left: var(--mobile-page-pad);
    bottom: 14px;
  }

  .hero-promo-badge {
    border-radius: 8px;
  }

  .natural-badge {
    top: auto;
    bottom: 220px;
    left: 14px;
    width: 76px;
    height: 76px;
  }

  .badge-fresh {
    top: auto;
    right: 12px;
    bottom: 230px;
  }

  .badge-local {
    left: 14px;
    bottom: 72px;
  }

  .badge-payment {
    right: 12px;
    bottom: 66px;
  }

  .catalog-hero,
  .products-hero,
  .gallery-hero,
  .corporate-hero,
  .content-hero,
  .campaign-page-hero,
  .recipe-hero,
  .brand-hero,
  .gift-hero,
  .contact-hero,
  .hero,
  .hero-pro {
    min-height: 0;
    padding: 44px var(--mobile-page-pad);
  }

  .catalog-hero h1,
  .products-hero h1,
  .gallery-hero h1,
  .corporate-hero h1,
  .content-hero h1,
  .campaign-page-copy h1,
  .hero h1 {
    max-width: 11ch;
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.06;
  }

  .catalog-hero p,
  .products-hero p,
  .gallery-hero p,
  .corporate-hero p,
  .content-hero p,
  .campaign-page-copy p,
  .hero p:not(.eyebrow) {
    width: min(100%, 440px);
    max-width: 100%;
    font-size: 15px;
    line-height: 1.62;
  }

  .breadcrumb {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
  }

  .category-filter,
  .gallery-filter {
    flex-wrap: nowrap;
    gap: 8px;
    margin-right: calc(var(--mobile-page-pad) * -1);
    margin-left: calc(var(--mobile-page-pad) * -1);
    padding: 0 var(--mobile-page-pad) 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-filter::-webkit-scrollbar,
  .gallery-filter::-webkit-scrollbar {
    display: none;
  }

  .category-chip,
  .gallery-chip {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 13px;
  }

  .catalog-toolbar {
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
  }

  .search-box input,
  .catalog-toolbar select,
  .filter-select {
    min-height: 44px;
    border-radius: 8px;
    font-size: 14px;
  }

  .home-product-row,
  .product-grid,
  .product-grid-wide,
  .premium-product-grid,
  .gallery-grid,
  .offer-grid,
  .recipe-grid,
  .brand-grid,
  .favorite-preview-grid,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .home-product,
  .product-card,
  .premium-product-card,
  .gallery-item,
  .gallery-video-card,
  .recipe-grid article,
  .brand-grid article,
  .offer-grid article,
  .related-card,
  .favorite-preview-card {
    min-width: 0;
    border-radius: var(--mobile-card-radius);
    box-shadow: var(--mobile-soft-shadow);
  }

  .home-product {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .home-product img,
  .product-card img,
  .premium-product-media img,
  .gallery-item img,
  .recipe-grid img,
  .related-card img,
  .favorite-preview-card img {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
    border-radius: 7px;
  }

  .premium-product-media {
    min-height: 0;
  }

  .product-card > div,
  .premium-product-content,
  .gallery-item > div,
  .recipe-grid article > div,
  .brand-grid article,
  .offer-grid article,
  .favorite-preview-card {
    padding: 12px;
  }

  .home-product strong,
  .product-card h3,
  .premium-product-card h2,
  .gallery-item h3,
  .recipe-grid h2,
  .recipe-grid h3,
  .brand-grid strong,
  .offer-grid h2,
  .favorite-preview-card strong,
  .related-card strong {
    font-size: 14px;
    line-height: 1.25;
  }

  .product-card p,
  .premium-product-card p,
  .gallery-item p,
  .recipe-grid p,
  .brand-grid p,
  .offer-grid p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .price,
  .premium-price,
  .current-price {
    font-size: 16px;
  }

  .product-actions {
    gap: 8px;
  }

  .price-cta,
  .detail-cta {
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

  .gallery-video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-video-media {
    min-height: 174px;
    max-height: 220px;
  }

  .gallery-video-card video {
    max-height: 220px;
  }

  .gallery-video-copy {
    padding: 14px;
  }

  .gallery-video-copy h3 {
    font-size: 17px;
  }

  .gallery-video-copy p {
    font-size: 13px;
  }

  .identity-photo img,
  .corporate-image-card img,
  .detail-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .identity-cards,
  .value-grid,
  .corporate-category-grid,
  .announcement-grid,
  .review-grid,
  .faq-grid,
  .hours-layout,
  .location-layout,
  .contact,
  .about,
  .detail-layout,
  .reviews-layout,
  .google-review-card,
  .instagram-grid {
    gap: 14px;
  }

  .identity-card,
  .value-grid article,
  .announcement-card,
  .review-card,
  .product-reviews blockquote,
  .faq-grid details,
  .location-card,
  .google-review-card {
    padding: 18px;
    border-radius: 8px;
    box-shadow: var(--mobile-soft-shadow);
  }

  .instagram-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .instagram-heading {
    padding-right: var(--mobile-page-pad);
    padding-left: var(--mobile-page-pad);
    text-align: left;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    border-radius: 8px;
  }

  .footer {
    padding-top: 42px;
  }

  .footer-content {
    gap: 24px;
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 420px) {
  :root {
    --mobile-page-pad: 10px;
    --mobile-grid-gap: 4px;
  }

  .home-product-row,
  .product-grid,
  .product-grid-wide,
  .premium-product-grid,
  .gallery-grid,
  .offer-grid,
  .recipe-grid,
  .brand-grid,
  .favorite-preview-grid,
  .related-grid,
  .category-showcase-grid,
  .campaign-gallery,
  .detail-thumb-grid,
  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--mobile-grid-gap);
  }

  .home-product img,
  .product-card img,
  .premium-product-media img,
  .gallery-item img,
  .recipe-grid img,
  .related-card img {
    aspect-ratio: 1 / 1;
  }

  .home-product strong,
  .product-card h3,
  .premium-product-card h2,
  .gallery-item h3,
  .recipe-grid h3,
  .brand-grid strong,
  .offer-grid h2 {
    font-size: 11px;
  }

  .product-card > div,
  .premium-product-content,
  .gallery-item > div,
  .recipe-grid article > div,
  .brand-grid article,
  .offer-grid article {
    padding: 8px;
  }

  .home-hero-content h1 {
    font-size: clamp(20px, 6vw, 24px);
  }

  .catalog-hero h1,
  .products-hero h1,
  .gallery-hero h1,
  .corporate-hero h1,
  .content-hero h1,
  .hero h1 {
    font-size: clamp(18px, 5.5vw, 22px);
  }

  .hero-image-slider {
    width: min(240px, 82vw);
    height: min(150px, 24vh);
  }
}

@media (max-width: 760px) {
  .cinematic-root .topbar {
    position: sticky;
    z-index: 70;
  }

  .site-menu-toggle {
    position: relative;
    z-index: 120;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid !important;
    place-items: center;
    gap: 4px;
    margin-left: auto;
    padding: 9px;
    background: white;
    border: 1px solid rgba(21, 18, 15, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(21, 18, 15, 0.08);
    pointer-events: auto;
  }

  .site-menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    background: var(--charcoal);
    border-radius: 999px;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .site-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: var(--mobile-page-pad, 16px);
    left: var(--mobile-page-pad, 16px);
    z-index: 130;
    display: none !important;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(21, 18, 15, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(21, 18, 15, 0.16);
    pointer-events: none;
  }

  .site-menu-panel.is-open {
    display: grid !important;
    pointer-events: auto;
  }

  .site-menu-panel a,
  .site-menu-panel a[href="iletisim.php"] {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 14px;
    color: var(--ink);
    background: #fff8ef;
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
  }

  .site-menu-panel a.active,
  .site-menu-panel a:hover,
  .site-menu-panel a[href="iletisim.php"]:hover,
  .site-menu-panel a[href="iletisim.php"].active {
    color: white;
    background: var(--charcoal);
  }

  .site-menu-panel a.active::after {
    display: none;
  }

  .site-menu-panel .site-menu-login {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: auto;
    min-height: 34px;
    margin-top: 2px;
    padding: 0 12px;
    color: var(--muted);
    background: transparent;
    border: 1px solid rgba(21, 18, 15, 0.14);
    border-radius: 6px;
    box-shadow: none;
    font-size: 12px;
    font-weight: 700;
    pointer-events: auto;
    cursor: pointer;
  }

  .site-menu-panel .site-menu-login:hover,
  .site-menu-panel .site-menu-login:focus-visible {
    color: var(--ink);
    background: #fff8ef;
  }
}

/* Mobile compact density — Trendyol-style layout */
@media (max-width: 760px) {
  :root {
    --mobile-page-pad: 12px;
    --mobile-card-radius: 6px;
    --mobile-soft-shadow: 0 4px 12px rgba(21, 18, 15, 0.06);
    --mobile-grid-gap: 5px;
  }

  body {
    font-size: 13px;
    line-height: 1.45;
    -webkit-tap-highlight-color: transparent;
  }

  .category-filter,
  .gallery-filter {
    gap: 6px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  .category-chip,
  .gallery-chip {
    min-height: 32px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 11px;
    scroll-snap-align: start;
  }

  .topbar {
    min-height: 52px;
    gap: 8px;
    padding: 6px var(--mobile-page-pad);
    box-shadow: 0 4px 14px rgba(21, 18, 15, 0.05);
  }

  .brand {
    gap: 8px;
    max-width: calc(100% - 44px);
  }

  .brand-mark {
    width: 40px;
    height: 34px;
  }

  .brand strong {
    max-width: 160px;
    font-size: 13px;
    line-height: 1.1;
  }

  .brand small {
    max-width: 160px;
    font-size: 10px;
  }

  .site-menu-toggle {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    padding: 7px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(21, 18, 15, 0.06);
  }

  .site-menu-toggle span {
    width: 16px;
  }

  .site-menu-panel {
    top: calc(100% + 6px);
    gap: 6px;
    padding: 8px;
    border-radius: 6px;
  }

  .site-menu-panel a,
  .site-menu-panel a[href="iletisim.php"] {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    border-radius: 6px;
  }

  .section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section-heading {
    gap: 6px;
    margin-bottom: 14px;
  }

  .section-heading h2,
  .section h2 {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.2;
  }

  .section-heading p,
  .section-heading > p:not(.eyebrow),
  .section p {
    font-size: 12px;
    line-height: 1.5;
  }

  .eyebrow {
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .home-hero {
    min-height: 0;
    padding: 18px var(--mobile-page-pad) 20px;
    gap: 0;
  }

  .home-hero-content {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }

  .home-hero-content h1 {
    max-width: 100%;
    font-size: clamp(22px, 6.5vw, 28px);
    line-height: 1.12;
  }

  .home-hero-content p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 600;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 12px;
  }

  .hero-actions a,
  .hero-actions button,
  .primary-button,
  .secondary-button,
  .ghost-button {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 12px;
  }

  .home-hero .primary-button,
  .home-hero .secondary-button {
    flex: 1 1 120px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-product-stage {
    position: relative;
    inset: auto;
    height: 180px;
    margin-top: 14px;
    pointer-events: none;
  }

  .hero-image-slider {
    position: absolute;
    top: 50%;
    right: -8vw;
    bottom: auto;
    width: min(280px, 78vw);
    height: min(180px, 28vh);
    transform: translateY(-50%);
    opacity: 0.92;
    border-radius: 20% 24% 18% 22%;
    filter: drop-shadow(0 10px 14px rgba(31, 41, 51, 0.12));
  }

  .hero-arrow {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .hero-arrow-left {
    left: 4px;
  }

  .hero-arrow-right {
    right: 4px;
  }

  .hero-slide-dots {
    bottom: 8px;
    gap: 5px;
  }

  .hero-slide-dots button {
    width: 6px;
    height: 6px;
  }

  .natural-badge {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .natural-badge span {
    font-size: 9px;
  }

  .badge-fresh,
  .badge-local,
  .badge-payment {
    min-width: 64px;
    min-height: 36px;
    padding: 5px 7px;
    font-size: 10px;
    box-shadow: 0 6px 14px rgba(31, 41, 51, 0.1);
  }

  .hero-promo-badge {
    padding: 8px 10px;
  }

  .hero-promo-badge small {
    font-size: 7px;
  }

  .hero-promo-badge strong {
    font-size: 12px;
  }

  .hero-wave {
    right: -18vw;
    bottom: -8%;
    width: 90vw;
    height: 32%;
    opacity: 0.7;
  }

  .catalog-hero,
  .products-hero,
  .gallery-hero,
  .corporate-hero,
  .content-hero,
  .campaign-page-hero,
  .recipe-hero,
  .brand-hero,
  .gift-hero,
  .contact-hero,
  .hero,
  .hero-pro {
    padding: 20px var(--mobile-page-pad);
  }

  .catalog-hero h1,
  .products-hero h1,
  .gallery-hero h1,
  .corporate-hero h1,
  .content-hero h1,
  .campaign-page-copy h1,
  .hero h1 {
    max-width: 100%;
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.15;
  }

  .catalog-hero p,
  .products-hero p,
  .gallery-hero p,
  .corporate-hero p,
  .content-hero p,
  .campaign-page-copy p,
  .hero p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.5;
  }

  .catalog-hero-card {
    padding: 12px;
    border-radius: 6px;
  }

  .catalog-hero-card span {
    font-size: 10px;
  }

  .catalog-hero-card strong {
    font-size: 13px;
    line-height: 1.3;
  }

  .breadcrumb {
    padding: 7px 10px;
    font-size: 11px;
    border-radius: 6px;
  }

  .home-category-showcase {
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .category-showcase-heading {
    gap: 6px;
    margin-bottom: 14px;
  }

  .category-showcase-heading .script-eyebrow {
    font-size: 10px;
  }

  .category-showcase-heading h2 {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.2;
  }

  .category-showcase-heading > p {
    font-size: 12px;
    line-height: 1.45;
  }

  .category-showcase-grid {
    gap: var(--mobile-grid-gap);
  }

  .category-showcase-card {
    min-height: 0;
    padding: 6px;
    border-radius: 6px;
  }

  .category-showcase-card strong {
    font-size: 10px;
    line-height: 1.25;
  }

  .category-showcase-card .category-art {
    width: 36px;
    height: 36px;
  }

  .catalog-toolbar {
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
  }

  .search-box input,
  .catalog-toolbar select,
  .filter-select {
    min-height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 12px;
  }

  .home-product-row,
  .product-grid,
  .product-grid-wide,
  .premium-product-grid,
  .gallery-grid,
  .offer-grid,
  .recipe-grid,
  .brand-grid,
  .favorite-preview-grid,
  .related-grid,
  .category-showcase-grid,
  .campaign-gallery,
  .detail-thumb-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--mobile-grid-gap);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .home-product,
  .product-card,
  .premium-product-card,
  .gallery-item,
  .gallery-video-card,
  .recipe-grid article,
  .brand-grid article,
  .offer-grid article,
  .related-card,
  .favorite-preview-card {
    border-radius: var(--mobile-card-radius);
    box-shadow: var(--mobile-soft-shadow);
  }

  .home-product {
    gap: 4px;
    padding: 5px;
  }

  .home-product img,
  .product-card img,
  .premium-product-media img,
  .gallery-item img,
  .recipe-grid img,
  .related-card img,
  .favorite-preview-card img {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
  }

  .product-card > div,
  .premium-product-content,
  .gallery-item > div,
  .recipe-grid article > div,
  .brand-grid article,
  .offer-grid article,
  .favorite-preview-card {
    padding: 5px;
  }

  .home-product strong,
  .product-card h3,
  .premium-product-card h2,
  .gallery-item h3,
  .recipe-grid h2,
  .recipe-grid h3,
  .brand-grid strong,
  .offer-grid h2,
  .favorite-preview-card strong,
  .related-card strong {
    font-size: 10px;
    line-height: 1.3;
  }

  .gallery-item h3,
  .gallery-item p {
    display: none;
  }

  .product-card p,
  .premium-product-card p,
  .recipe-grid p,
  .brand-grid p,
  .offer-grid p {
    display: none;
  }

  .gallery-item > div {
    padding: 0;
  }

  .gallery-item img {
    border-radius: 4px;
  }

  .product-topline,
  .product-rating small {
    display: none;
  }

  .product-rating {
    gap: 2px;
    margin-top: 2px;
  }

  .product-rating .stars {
    font-size: 9px;
  }

  .price,
  .premium-price,
  .current-price,
  .price-row strong {
    font-size: 11px;
    font-weight: 800;
  }

  .price-row del,
  .product-rating small,
  .product-rating strong {
    font-size: 10px;
  }

  .product-rating strong {
    font-size: 11px;
  }

  .product-badges span {
    padding: 3px 6px;
    font-size: 9px;
    border-radius: 4px;
  }

  .favorite-button {
    width: 22px;
    height: 22px;
    right: 4px;
    bottom: 4px;
    font-size: 11px;
    box-shadow: 0 4px 10px rgba(15, 13, 11, 0.14);
  }

  .product-actions {
    gap: 4px;
    flex-direction: column;
  }

  .price-cta,
  .detail-cta {
    min-height: 26px;
    padding: 0 4px;
    font-size: 9px;
    border-radius: 4px;
  }

  .campaign-gallery {
    max-width: 100%;
  }

  .campaign-feature-card > div {
    gap: 4px;
    padding: 6px;
  }

  .campaign-feature-card span {
    font-size: 9px;
    padding: 2px 6px;
  }

  .campaign-feature-card h3 {
    font-size: 10px;
    line-height: 1.25;
  }

  .campaign-feature-card p {
    display: none;
  }

  .gallery-video-grid {
    gap: 10px;
  }

  .gallery-video-media {
    min-height: 140px;
    max-height: 170px;
  }

  .gallery-video-card video {
    max-height: 170px;
  }

  .gallery-video-copy {
    padding: 10px;
  }

  .gallery-video-copy h3 {
    font-size: 14px;
  }

  .gallery-video-copy p {
    font-size: 11px;
  }

  .identity-photo img,
  .corporate-image-card img,
  .detail-media img {
    aspect-ratio: 4 / 3;
    max-height: 220px;
  }

  .detail-layout {
    gap: 12px;
  }

  .detail-content h1 {
    font-size: clamp(18px, 5.5vw, 22px);
    line-height: 1.2;
  }

  .detail-content p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.5;
  }

  .detail-price strong {
    font-size: 16px;
  }

  .identity-cards,
  .value-grid,
  .corporate-category-grid,
  .announcement-grid,
  .review-grid,
  .faq-grid,
  .hours-layout,
  .location-layout,
  .contact,
  .about,
  .reviews-layout,
  .google-review-card,
  .instagram-grid {
    gap: 10px;
  }

  .identity-card,
  .value-grid article,
  .announcement-card,
  .review-card,
  .product-reviews blockquote,
  .faq-grid details,
  .location-card,
  .google-review-card {
    padding: 12px;
    border-radius: 6px;
  }

  .identity-card h3,
  .value-grid article h3,
  .announcement-card h3,
  .review-card strong {
    font-size: 14px;
  }

  .identity-card p,
  .value-grid article p,
  .announcement-card p,
  .review-card p {
    font-size: 12px;
  }

  .instagram-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-content {
    gap: 18px;
  }

  .footer-logo {
    width: 72px;
    height: 72px;
  }

  .footer h3 {
    font-size: 14px;
  }

  .footer p,
  .footer a,
  .footer li {
    font-size: 12px;
  }
}

/* Campaign payment cards: final responsive override */
.campaign-gallery.campaign-gallery-premium {
  max-width: 1320px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.campaign-gallery-premium .campaign-payment-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fffaf4;
  border: 1px solid rgba(20, 17, 15, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(20, 17, 15, 0.1);
}

.campaign-gallery-premium .campaign-payment-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: #f7efe2;
}

.campaign-gallery-premium .campaign-payment-card > div {
  min-height: 0;
  padding: 16px;
  gap: 9px;
}

.campaign-gallery-premium .campaign-payment-card span {
  width: fit-content;
  max-width: 100%;
  padding: 5px 8px;
  color: #ea580c;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.1;
  white-space: normal;
  overflow-wrap: anywhere;
}

.campaign-gallery-premium .campaign-payment-card h3 {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.campaign-gallery-premium .campaign-payment-card p {
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .campaign-gallery.campaign-gallery-premium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .campaign-showcase {
    padding-left: 10px;
    padding-right: 10px;
  }

  .campaign-gallery.campaign-gallery-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .campaign-gallery-premium .campaign-payment-card {
    border-radius: 7px;
    box-shadow: 0 10px 28px rgba(20, 17, 15, 0.08);
  }

  .campaign-gallery-premium .campaign-payment-card:hover {
    transform: none;
  }

  .campaign-gallery-premium .campaign-payment-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .campaign-gallery-premium .campaign-payment-card > div {
    padding: 10px;
    gap: 7px;
  }

  .campaign-gallery-premium .campaign-payment-card span {
    padding: 4px 7px;
    font-size: 9px;
  }

  .campaign-gallery-premium .campaign-payment-card h3 {
    font-size: 12px;
    line-height: 1.2;
  }

  .campaign-gallery-premium .campaign-payment-card p {
    display: none;
  }
}

.cookie-consent {
  position: fixed;
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(680px, calc(100% - 24px));
  padding: 18px;
  color: #fff;
  background: rgba(20, 17, 15, 0.96);
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(20, 17, 15, 0.32);
  animation: cookieSlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  backdrop-filter: blur(14px);
}

.cookie-consent.is-hiding {
  animation: cookieSlideOut 0.24s ease both;
}

.cookie-consent__content {
  min-width: 0;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.2;
}

.cookie-consent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-consent__link {
  color: #ffb86b;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.cookie-consent__link:hover {
  color: #fff;
}

.cookie-consent .primary-button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 7px;
  white-space: nowrap;
}

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

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(249, 115, 22, 0.2), transparent 34%),
    linear-gradient(135deg, #100d0b 0%, #1c1712 48%, #0f0d0b 100%);
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-preloader::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  transform: scale(0.72);
  animation: preloaderHalo 1.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
}

.site-preloader__logo {
  width: clamp(112px, 18vw, 190px);
  height: clamp(112px, 18vw, 190px);
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.38));
  animation: preloaderLogo 1.35s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

.site-preloader__text {
  display: grid;
  gap: 5px;
  color: #fff;
}

.site-preloader__text strong {
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: 0;
}

.site-preloader__text span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-preloader__bar {
  position: relative;
  width: min(210px, 54vw);
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.site-preloader__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, #f97316, #ffd37a);
  border-radius: inherit;
  animation: preloaderBar 1.05s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes preloaderLogo {
  from {
    opacity: 0.88;
    transform: translateY(4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(-3px) scale(1.02);
  }
}

@keyframes preloaderBar {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(250%);
  }
}

@keyframes preloaderHalo {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .site-preloader__inner {
    gap: 14px;
  }

  .site-preloader__text span {
    font-size: 10px;
  }
}

@keyframes cookieSlideOut {
  to {
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (max-width: 640px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    gap: 12px;
    width: auto;
    padding: 14px;
  }

  .cookie-consent strong {
    font-size: 14px;
  }

  .cookie-consent p,
  .cookie-consent__link {
    font-size: 12px;
  }

  .cookie-consent__actions {
    justify-content: space-between;
  }

  .cookie-consent .primary-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }
}







