:root {
  --bg: #fffaf8;
  --ink: #2b2324;
  --muted: #7b6b6d;
  --line: #f0dfdf;
  --placeholder: #fbf0f2;
  --accent: #c97a8e;
  --gold: #c7a057;
  --cream: #fffdf9;
  --radius: 4px;
}

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

body {
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fffaf8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body.modal-open { overflow: hidden; }
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,250,248,.62), rgba(255,250,248,.76)),
    url("images/arimaya-bahariye-logo.webp") center / min(112vmax, 1180px) auto no-repeat;
  opacity: .82;
  pointer-events: none;
  z-index: 0;
}
body > * {
  position: relative;
  z-index: 1;
}

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

/* Topbar */
.topbar {
  background: #9f5f70;
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 9px 16px;
  font-weight: 300;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}
.brand img {
  width: auto;
  height: 74px;
  max-width: min(240px, 42vw);
  object-fit: contain;
  display: block;
}
.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.header-actions { display: flex; gap: 6px; flex: 1 1 0; justify-content: flex-end; }
.menu-btn { display: inline-flex; }

.icon-btn {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
  display: inline-flex;
  border-radius: 50%;
  transition: background .15s;
}
.icon-btn:hover,
.icon-btn.active { background: #fbedf1; color: #9f5f70; }

.cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
}
.cart-badge[hidden] { display: none; }

/* Nav */
.nav {
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  justify-content: center;
  padding: 14px 32px;
  white-space: nowrap;
}
.nav li {
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--muted);
  position: relative;
  padding-bottom: 3px;
  transition: color .15s;
}
.nav li:hover { color: var(--ink); }
.nav li.active { color: var(--ink); font-weight: 500; }
.nav li.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--accent);
}

