:root {
  /* Geri donus notu: eski krem palet --koyu #202020, --gri #6b6b6b,
     --cizgi #e7e0c8, --zemin #fffaf0, --golge rgba(17, 17, 17, 0.12),
     header rgba(255, 250, 240, 0.94), kart #ffffff, form #fffdf6.
     Onceki koyu yesil palet: --zemin #121a17, --panel #1f2a24,
     --panel-yuksek #29352e, alt #17221d, form #151f1b.
     Onceki siyah palet: --zemin #070707, --panel #151515,
     --panel-yuksek #20201c, alt #101010, form #0f0f0f. */
  --sari: #f7c600;
  --sari-acik: #ffe45c;
  --siyah: #111111;
  --koyu: #202020;
  --gri: #6b6b6b;
  --cizgi: #e8e8e8;
  --zemin: #ffffff;
  --beyaz: #ffffff;
  --panel: #ffffff;
  --panel-yuksek: #ffffff;
  --metin: #111111;
  --metin-soluk: #4b4b4b;
  --kenar: rgba(17, 17, 17, 0.12);
  --yesil: #1fa855;
  --golge: 0 18px 45px rgba(17, 17, 17, 0.12);
  --buton-yaricap: 0;
  --yaricap: 0;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--zemin);
  color: var(--metin);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--siyah);
  color: var(--sari);
  border-radius: var(--yaricap);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--kenar);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 132px;
  font-weight: 800;
}

.brand img {
  width: 132px;
  height: 76px;
  object-fit: contain;
  border-radius: 0;
}

.brand-fallback {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  background: var(--sari);
  color: var(--siyah);
  border: 2px solid var(--siyah);
  border-radius: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.brand-text {
  display: none;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 18px;
}

.brand-text span {
  margin-top: 4px;
  color: var(--gri);
  font-size: 12px;
  font-weight: 700;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(247, 198, 0, 0.22);
  border-radius: var(--buton-yaricap);
  background: var(--panel);
  color: var(--metin);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus {
  border-color: rgba(247, 198, 0, 0.5);
  background: var(--sari);
  color: var(--siyah);
  outline: none;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 0;
  background: currentColor;
  transform: translateX(-50%);
  transition: top 220ms ease, transform 220ms ease, opacity 160ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

body.menu-open .nav-toggle {
  border-color: var(--siyah);
  background: var(--sari);
}

body.menu-open .nav-toggle span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

body.menu-open .nav-toggle span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.nav-dropdown-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 0;
  border-radius: var(--buton-yaricap);
  background: transparent;
  color: var(--koyu);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus,
.nav-dropdown-toggle.active {
  background: var(--sari);
  color: var(--siyah);
  outline: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  gap: 8px;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-2px);
}

.nav-submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 80;
  display: grid;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--kenar);
  border-radius: var(--yaricap);
  background: var(--panel-yuksek);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu a {
  justify-content: flex-start;
  min-height: 38px;
  padding: 9px 11px;
  white-space: nowrap;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--buton-yaricap);
  background: var(--siyah);
  color: var(--sari);
  font-weight: 800;
  white-space: nowrap;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #000000;
  color: var(--beyaz);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.splash-content {
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
}

.splash-logo {
  width: min(560px, 82vw);
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.splash-fallback {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 4px solid var(--siyah);
  border-radius: 0;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.15;
  background: rgba(255, 255, 255, 0.3);
}

.splash-content p {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

body.site-loaded .splash-screen {
  opacity: 0;
  visibility: hidden;
}

.hero {
  padding: 72px 0 56px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(247, 198, 0, 0.2), rgba(255, 255, 255, 0) 56%),
    url("../images/anasayfa/arkaplan.png"),
    var(--zemin);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--koyu);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 5px;
  background: var(--sari);
  border-radius: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
}

h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
}

h3 {
  font-size: 23px;
  font-weight: 900;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--metin-soluk);
  font-size: 19px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--siyah);
  border-radius: var(--buton-yaricap);
  background: var(--siyah);
  color: var(--sari);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.16);
  outline: none;
}

.btn.secondary {
  background: var(--sari);
  color: var(--siyah);
}

.btn.light {
  background: var(--panel-yuksek);
  color: var(--metin);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 4px solid var(--siyah);
  border-radius: var(--yaricap);
  background: var(--sari);
  box-shadow: var(--golge);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--sari);
  border-radius: var(--yaricap);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  object-position: center center;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
  align-items: stretch;
}

