@charset "UTF-8";
/*!
 * Theme custom styles
 * Compiled to: /css/app.css
 */
/* ---------------------------------------------
 * Header
 * -------------------------------------------- */
/* Layout tokens */
:root {
  --dh-header-height: 84px;
  --dh-header-pad: 1.25rem;
  --dh-header-bg: rgba(255, 255, 255, 0.92);
  --dh-header-blur: 14px;
  --dh-header-border: rgba(0, 0, 0, 0.08);
}

body.nav-open {
  overflow: hidden;
}

/* Keep logo inside header height to avoid sticky layout issues */
img.site-header__logo {
  display: block;
  height: auto;
  width: auto;
  max-height: 100px;
}

/* Sticky / transparent header */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  height: var(--dh-header-height);
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
  background: var(--dh-header-bg);
  border-bottom: 1px solid var(--dh-header-border);
  backdrop-filter: blur(var(--dh-header-blur));
}

/* Avoid mobile-menu backdrop/panel being constrained by sticky header's backdrop-filter (browser quirk). */
body.nav-open .site-header {
  backdrop-filter: none;
}

/* Admin bar offset (WP sets different heights on mobile). */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
.site-header--transparent:not(.is-sticky) {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}

.site-header.is-sticky {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Inner: logo-left / menu-center / button-right */
.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0 var(--dh-header-pad);
  width: min(1620px, 100% - 2rem);
  margin-inline: auto;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.site-branding .site-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-branding .site-title a {
  text-decoration: none;
  color: inherit;
}

.site-header__cta {
  white-space: nowrap;
}

/* Ensure content isn't hidden under fixed header (except home template where hero sits under it). */
body:not(.page-template-page-home) #primary {
  padding-top: var(--dh-header-height);
}

/* ----------------------------
 * Navigation (desktop)
 * ---------------------------- */
.main-navigation {
  display: flex;
  justify-content: center;
}

.main-navigation__panel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.main-navigation a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  padding: 0.25rem 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.site-header--transparent:not(.is-sticky) .main-navigation a,
.site-header--transparent:not(.is-sticky) .site-branding,
.site-header--transparent:not(.is-sticky) .site-branding a {
  color: #fff;
}

.main-navigation a:hover,
.main-navigation a:focus {
  text-decoration: none;
  opacity: 0.9;
}

/* Toggle (mobile) */
.menu-toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  line-height: 1;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.site-header:not(.site-header--transparent) .menu-toggle,
.site-header.is-sticky .menu-toggle {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
  color: #111;
}

.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-toggle__icon {
  width: 18px;
  height: 12px;
  position: relative;
  display: inline-block;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-toggle__icon::before {
  top: 0;
  box-shadow: 0 5px 0 currentColor;
}

.menu-toggle__icon::after {
  bottom: 0;
}

.main-navigation__backdrop {
  display: none;
}

.main-navigation__panel-header {
  display: none;
}

/* ----------------------------
 * Mobile full-screen menu
 * ---------------------------- */
@media (max-width: 1199px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }
  .site-header__cta {
    display: none;
  }
  .main-navigation {
    justify-content: flex-end;
  }
  .main-navigation__panel {
    align-items: flex-start;
  }
  /* Full-screen panel */
  .main-navigation__panel {
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(16px);
    transform: translateY(-105%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 240ms ease, opacity 180ms ease, visibility 0s linear 240ms;
    display: flex;
    gap: 1.25rem;
    z-index: 1001;
    padding: calc(var(--dh-header-height) + 1rem) 20px 1.5rem;
  }
  .main-navigation__panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--dh-header-height);
    padding: 0 var(--dh-header-pad);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(16px);
  }
  .main-navigation__panel-title {
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  .main-navigation__close {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 12px;
    padding: 0.45rem 0.7rem;
    cursor: pointer;
  }
  .main-navigation__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 1000;
    border: 0;
  }
  .main-navigation ul {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .main-navigation.toggled ul {
    display: flex;
  }
  .main-navigation li {
    width: 100%;
  }
  .main-navigation a {
    color: #fff;
    padding: 1rem 1rem;
    border-radius: 16px;
    font-size: 1.1rem;
    display: inline-flex;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }
  .main-navigation__cta {
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
  }
  .main-navigation.toggled .main-navigation__panel {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 240ms ease, opacity 180ms ease, visibility 0s;
  }
  .main-navigation.toggled .main-navigation__backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 1620px) {
  .menu-toggle {
    display: none;
  }
}
/* ---------------------------------------------
 * Content
 * -------------------------------------------- */