/* Home cover */
.home-cover {
  background: transparent;
}
.hero-cover {
  position: relative;
  overflow: hidden;
  margin-top: clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at 50% 32%, rgba(244, 191, 204, .18), transparent 30%),
    linear-gradient(180deg, rgba(255,253,251,.72), rgba(255,247,245,.76));
}
.perspective-cover {
  height: clamp(430px, calc(100svh - 182px), 720px);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.12fr) minmax(0, .95fr);
  align-items: center;
  gap: 0;
  padding: clamp(14px, 3vw, 42px) clamp(14px, 4vw, 64px) clamp(106px, 10vw, 150px);
  perspective: 1400px;
  perspective-origin: 50% 45%;
}
.perspective-frame {
  display: none;
}
.side-photo-panel,
.center-poster {
  position: relative;
  z-index: 1;
}
.side-photo-panel {
  align-self: center;
  height: 100%;
  min-height: 0;
  position: relative;
  cursor: pointer;
  outline: none;
  box-shadow: 0 26px 60px rgba(78, 37, 47, .1);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  /* Kapak panelleri kapalıyken hafif açılı, hover/focus durumunda öne gelip düzleşir. */
  transition: transform .55s cubic-bezier(.2, .8, .22, 1), box-shadow .55s ease;
  will-change: transform;
}
.side-photo-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(201, 122, 142, .22);
  /* Şeffaflık korunur: PNG'nin saydam alanları arkadaki wallpaper'ı gösterir */
  background: transparent;
}
.side-photo-stage::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(199, 160, 87, .22);
  pointer-events: none;
  z-index: 3;
}
/* Hover'da fotoğrafın üzerinden geçen ışıltı/sim parıltısı */
.side-photo-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 244, 214, .55) 47%, rgba(255, 255, 255, .85) 50%, rgba(255, 244, 214, .55) 53%, transparent 70%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}
.side-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: relative;
  z-index: 1;
}
.side-photo-panel-left {
  justify-self: stretch;
  --ry: 28deg;
  --tx: 28px;
  --hover-tx: 6px;
  transform: rotateY(var(--ry)) translateX(var(--tx));
  transform-origin: right center;
}
.side-photo-panel-right {
  justify-self: stretch;
  --ry: -28deg;
  --tx: -28px;
  --hover-tx: -6px;
  transform: rotateY(var(--ry)) translateX(var(--tx));
  transform-origin: left center;
}
/* Üzerine gelince fotoğraf düzleşir, öne çıkar; ayrılınca açılı yerine döner. */
.side-photo-panel-left:hover,
.side-photo-panel-left:focus,
.side-photo-panel-left:focus-within,
.side-photo-panel-right:hover,
.side-photo-panel-right:focus,
.side-photo-panel-right:focus-within {
  transform: rotateY(0deg) translateX(var(--hover-tx)) translateZ(150px) scale(1.05);
  box-shadow: 0 42px 95px rgba(78, 37, 47, .26);
  z-index: 6;
}
.side-photo-panel:hover .side-photo-stage::after,
.side-photo-panel:focus .side-photo-stage::after,
.side-photo-panel:focus-within .side-photo-stage::after {
  animation: panel-shimmer 1.05s ease .1s forwards;
}
@keyframes panel-shimmer {
  0%   { transform: translateX(-120%); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}
/* Sim / glitter parçacıkları (JS ile üretilir) */
.sparkle {
  position: absolute;
  width: var(--s, 12px);
  height: var(--s, 12px);
  margin-top: calc(var(--s, 12px) / -2);
  margin-left: calc(var(--s, 12px) / -2);
  background: radial-gradient(circle, #fff 0%, #ffe9a8 38%, rgba(255, 209, 122, 0) 70%);
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  pointer-events: none;
  z-index: 7;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(255, 226, 150, .9));
  animation: sparkle-pop var(--dur, 1100ms) ease-out forwards;
}
@keyframes sparkle-pop {
  0%   { opacity: 0; transform: translate(0, 0) scale(0) rotate(0deg); }
  25%  { opacity: 1; transform: translate(calc(var(--dx, 0px) * .3), -8px) scale(1) rotate(60deg); }
  100% { opacity: 0; transform: translate(var(--dx, 0px), -40px) scale(.2) rotate(160deg); }
}
@media (prefers-reduced-motion: reduce) {
  .side-photo-panel,
  .side-photo-stage,
  .center-poster { transition: none; }
  .sparkle, .side-photo-stage::after { display: none; }
}
.center-poster {
  justify-self: center;
  align-self: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
  box-shadow: 0 28px 80px rgba(78, 37, 47, .16);
  transition: transform .5s cubic-bezier(.18, .76, .26, 1), box-shadow .5s ease;
  will-change: transform;
}
/* Orta poster: dönmeden direkt büyür */
.center-poster:hover,
.center-poster:focus {
  transform: scale(1.06);
  box-shadow: 0 44px 100px rgba(78, 37, 47, .28);
  z-index: 6;
}
.center-poster::before,
.center-poster::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(48, 37, 38, .35), transparent);
  z-index: 2;
}
.center-poster::before { left: -1px; }
.center-poster::after { right: -1px; }
.center-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-message {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 3vw, 42px);
  width: min(720px, calc(100% - 28px));
  padding: clamp(7px, 0.9vw, 10px) clamp(14px, 2vw, 22px) clamp(8px, 1vw, 11px);
  border: 1px solid rgba(201, 122, 142, .22);
  background: rgba(255, 250, 248, .82);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 54px rgba(78, 37, 47, .14);
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  transition: transform .55s cubic-bezier(.2, .8, .22, 1), box-shadow .55s ease;
}
/* Fotoğraflar öne çıkınca yazı da onlarla hareket etsin: hem aşağı hem öne gelsin, gerilerinde kalmasın */
.side-photo-panel:hover ~ .hero-message,
.side-photo-panel:focus ~ .hero-message,
.side-photo-panel:focus-within ~ .hero-message,
.center-poster:hover ~ .hero-message,
.center-poster:focus ~ .hero-message {
  transform: translateX(-50%) translateY(clamp(8px, 1.6vw, 16px)) scale(1.05);
  box-shadow: 0 30px 70px rgba(78, 37, 47, .22);
  z-index: 7;
}
.hero-message span {
  display: block;
  color: #9f5f70;
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-message strong {
  display: block;
  margin-top: 4px;
  color: #2b2324;
  font-size: clamp(14px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.08;
}
.perspective-cta {
  margin-top: clamp(6px, 1vw, 9px);
  min-height: clamp(32px, 4vw, 36px);
  min-width: min(300px, calc(100% - 48px));
}
.hero-btn {
  min-height: 44px;
  border: 1px solid rgba(127, 78, 92, .2);
  border-radius: 999px;
  background: #9f5f70;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 0 22px;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(78, 37, 47, .16);
  transition: transform .15s, background .15s;
}
.hero-btn:hover {
  background: #884f5f;
  transform: translateY(-1px);
}
.perspective-cta:hover {
  transform: translateY(-1px);
}
.hero-btn.secondary {
  background: rgba(255,255,255,.86);
  color: #7f4e5c;
  border-color: rgba(159, 95, 112, .28);
}
.hero-btn.secondary:hover {
  background: #fff;
}
.home-intro {
  position: relative;
  max-width: 1120px;
  margin: 42px auto 0;
  padding: 42px clamp(22px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,247,245,.68)),
    radial-gradient(circle at 15% 20%, rgba(244,191,204,.32), transparent 28%);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(201, 122, 142, .18);
  box-shadow: 0 24px 70px rgba(90, 49, 60, .12);
  z-index: 2;
}
.home-intro::before,
.home-intro::after {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(199, 160, 87, .55), transparent);
}
.home-intro::before { left: 18px; }
.home-intro::after { right: 18px; }
.intro-mark {
  color: #9f5f70;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-intro h1 {
  max-width: 780px;
  margin-top: 10px;
  color: #2b2324;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
}
.home-intro p {
  max-width: 690px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.intro-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.intro-actions span {
  color: #7f4e5c;
  font-size: 13px;
  letter-spacing: .03em;
}
.intro-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(201, 122, 142, .18);
  background: rgba(201, 122, 142, .16);
}
.intro-points div {
  display: grid;
  gap: 5px;
  min-height: 94px;
  align-content: center;
  padding: 18px;
  background: rgba(255,255,255,.58);
}
.intro-points strong {
  color: #9f5f70;
  font-size: 18px;
  font-weight: 500;
}
.intro-points span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.about-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 28px;
  max-width: 1120px;
  margin: 28px auto 0;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,250,248,.86)),
    radial-gradient(circle at 85% 18%, rgba(209, 166, 86, .14), transparent 34%);
  border: 1px solid rgba(201, 122, 142, .18);
  box-shadow: 0 24px 70px rgba(90, 49, 60, .12);
  backdrop-filter: blur(8px);
  scroll-margin-top: 110px;
}
.about-copy {
  display: grid;
  gap: 14px;
}
.about-kicker {
  color: #9f5f70;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.about-copy h2 {
  max-width: 690px;
  color: #2b2324;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}
.about-copy p {
  max-width: 760px;
  color: #5f5052;
  font-size: 15px;
  line-height: 1.78;
}
.about-highlights {
  display: grid;
  gap: 12px;
  align-content: center;
}
.about-highlights div {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(201, 122, 142, .16);
  box-shadow: 0 12px 34px rgba(90, 49, 60, .08);
}
.about-highlights strong {
  color: #9f5f70;
  font-size: 18px;
  font-weight: 500;
}
.about-highlights span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.promo-cover {
  display: grid;
  place-items: center;
  padding: 54px 32px 58px;
  background: transparent;
}
.promo-cover img {
  width: min(760px, 100%);
  border: 1px solid rgba(201, 122, 142, .2);
  box-shadow: 0 22px 70px rgba(90, 49, 60, .14);
  display: block;
}

.catalog-shell[hidden] {
  display: none;
}

/* Catalog head */
.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 32px 32px 20px;
  max-width: 1600px;
  margin: 0 auto;
  background: rgba(255,250,248,.5);
  backdrop-filter: blur(5px);
}
.catalog-head h1 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .02em;
}
.catalog-lead {
  color: var(--muted);
  font-size: 14px;
  margin: 5px 0 2px;
}
.count { font-size: 13px; color: var(--muted); }
.sort { display: flex; align-items: center; gap: 10px; }
.sort label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.sort select {
  font-family: inherit;
  font-size: 13px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
  cursor: pointer;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 4px;
  padding: 0 32px 60px;
  max-width: 1600px;
  margin: 0 auto;
}