.quick-info-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 92px;
  padding: 20px 20px 18px;
  overflow: hidden;
  border: 1px solid var(--kenar);
  border-top: 5px solid var(--sari);
  border-radius: var(--yaricap);
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

a.quick-info-card:hover,
a.quick-info-card:focus {
  transform: translateY(-3px);
  border-color: rgba(17, 17, 17, 0.24);
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.14);
  outline: none;
}

.quick-info-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -34px;
  z-index: 0;
  width: 92px;
  height: 92px;
  background: rgba(247, 198, 0, 0.12);
  transform: rotate(18deg);
  pointer-events: none;
}

.quick-info-card > * {
  position: relative;
  z-index: 1;
}

.quick-info strong {
  display: block;
  font-size: 21px;
  line-height: 1.15;
}

.quick-info span {
  color: var(--gri);
  font-weight: 700;
}

.quick-info .quick-info-label {
  width: fit-content;
  padding: 4px 8px;
  background: var(--sari);
  color: var(--siyah);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: #ffffff;
}

.section.alt.home-products {
  background:
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)),
    url("../images/anasayfa/arkaplan1.png"),
    #ffffff;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.section.dark {
  background: var(--siyah);
  color: var(--beyaz);
}

.section.dark .lead,
.section.dark .section-kicker,
.section.dark .muted {
  color: #d8d8d8;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.single {
  display: block;
  max-width: 820px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--gri);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  color: var(--metin-soluk);
}

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

.product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--kenar);
  border-radius: var(--yaricap);
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.product-card img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  background: #f7f7f7;
}

.product-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.product-card p {
  margin: 0;
  color: var(--metin-soluk);
}

.card-link {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 9px 12px;
  border-radius: var(--buton-yaricap);
  background: var(--siyah);
  color: var(--sari);
  font-weight: 900;
}

.notice-band {
  padding: 22px 0;
  background: var(--sari);
  color: var(--siyah);
  font-weight: 900;
}

.notice-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.notice-band p {
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  border: 3px solid var(--siyah);
  border-radius: var(--yaricap);
  box-shadow: var(--golge);
}

.check-list,
.plain-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: var(--sari);
  box-shadow: 0 0 0 3px rgba(247, 198, 0, 0.24);
}

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

.feature-item {
  padding: 22px;
  border-left: 5px solid var(--sari);
  background: var(--panel);
  border-radius: var(--yaricap);
}

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

.feature-item p {
  margin: 0;
  color: var(--metin-soluk);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: adim;
}

.process-step {
  position: relative;
  min-height: 190px;
  padding: 26px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--yaricap);
  background: rgba(255, 255, 255, 0.06);
}

.process-step::before {
  counter-increment: adim;
  content: counter(adim);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 0;
  background: var(--sari);
  color: var(--siyah);
  font-weight: 900;
}

.process-step p {
  margin: 10px 0 0;
  color: #d8d8d8;
}

.page-hero {
  padding: 62px 0;
  background:
    linear-gradient(120deg, rgba(247, 198, 0, 0.22), rgba(255, 255, 255, 0) 58%),
    var(--zemin);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: 36px;
  align-items: center;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  border: 3px solid var(--siyah);
  border-radius: var(--yaricap);
  box-shadow: var(--golge);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gri);
  font-size: 14px;
  font-weight: 800;
}

.crumbs a {
  color: var(--metin);
}

.stock-alert {
  margin-top: 24px;
  padding: 16px 18px;
  border: 2px solid var(--siyah);
  border-radius: var(--yaricap);
  background: var(--sari);
  color: var(--siyah);
  font-weight: 900;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 34px;
}

.detail-copy p {
  color: var(--metin-soluk);
}

.side-panel {
  align-self: start;
  padding: 24px;
  border: 2px solid var(--siyah);
  border-radius: var(--yaricap);
  background: var(--sari);
}

.side-panel p {
  margin: 10px 0 0;
  color: #2a2a2a;
  font-weight: 700;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--yaricap);
  border: 2px solid var(--siyah);
}

.gallery-text {
  display: grid;
  align-content: center;
  padding: 34px;
  background: var(--siyah);
  color: var(--beyaz);
  border-radius: var(--yaricap);
}