/* Standard section padding (use this everywhere for consistent top/bottom rhythm) */
:root {
  --dh-section-pad-y: clamp(3rem, 6vw, 5rem);
  --dh-section-pad-x: 1.25rem;
  --dh-container: 1620px;
}

/* Global link visited + focus styles (prevent default purple visited links) */
a:visited {
  color: inherit;
}

:where(a,
button,
input,
select,
textarea,
summary,
[role=button],
[tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 2px solid rgba(239, 26, 36, 0.6);
  outline-offset: 3px;
  border-radius: 10px;
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.footer-bottom__social-link:focus-visible {
  border-radius: 999px;
}

.section {
  padding: var(--dh-section-pad-y) var(--dh-section-pad-x);
}

.section__inner {
  width: min(var(--dh-container), 100% - var(--dh-section-pad-x) * 2);
  margin-inline: auto;
}

/* Home Hero */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.home-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* ---------------------------------------------
 * Default Page Hero (page.php)
 * -------------------------------------------- */
.page-hero {
  color: #121112;
}

.page-hero__inner {
  position: relative;
  width: min(var(--dh-container), 100% - var(--dh-section-pad-x) * 2);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: left;
}

.page-hero__title {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.page-content.section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  transform: scale(1.02);
  z-index: 0;
}

.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 2;
}

.home-hero__inner {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding: clamp(4rem, 10vw, 8rem) 0;
  text-align: center;
}

.home-hero__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  background: rgba(120, 70, 50, 0.6);
  border: 1px solid rgba(160, 90, 60, 0.5);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.home-hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 6rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}


.home-hero__title span {
  color: rgb(255 215 0 / var(--tw-text-opacity, 1)) !important;

}

.home-hero__title em {
  font-style: normal;
  color: #f5c842;
}

.home-hero__actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero decorative icons */
.home-hero__decor {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.home-hero__decor-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  opacity: 0.35;
}

.home-hero__decor-icon svg {
  width: 100%;
  height: 100%;
}

.home-hero__decor-icon--tl {
  top: 25%;
  left: 8%;
  color: #6b9e3d;
}

.home-hero__decor-icon--bl {
  bottom: 25%;
  left: 8%;
  color: #f5c842;
}

.home-hero__decor-icon--tr {
  top: 25%;
  right: 12%;
  color: #e08a3c;
}

.home-hero__decor-icon--br {
  bottom: 25%;
  right: 12%;
  color: #e08a3c;
}

/* Hero-specific button styles (pill shape, red primary, bronze secondary) */
.home-hero .btn--primary {
  background: #ef1a24;
  color: #fff;
  border-radius: 999px;
  padding: 1rem 1.75rem;
  font-weight: 700;
}