/* Card */
.card {
  position: relative;
  cursor: pointer;
  padding: 0 0 10px;
}
.card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: rgba(251,240,242,.62);
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .4s ease;
}
.card-media.empty::after {
  content: 'Arı Maya Bahariye';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b98a96;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,247,239,.54)),
    radial-gradient(circle at 50% 38%, rgba(244,191,204,.45), transparent 32%),
    var(--placeholder);
  pointer-events: none;
  z-index: 0;
}
.card:hover .card-media img.alt { opacity: 1; }
.card-media img.alt {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #fff;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 2px;
  z-index: 2;
}
.badge.sale { background: #9f5f70; color: #fff; }

.fav {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(255,255,255,.9);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: transform .12s, background .15s;
  z-index: 3;
}
.fav:hover { transform: scale(1.08); }
.fav.active { color: #b85b73; }
.fav.active svg path { fill: currentColor; }

.card-info {
  margin-top: 8px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(201, 122, 142, .18);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px rgba(78, 37, 47, .08);
}
.card-brand {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
}
.card-name {
  font-size: 13px;
  color: var(--muted);
  margin: 3px 0 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-desc {
  min-height: 38px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 4px 0 9px;
}
.color-option {
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(201, 122, 142, .28);
  border-radius: 999px;
  background: #fff;
  color: #7f4e5c;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  transition: background .15s, border-color .15s, color .15s;
}
.color-option:hover,
.color-option.active {
  background: #fbedf1;
  border-color: #c97a8e;
  color: #653848;
}
.detail-color-options {
  margin-top: 14px;
}
.detail-color-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.detail-color-options .color-options {
  margin-bottom: 0;
}
.card-price-row { display: flex; align-items: center; gap: 8px; }
.card-price { font-size: 14px; font-weight: 500; }
.card-price.old { color: var(--muted); text-decoration: line-through; font-weight: 300; font-size: 13px; }

.detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 10px;
  padding: 0 12px;
  border: 1px solid #d7bfc4;
  border-radius: var(--radius);
  background: #fff;
  color: #7f4e5c;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  transition: background .15s, border-color .15s, color .15s;
}
.detail-link:hover {
  background: #fbedf1;
  border-color: #c97a8e;
  color: #653848;
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  place-items: center;
  min-height: 220px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.68);
  color: var(--muted);
  text-align: center;
  padding: 32px;
}
.empty-state strong {
  color: var(--ink);
  font-weight: 500;
}

/* Product detail */
.product-modal[hidden] { display: none; }
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 35, 36, .42);
  backdrop-filter: blur(4px);
}
.product-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(300px, 440px);
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  background: #fffdf9;
  border: 1px solid rgba(201, 122, 142, .22);
  box-shadow: 0 30px 90px rgba(43, 35, 36, .24);
}
.detail-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 122, 142, .22);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.detail-media {
  min-height: 520px;
  background: #fff;
}
.detail-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-placeholder {
  color: #b98a96;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,247,239,.55)),
    radial-gradient(circle at 50% 42%, rgba(244,191,204,.45), transparent 34%),
    var(--placeholder);
}
.detail-gallery {
  position: relative;
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  gap: 12px;
  min-height: 520px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,249,247,.92)),
    var(--placeholder);
}
.detail-image-zoom {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 420px;
  border: 0;
  background: rgba(255,255,255,.7);
  cursor: zoom-in;
  padding: 0;
}
.detail-image-zoom::after {
  content: 'Büyüt';
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(201, 122, 142, .2);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #7f4e5c;
  font-size: 12px;
  box-shadow: 0 8px 20px rgba(78, 37, 47, .1);
}
.detail-media .detail-main-image {
  width: 100%;
  height: 100%;
  max-height: 470px;
  min-height: 0;
  object-fit: contain;
  display: block;
}
.gallery-arrow {
  position: absolute;
  top: 44%;
  z-index: 2;
  width: 38px;
  height: 44px;
  border: 1px solid rgba(201, 122, 142, .2);
  background: rgba(255,255,255,.9);
  color: #7f4e5c;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(78, 37, 47, .12);
}
.gallery-prev { left: 18px; }
.gallery-next { right: 18px; }
.detail-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.detail-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201, 122, 142, .2);
  background: #fff;
  cursor: pointer;
  padding: 3px;
}
.detail-thumb.active {
  border-color: #9f5f70;
  box-shadow: 0 0 0 2px rgba(159, 95, 112, .14);
}
.detail-thumb img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(28, 23, 24, .82);
}
.image-lightbox img {
  max-width: min(100%, 1120px);
  max-height: calc(100vh - 70px);
  object-fit: contain;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
}
.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.95);
  color: #2b2324;
  cursor: pointer;
}
.lightbox-close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}
.lightbox-arrow {
  top: 50%;
  width: 46px;
  height: 58px;
  transform: translateY(-50%);
  font-size: 38px;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.image-lightbox.single .lightbox-arrow {
  display: none;
}
.detail-content {
  padding: 46px 34px 34px;
}
.detail-kicker {
  color: #9f5f70;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-content h2 {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}
.detail-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 14px;
}
.detail-price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 18px;
  font-size: 21px;
  font-weight: 500;
}
.detail-price .old {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  text-decoration: line-through;
}
.detail-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.detail-controls label {
  display: grid;
  gap: 6px;
}
.detail-controls span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.detail-controls select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  padding: 8px 10px;
}
.detail-stock {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 18px;
  padding: 6px 11px;
  border: 1px solid #cfe3c7;
  border-radius: 999px;
  background: #f3fbef;
  color: #3f7b35;
  font-size: 13px;
  font-weight: 500;
}
.detail-stock::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #34a853;
}
.detail-stock.out {
  border-color: #f0c7ce;
  background: #fff4f5;
  color: #9f2936;
}
.detail-stock.out::before {
  background: #d84a5f;
}
.detail-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  border-radius: var(--radius);
  background: #1fa855;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, transform .15s;
}
.detail-whatsapp:hover {
  background: #168b45;
  transform: translateY(-1px);
}