.gallery-text p {
  margin: 16px 0 0;
  color: #dddddd;
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.appointment-panel {
  padding: 26px;
  border: 2px solid var(--siyah);
  border-radius: var(--yaricap);
  background: var(--panel);
  box-shadow: var(--golge);
}

.appointment-panel img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: var(--yaricap);
  border: 2px solid var(--siyah);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(247, 198, 0, 0.24);
  border-radius: var(--yaricap);
  background: #ffffff;
  color: var(--metin);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sari);
  outline: 3px solid rgba(247, 198, 0, 0.36);
}

.form-note,
.form-status {
  margin: 16px 0 0;
  color: var(--gri);
  font-size: 14px;
  font-weight: 700;
}

.form-status {
  color: var(--metin);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-item {
  padding: 18px;
  border: 1px solid var(--kenar);
  border-radius: var(--yaricap);
  background: var(--panel);
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.policy-content {
  max-width: 900px;
}

.policy-content h2 {
  margin-top: 42px;
  font-size: 28px;
}

.policy-content p,
.policy-content li {
  color: var(--metin-soluk);
}

.policy-content ul {
  padding-left: 22px;
}

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

.policy-link {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 24px;
  border: 2px solid var(--siyah);
  border-radius: var(--yaricap);
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.policy-link span {
  color: var(--gri);
}

.site-footer {
  padding: 54px 0 28px;
  background: var(--siyah);
  color: var(--beyaz);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 18px;
}

.footer-brand img {
  width: clamp(172px, 16vw, 230px);
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(247, 198, 0, 0.24);
  border-radius: 0;
  background: transparent;
}

.footer-brand:hover,
.footer-brand:focus {
  color: var(--beyaz);
  outline: none;
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--sari);
}

.footer-grid p {
  color: #d6d6d6;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #eeeeee;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--sari);
  outline: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #c8c8c8;
  font-size: 14px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 3px solid var(--beyaz);
  border-radius: 50%;
  background: var(--yesil);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.26);
}

.whatsapp-float img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.whatsapp-float:focus,
.whatsapp-float:hover {
  outline: 3px solid rgba(247, 198, 0, 0.74);
}

@media (max-width: 1080px) {
  .header-call {
    display: none;
  }

  .site-nav {
    gap: 2px;
    font-size: 13px;
  }

  .site-nav a,
  .nav-dropdown-toggle {
    padding: 9px 8px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .hero,
  .section.alt.home-products,
  .page-hero {
    background-position: center top;
    background-size: cover;
  }

  .section.alt.home-products {
    display: none;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height);
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: calc(100vh - var(--header-height));
    overflow: auto;
    padding: 14px 16px 22px;
    background: var(--zemin);
    border-bottom: 1px solid var(--kenar);
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  body.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 13px 14px;
    background: var(--panel);
    border: 1px solid var(--kenar);
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 6px;
    padding: 8px;
    border-color: var(--kenar);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .nav-submenu {
    display: grid;
  }

  .nav-submenu a {
    min-height: 44px;
    padding-left: 18px;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .detail-grid,
  .appointment-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-media {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .hero-media img,
  .page-hero img,
  .split img,
  .appointment-panel img,
  .product-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
  }

  .product-grid,
  .feature-grid,
  .process,
  .policy-index {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    background:
      linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
      linear-gradient(135deg, rgba(247, 198, 0, 0.18), rgba(255, 255, 255, 0) 56%),
      url("../images/anasayfa/arkaplan.png"),
      var(--zemin);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .section.alt.home-products {
    background:
      linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)),
      url("../images/anasayfa/arkaplan1.png"),
      #ffffff;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .brand-text span {
    display: none;
  }

  .hero,
  .page-hero {
    padding: 42px 0;
  }

  .section {
    padding: 54px 0;
  }

  .hero-media img,
  .page-hero img,
  .split img,
  .appointment-panel img,
  .product-card img {
    aspect-ratio: 4 / 3;
  }

  .gallery-strip img {
    min-height: 220px;
    object-position: center;
  }

  .hero-actions,
  .section-actions,
  .notice-band .container {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .product-grid,
  .feature-grid,
  .process,
  .policy-index,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    text-align: center;
  }

  .footer-brand {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-brand img {
    width: 170px;
  }

  .appointment-panel,
  .side-panel,
  .gallery-text {
    padding: 20px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }
}