.home-hero .btn--ghost {
  background: linear-gradient(180deg, rgba(100, 65, 45, 0.6) 0%, rgba(80, 50, 35, 0.7) 100%);
  border: 1px solid rgba(120, 85, 60, 0.6);
  color: #fff;
  border-radius: 999px;
  padding: 1rem 1.75rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  transition: transform 150ms ease, filter 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.btn:focus {
  outline: 2px solid rgba(242, 193, 78, 0.85);
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn--primary {
  background: #f2c14e;
  color: #1b1b1b;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(6px);
}

/* ---------------------------------------------
 * Home About (ss1: 3 stacked images, badge, light beige)
 * -------------------------------------------- */
.home-about {
  position: relative;
  background: #fbf7f7;
}
.home-about__desc h2 {
  font-size: 50px;
  line-height: 56px;
  margin: 0 0 10px 0;
}
@keyframes home-about-decor-hop {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  25% { transform: translateY(-8px) rotate(2deg) scale(1.05); }
  50% { transform: translateY(0) rotate(-3deg); }
  75% { transform: translateY(-4px) rotate(0deg) scale(1.02); }
}

@keyframes home-about-decor-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.home-about__decor {
  position: absolute;
  width: 36px;
  height: 36px;
  color: #f5c842;
  opacity: 0.8;
  pointer-events: none;
}

.home-about__decor--tl {
  top: 1.5rem;
  left: 1.5rem;
}

.home-about__decor--br {
  bottom: 1.5rem;
  right: 1.5rem;
}

.home-about__decor svg {
  width: 100%;
  height: 100%;
}

.home-about__decor.is-visible {
  animation: home-about-decor-float 3s ease-in-out infinite;
}

.home-about__decor.do-hop {
  animation: home-about-decor-hop 0.7s ease-out;
}

.home-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.home-about__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.home-about__img--a {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 1;
}

.home-about__img--b {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 1;
}

.home-about__media-main {
  position: relative;
  grid-column: 2;
  grid-row: 1/-1;
}

.home-about__img--c {
  height: 100%;
  min-height: 0;
}

.home-about__img--c .home-about__img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about__img {
  border-radius: 16px;
  overflow: hidden;
}

.home-about__img-el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-about__content {
  max-width: 520px;
  position: relative;
}

.home-about__badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f5c842;
  border: 2px solid rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: rotate(-8deg);
  line-height: 1.2;
  text-align: center;
  padding: 0.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.home-about__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a4a4a;
  margin-bottom: 0.5rem;
}

.home-about__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2d2d2d;
}

.home-about__title em {
  font-style: normal;
  color: #ef1a24;
}

.home-about__desc {
  color: #5a5a5a;
  line-height: 1.75;
  font-size: 1rem;
}

.home-about__desc p {
  margin: 0 0 1rem;
}

.home-about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  background: #ef1a24;
  color: #fff !important;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 1.5rem;
  transition: transform 150ms ease, filter 150ms ease;
  box-shadow: 0 2px 12px rgba(239, 26, 36, 0.25);
}

.home-about__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 4px 16px rgba(239, 26, 36, 0.3);
}

@media (max-width: 1199px) {
  .home-about__inner {
    grid-template-columns: 1fr;
  }
  .home-about__media {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    order: 1;
  }
  .home-about__img--a,
  .home-about__img--b {
    grid-column: 1;
    grid-row: auto;
  }
  .home-about__media-main {
    grid-column: 1;
    grid-row: auto;
  }
  .home-about__img--c {
    min-height: 240px;
  }
  .home-about__content {
    order: 2;
    max-width: 680px;
  }
}
/* ---------------------------------------------
 * Home Why (Neden Döner House) - SS1: gradient, frosted cards
 * -------------------------------------------- */
.home-why {
  background: linear-gradient(90deg, #e84a3f 0%, #c42a22 50%, #9e1e18 100%);
}

.home-why__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.home-why__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 800;
}