/* Detayda adet + sepete ekle */
.detail-actions {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  margin-top: 18px;
}
.detail-qty {
  display: grid;
  gap: 6px;
}
.detail-qty span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.detail-qty select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  padding: 8px 10px;
}
.detail-add {
  align-self: end;
  min-height: 46px;
  border: none;
  border-radius: var(--radius);
  background: #9f5f70;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.detail-add:hover {
  background: #874c5c;
  transform: translateY(-1px);
}

/* Sepet cekmecesi */
.cart-drawer[hidden] { display: none; }
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 110;
}
.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 35, 36, .42);
  backdrop-filter: blur(4px);
}
.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fffdf9;
  border-left: 1px solid rgba(201, 122, 142, .22);
  box-shadow: -24px 0 70px rgba(43, 35, 36, .22);
  animation: cart-in .22s ease;
}
@keyframes cart-in {
  from { transform: translateX(24px); opacity: .4; }
  to   { transform: translateX(0); opacity: 1; }
}
.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.cart-panel-head h2 { font-size: 19px; font-weight: 500; }
.cart-close {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.cart-close:hover { color: var(--ink); }
.cart-lines {
  flex: 1;
  overflow-y: auto;
  padding: 12px 22px;
}
.cart-empty {
  display: grid;
  gap: 6px;
  text-align: center;
  padding: 60px 16px;
  color: var(--muted);
}
.cart-empty strong { color: var(--ink); font-weight: 500; font-size: 16px; }
.cart-empty span { font-size: 13px; }
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line-media {
  width: 64px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--placeholder);
}
.cart-line-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-line-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 11px;
  letter-spacing: .06em;
  color: #b98a96;
}
.cart-line-name { font-size: 14px; font-weight: 500; }
.cart-line-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cart-line-price { font-size: 13px; color: var(--muted); margin-top: 2px; }
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
.qty-btn:hover { background: #fbedf1; color: #9f5f70; }
.qty-val { min-width: 18px; text-align: center; font-size: 14px; }
.cart-line-remove {
  margin-left: 6px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.cart-line-remove:hover { color: var(--accent); }
.cart-line-total { font-size: 14px; font-weight: 600; white-space: nowrap; }
.cart-foot {
  border-top: 1px solid var(--line);
  padding: 18px 22px 22px;
  background: rgba(255,245,246,.5);
}
.cart-foot[hidden] { display: none; }
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-size: 15px;
}
.cart-subtotal strong { font-size: 19px; font-weight: 600; }
.cart-checkout-btn {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: var(--radius);
  background: #9f5f70;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.cart-checkout-btn:hover { background: #874c5c; transform: translateY(-1px); }
.cart-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* Sipariş (checkout) penceresi */
.checkout-modal[hidden] { display: none; }
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}
.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 35, 36, .46);
  backdrop-filter: blur(4px);
}
.checkout-box {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  max-height: min(800px, calc(100vh - 48px));
  overflow: auto;
  background: #fffdf9;
  border: 1px solid rgba(201, 122, 142, .22);
  box-shadow: 0 30px 90px rgba(43, 35, 36, .24);
}
.checkout-main {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
}
.checkout-summary {
  padding: 34px 28px;
  background: rgba(255,245,246,.6);
  border-right: 1px solid var(--line);
}
.checkout-summary h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9f5f70;
  margin-bottom: 16px;
}
.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.checkout-line span { color: var(--muted); }
.checkout-line strong { font-weight: 600; white-space: nowrap; }
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 16px;
  font-size: 15px;
}
.checkout-total strong { font-size: 20px; font-weight: 600; }
.checkout-form-wrap { padding: 38px 30px 30px; }
.checkout-form-wrap h2 { font-size: 24px; font-weight: 500; }
.checkout-lead { color: var(--muted); font-size: 13px; margin-top: 6px; }
.checkout-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.checkout-form label {
  display: grid;
  gap: 6px;
}
.checkout-form .checkout-full { grid-column: 1 / -1; }
.checkout-form span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
}
.checkout-form input { min-height: 44px; }
.checkout-form textarea { resize: vertical; }
.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.checkout-payment-note {
  display: grid;
  gap: 3px;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px dashed rgba(201, 122, 142, .4);
  border-radius: var(--radius);
  background: #fff7f9;
}
.checkout-payment-note strong { font-size: 13px; font-weight: 600; }
.checkout-payment-note span { font-size: 12px; color: var(--muted); line-height: 1.5; }
.checkout-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  border: none;
  border-radius: var(--radius);
  background: #1fa855;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.checkout-submit:hover { background: #168b45; transform: translateY(-1px); }