.home-why__desc {
  margin: 0.75rem auto 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.home-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.home-why__card {
  position: relative;
  padding: 3rem 1.25rem 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.home-why__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.home-why__icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  filter: invert(19%) sepia(98%) saturate(7342%) hue-rotate(355deg);
}

.home-why__card-title {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.home-why__card-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.9rem;
}

@media (max-width: 1199px) {
  .home-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-why__grid {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------------------
 * Home Locations (Turkey map + city list)
 * -------------------------------------------- */
.home-locations {
  /* Prevent tiny horizontal overflow from full-bleed map calculations */
  overflow-x: clip;
}

.home-locations__map-bleed {
  /* Break out of the container to full viewport width */
  width: 100vw;
  width: 100dvw; /* avoid scrollbar width causing horizontal overflow */
  margin-left: calc(50% - 50vw);
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50vw);
  margin-right: calc(50% - 50dvw);
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  overflow-x: clip;
}

.home-locations__map {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.home-locations__map--full {
  padding: 0;
  background: transparent;
  border: 0;
}

.home-locations__leaflet {
  width: 100%;
  aspect-ratio: 16/10;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

section#subeler {
  background: #d4dadc;
  padding: 0px 0 80px;
}

.home-locations__map--full .home-locations__leaflet {
  aspect-ratio: 21/5;
  min-height: clamp(300px, 34vw, 420px);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
}

.home-locations__leaflet .leaflet-control-container .leaflet-control-zoom a {
  border-radius: 10px;
}

.dh-map-marker {
  position: relative;
  width: 18px;
  height: 18px;
}

.dh-map-marker__dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #ef1a24;
  box-shadow: 0 10px 24px rgba(239, 26, 36, 0.28);
}

.dh-map-marker__pulse {
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  background: rgba(239, 26, 36, 0.18);
  opacity: 0;
  transform: scale(0.6);
}

.dh-map-marker.is-active .dh-map-marker__pulse {
  opacity: 1;
  animation: dh-pin-pulse 900ms ease-out infinite;
}

.dh-map-marker.is-blink {
  animation: dh-pin-blink 800ms ease-in-out 1;
}

.dh-map-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  z-index: 600; /* above tiles, below zoom controls */
}

.dh-map-overlay__inner {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.home-locations__leaflet.is-interactive .dh-map-overlay {
  display: none;
}

.home-locations__map-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  /* Needed for iframe embeds (otherwise height can collapse to 0). */
  aspect-ratio: 16/10;
  min-height: 320px;
}

.home-locations__map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-locations__map-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.home-locations__map-placeholder {
  aspect-ratio: 16/10;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.08));
}

.home-locations__pins {
  position: absolute;
  inset: 0;
}

.home-locations__pin {
  position: absolute;
  width: 14px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #ef1a24;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(239, 26, 36, 0.25);
}

.home-locations__pin::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: rgba(239, 26, 36, 0.18);
  opacity: 0;
  transform: scale(0.6);
}