.checkout-confirm {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 70px 34px;
}
.checkout-confirm[hidden] { display: none; }
.checkout-confirm-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f3fbef;
  border: 1px solid #cfe3c7;
  color: #34a853;
  font-size: 32px;
  display: grid;
  place-items: center;
}
.checkout-confirm h2 { font-size: 22px; font-weight: 500; }
.checkout-confirm p { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 360px; }
.checkout-confirm .checkout-submit { max-width: 200px; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 32px 24px;
  background: rgba(255,245,246,.58);
  backdrop-filter: blur(5px);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 0.9fr 0.9fr minmax(190px, 230px);
  gap: 28px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-hours {
  font-size: 13px;
  color: #9f5f70;
  margin: 2px 0 12px;
  font-weight: 500;
}
.footer-cols h4 { font-size: 14px; font-weight: 500; margin-bottom: 14px; letter-spacing: .04em; }
.footer-cols p { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 320px; }
.footer-cols a { display: block; font-size: 13px; color: var(--muted); margin-bottom: 9px; transition: color .15s; }
.footer-cols a:hover { color: var(--ink); }
.footer-map {
  align-self: stretch;
}
.footer-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(78, 37, 47, .12);
}
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* Arama çubuğu */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  color: #9f5f70;
}
.search-bar[hidden] { display: none; }
.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  padding: 4px 0;
}
.search-bar input::placeholder { color: var(--muted); }
.search-close {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.search-close:hover { color: var(--ink); }

/* Hamburger menü (kompakt kategori dropdown) */
.menu-wrap { position: relative; display: flex; align-items: center; flex: 1 1 0; }
.menu-drawer {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: max-content;
  min-width: 180px;
  max-width: 240px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 252, 251, .99);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 44px rgba(78, 37, 47, .18);
  z-index: 70;
  overflow: hidden;
  animation: drawer-in .18s ease;
}
.menu-drawer[hidden] { display: none; }
.menu-drawer ul {
  list-style: none;
  margin: 0;
  padding: 6px;
}
.menu-drawer li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 9px;
  font-size: 14px;
  letter-spacing: .01em;
  color: var(--ink);
  white-space: nowrap;
  cursor: pointer;
  transition: background .14s, color .14s;
}
.menu-drawer li::after {
  content: '›';
  color: var(--muted);
  font-size: 16px;
}
.menu-drawer li:hover {
  background: #fbedf1;
  color: #9f5f70;
}
.menu-drawer li.section-lead {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: default;
  padding: 8px 11px 4px;
}
.menu-drawer li.section-lead::after { content: none; }
.menu-drawer li.section-lead:hover { background: transparent; color: var(--muted); }
@keyframes drawer-in {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Yüzen WhatsApp butonu */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2fd16f, #1eb25a);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 178, 90, .45), inset 0 1px 1px rgba(255,255,255,.3);
  z-index: 80;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float svg { display: block; }
/* Genişleyen halka (nabız) efekti */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: wa-ring 2.4s ease-out infinite;
}
.wa-float:hover {
  transform: scale(1.07);
  box-shadow: 0 14px 32px rgba(37, 178, 90, .6), inset 0 1px 1px rgba(255,255,255,.3);
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: .55; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .header { padding: 9px 18px; }
  .brand { min-width: 120px; }
  .brand img { height: 58px; max-width: 44vw; }
  .menu-btn { display: inline-flex; }
  .nav ul { justify-content: flex-start; padding: 12px 18px; gap: 20px; }
  .perspective-cover {
    height: clamp(390px, calc(100svh - 126px), 620px);
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr) minmax(0, .88fr);
    padding: 12px 10px 96px;
    perspective: 900px;
  }
  .side-photo-panel-left {
    --ry: 18deg;
    --tx: 6px;
    --hover-tx: 0px;
  }
  .side-photo-panel-right {
    --ry: -18deg;
    --tx: -6px;
    --hover-tx: 0px;
  }
  .hero-message {
    position: absolute;
    width: calc(100% - 20px);
    padding: 10px 12px 12px;
    transform: translateX(-50%);
  }
  .hero-message strong {
    font-size: 17px;
  }
  .perspective-cta {
    min-width: 0;
    width: min(250px, 84%);
  }
  .perspective-cta:hover {
    transform: translateY(-1px);
  }
  .hero-btn {
    flex: 1 1 160px;
    padding: 0 14px;
  }
  .home-intro {
    margin: 0 12px;
    padding: 30px 22px;
  }
  .home-intro::before,
  .home-intro::after {
    display: none;
  }
  .home-intro h1 {
    font-size: 32px;
  }
  .home-intro p {
    font-size: 14px;
  }
  .intro-actions {
    align-items: stretch;
  }
  .intro-actions span {
    text-align: center;
  }
  .intro-points {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .intro-points div {
    min-height: 78px;
  }
  .about-section {
    grid-template-columns: 1fr;
    margin: 18px 12px 0;
    padding: 28px 22px;
  }
  .about-copy h2 {
    font-size: 28px;
  }
  .about-copy p {
    font-size: 14px;
  }
  .about-highlights div {
    min-height: 76px;
  }
  .promo-cover { padding: 18px 18px 36px; }
  .catalog-head { padding: 22px 18px 16px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px 8px; padding: 0 12px 40px; }
  .product-modal { padding: 12px; align-items: end; }
  .product-detail {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
  }
  .detail-media,
  .detail-placeholder {
    min-height: 280px;
  }
  .detail-gallery {
    grid-template-rows: minmax(300px, 1fr) auto;
    min-height: 360px;
    padding: 12px;
  }
  .detail-image-zoom {
    min-height: 300px;
  }
  .detail-media .detail-main-image {
    max-height: 330px;
  }
  .gallery-arrow {
    top: 42%;
    width: 34px;
    height: 40px;
    font-size: 28px;
  }
  .gallery-prev { left: 12px; }
  .gallery-next { right: 12px; }
  .detail-thumb {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }
  .image-lightbox {
    padding: 14px;
  }
  .lightbox-arrow {
    width: 38px;
    height: 50px;
    font-size: 32px;
  }
  .detail-content { padding: 28px 18px 20px; }
  .detail-content h2 { font-size: 23px; }
  .detail-controls { grid-template-columns: 1fr; }
  .checkout-modal { padding: 0; align-items: stretch; }
  .checkout-box { max-height: 100vh; height: 100%; width: 100%; }
  .checkout-main { grid-template-columns: 1fr; }
  .checkout-summary { border-right: none; border-bottom: 1px solid var(--line); padding: 24px 18px; }
  .checkout-form-wrap { padding: 24px 18px; }
  .checkout-form { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-map { grid-column: 1 / -1; }
  .footer-map iframe { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 420px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