@keyframes dh-pin-blink {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 0.25;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dh-pin-pulse {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
.home-locations__pin.is-active::after {
  opacity: 1;
  animation: dh-pin-pulse 900ms ease-out infinite;
}

.home-locations__pin.is-blink {
  animation: dh-pin-blink 800ms ease-in-out 1;
}

.home-locations__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

@media (max-width: 1199px) {
  .home-locations__list {
    grid-template-columns: 1fr;
  }
}
.home-locations__item {
  text-align: left;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.home-locations__item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.home-locations__item.is-active {
  border-color: rgba(239, 26, 36, 0.35);
  box-shadow: 0 12px 30px rgba(239, 26, 36, 0.1);
}

.home-locations__city {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.home-locations__address {
  margin-top: 0.35rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 1199px) {
  .home-locations__inner {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------------------
 * Products Section (Shortcode: [urunler_section])
 * -------------------------------------------- */
.products-section {
  background: #f6f7f9;
}

.products-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.post-type-archive-urunler .products-section__head {
  display: block;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: 100px;
}

.products-section__title {
  margin: 0;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

.products-section__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: #ef1a24;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 150ms ease, filter 150ms ease;
  white-space: nowrap;
}

.products-section__all:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.products-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 280px;
}

.products-card__img {
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: #fff;
}

.products-card__img-el {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  display: block;
}

.products-card__body {
  background: #eef2ef;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.products-card__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
}

.products-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.products-card__link:hover {
  filter: brightness(1.02);
}

@media (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .products-section__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------------------
 * Home Franchise (SS1 - green bordered cards)
 * -------------------------------------------- */
.home-franchise {
  background: #fff;
}

.home-franchise__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.home-franchise__card {
  position: relative;
  border: 2px solid #121212;
  border-radius: 12px;
  background: #fff;
  padding: 1.25rem 1.25rem 1.05rem;
  text-align: center;
}

.home-franchise__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 0.75rem;
}

.home-franchise__icon-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.home-franchise__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 500;
  color: #121212;
  letter-spacing: -0.01em;
}

.home-franchise__desc {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.55;
  font-size: 0.95rem;
  max-width: 34ch;
  margin-inline: auto;
}

@media (max-width: 1199px) {
  .home-franchise__grid {
    grid-template-columns: 1fr;
  }
  .home-franchise__card {
    text-align: left;
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 0.9rem;
  }
  .home-franchise__icon {
    margin: 0;
  }
  .home-franchise__desc {
    max-width: none;
    margin-inline: 0;
  }
}
/* ---------------------------------------------
 * Single Urunler
 * -------------------------------------------- */
.urun-single__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
}

.urun-gallery__main {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.urun-gallery__main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.urun-gallery__thumbs {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
}

.urun-gallery__thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.urun-gallery__thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.urun-single__desc table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1rem 0 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.urun-single__desc th,
.urun-single__desc td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

.urun-single__desc th:first-child,
.urun-single__desc td:first-child {
  border-left: 0;
}

.urun-single__desc tr:first-child th,
.urun-single__desc tr:first-child td {
  border-top: 0;
}

.urun-single__desc th {
  background: rgba(239, 26, 36, 0.06);
  font-weight: 700;
}

.urun-single__desc tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.018);
}

.urun-single__desc tr:hover td {
  background: rgba(239, 26, 36, 0.03);
}

/* Mobile: allow horizontal scroll instead of squishing columns */
@media (max-width: 640px) {
  .urun-single__desc table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.urun-single__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  letter-spacing: -0.02em;
}

.urun-single__desc {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.75;
}

.urun-single__desc p {
  margin: 0 0 1rem;
}

.urun-faq {
  margin-top: clamp(2rem, 3vw, 3rem);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: clamp(1.5rem, 2.5vw, 2rem);
}

.urun-faq__title {
  margin: 0 0 1rem;
  font-size: 35px;
}

.urun-faq__list {
  display: grid;
  gap: 0.75rem;
}

.urun-faq__item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  padding: 0.9rem 1rem;
}

.urun-faq__q {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.urun-faq__q::-webkit-details-marker {
  display: none;
}

.urun-faq__q::after {
  content: "+";
  float: right;
  font-weight: 800;
}

.urun-faq__item[open] .urun-faq__q::after {
  content: "–";
}

.urun-faq__a {
  margin-top: 0.75rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

/* Other products slider (uses same products-card styles as home) */
.urun-related {
  margin-top: clamp(2rem, 3vw, 3rem);
}

.urun-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.urun-related__title {
  margin: 0;
  font-size: 35px;
}

.urun-related__nav {
  display: inline-flex;
  gap: 0.5rem;
}

.urun-related__btn {
  width: 44px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
}

.urun-related__icon {
  display: block;
}

.urun-related__btn:hover {
  border-color: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.95);
}

.products-slider {
  position: relative;
}

.products-slider__track {
  --slider-gap: 1.25rem;
  display: flex;
  gap: var(--slider-gap);
  overflow-x: auto;
  padding: 0.25rem 0.25rem 0.75rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}

.products-slider__track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.products-slider__track::-webkit-scrollbar-thumb {
  display: none;
}

.products-slider__track .products-card {
  flex: 0 0 calc((100% - var(--slider-gap) * 2) / 3);
  scroll-snap-align: start;
}

@media (max-width: 640px) {
  .urun-related__nav {
    display: none;
  }
  .products-slider__track .products-card {
    flex-basis: 100%;
  }
}
/* Urunler archive header */
.archive-urunler__head {
  margin-bottom: 1.25rem;
}

.archive-urunler__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  letter-spacing: -0.02em;
}

.archive-urunler__desc {
  margin-top: 0.5rem;
  max-width: 70ch;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

@media (max-width: 1199px) {
  .urun-single__grid {
    grid-template-columns: 1fr;
  }
  .urun-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .urun-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* ---------------------------------------------
 * Lightbox
 * -------------------------------------------- */
body.dh-lightbox-open {
  overflow: hidden;
}

.dh-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.dh-lightbox.is-open {
  display: block;
}

.dh-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.dh-lightbox__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.dh-lightbox__img {
  max-width: min(960px, 92vw);
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  background: #111;
}

.dh-lightbox__btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 18, 18, 0.6);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dh-lightbox__prev,
.dh-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
}

.dh-lightbox__prev {
  left: 1rem;
  right: auto;
}

.dh-lightbox__next {
  right: 1rem;
}

@media (max-width: 640px) {
  .dh-lightbox__prev,
  .dh-lightbox__next {
    display: none;
  }
}
/* ---------------------------------------------
 * Footer
 * -------------------------------------------- */
.site-footer {
  margin-top: 0;
}

.footer-cta {
  background: #e11d2e;
  color: #fff;
  padding: var(--dh-section-pad-y) var(--dh-section-pad-x);
}

.footer-cta__inner {
  width: min(var(--dh-container), 100% - var(--dh-section-pad-x) * 2);
  margin-inline: auto;
  text-align: center;
}

.footer-cta__kicker {
  margin: 0 0 0.75rem;
  font-weight: 700;
  opacity: 0.95;
}

.footer-cta__title {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.footer-cta__text {
  max-width: 78ch;
  margin: 0.75rem auto 1.75rem;
  opacity: 0.95;
  line-height: 1.7;
}

.footer-cta__text p {
  margin: 0 0 0.9rem;
}

.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  transition: transform 150ms ease, filter 150ms ease;
}

.footer-cta__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.footer-cta__btn:focus {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

/* Footer navigation (desktop columns + mobile accordion) */
.footer-nav {
  background: #fff;
  color: #111;
  padding: var(--dh-section-pad-y) var(--dh-section-pad-x);
}

.footer-nav__inner {
  width: min(var(--dh-container), 100% - var(--dh-section-pad-x) * 2);
  margin-inline: auto;
}

.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}

.footer-nav__item {
  margin: 0;
}

.footer-nav__top-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-nav__top-link {
  font-weight: 700;
  font-size: 1rem;
  color: #111;
  text-decoration: none;
}

.footer-nav__top-link:hover {
  text-decoration: underline;
}

.footer-nav__sub {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-nav__link,
.footer-nav__sub a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-nav__sub a:hover,
.footer-nav__link:hover {
  color: rgba(0, 0, 0, 0.9);
  text-decoration: underline;
}

/* Prevent default purple visited links + add accessible focus styles */
.footer-nav a:visited,
.footer-bottom a:visited {
  color: inherit;
}

.footer-nav a:focus-visible,
.footer-bottom a:focus-visible,
.footer-nav__toggle:focus-visible,
.footer-bottom__social-link:focus-visible {
  outline: 2px solid rgba(239, 26, 36, 0.6);
  outline-offset: 3px;
  border-radius: 10px;
}

.footer-bottom__social-link:focus-visible {
  border-radius: 999px;
}

.footer-nav__toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.footer-nav__toggle::before,
.footer-nav__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.footer-nav__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 1199px) {
  .footer-nav__list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .footer-nav__top-head {
    padding: 0.5rem 0;
  }
  .footer-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-nav__sub {
    display: none;
    margin-top: 0.5rem;
    padding-left: 0.25rem;
  }
  .footer-nav__item.is-open > .footer-nav__sub {
    display: grid;
  }
  .footer-nav__item.is-open .footer-nav__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
/* Footer bottom bar */
.footer-bottom {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem var(--dh-section-pad-x);
}

.footer-bottom__inner {
  width: min(var(--dh-container), 100% - var(--dh-section-pad-x) * 2);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom__left {
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.9rem;
}

.footer-bottom__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom__legal {
  display: inline-flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-bottom__legal a {
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-bottom__legal a:hover {
  color: rgba(0, 0, 0, 0.9);
  text-decoration: underline;
}

.footer-bottom__social {
  display: inline-flex;
  gap: 0.5rem;
}

.footer-bottom__social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}

.footer-bottom__social-link:hover {
  color: rgba(0, 0, 0, 0.95);
  border-color: rgba(0, 0, 0, 0.18);
}

@media (max-width: 640px) {
  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*# sourceMappingURL=app.css.map */
