/* ==========================================================================
   MMO OUTFIT — ANA STİL DOSYASI
   Premium erkek giyim e-ticaret sitesi
   Font: Cormorant Garamond (başlık) + Inter (gövde)
   ========================================================================== */

/* ---------------------------------------------------------------------
   1. DEĞİŞKENLER
   --------------------------------------------------------------------- */
:root {
  --color-black: #111111;
  --color-white: #ffffff;
  --color-off-white: #f7f6f4;
  --color-light-gray: #e7e4df;
  --color-mid-gray: #d3cfc8;
  --color-text: #1a1a1a;
  --color-text-light: #8a8580;
  --color-accent: #b0895c;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-width: 1280px;
  --header-height: 84px;

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* ---------------------------------------------------------------------
   2. RESET & TEMEL
   --------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: light; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 300; letter-spacing: 0.01em; }

em { font-style: italic; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}

main.main-content { min-height: 60vh; display: block; }

/* ---------------------------------------------------------------------
   3. BUTONLAR
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 2.1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--color-black);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--dark {
  background: var(--color-black);
  color: var(--color-white);
}
.btn--dark:hover { background: transparent; color: var(--color-black); }

.btn--outline {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}
.btn--outline:hover { background: var(--color-black); color: var(--color-white); }

.btn--light {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}
.btn--light:hover { background: transparent; color: var(--color-white); }

.btn--green {
  background: #25d366;
  color: var(--color-white);
  border-color: #25d366;
}
.btn--green:hover { background: #1eb857; border-color: #1eb857; }

.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.68rem; }
.btn--full { width: 100%; }

/* ---------------------------------------------------------------------
   4. HEADER / NAVİGASYON
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-light-gray);
  transition: box-shadow var(--transition), height var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.site-header.scrolled .header-inner { height: calc(var(--header-height) - 12px); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
  transition: height var(--transition);
}

.nav-left ul {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav-left a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-left a:hover { color: var(--color-text-light); }

.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 1.4rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  min-width: 200px;
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: all var(--transition);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown li a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-size: 0.74rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.dropdown li a:hover { background: var(--color-off-white); }

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}

.header-auth-btns { display: flex; align-items: center; gap: 0.75rem; }

.btn-header-auth {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--color-light-gray);
  transition: all var(--transition);
}
.btn-header-auth:hover { border-color: var(--color-black); }

.btn-header-login, .btn-header-account { color: var(--color-text); }
.btn-header-register {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
.btn-header-register:hover { opacity: 0.85; }
.btn-header-logout { color: var(--color-text-light); }

.cart-icon { position: relative; display: flex; }

.cart-badge {
  position: absolute;
  top: -8px;
  right: -9px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.6rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--color-black);
  transition: all var(--transition);
}

/* Mobil overlay nav (soldan menü, header'daki hamburger için) */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--color-white);
  z-index: 900;
  padding: 4.5rem 2rem 2rem;
  transition: right var(--transition-slow);
  overflow-y: auto;
}
.mobile-nav.is-open { right: 0; }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.1rem;
}

.mobile-nav ul li { border-bottom: 1px solid var(--color-light-gray); }
.mobile-nav ul li a {
  display: block;
  padding: 1rem 0;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  z-index: 850;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.overlay.is-visible { opacity: 1; visibility: visible; }

/* ---------------------------------------------------------------------
   5. FLASH MESAJ
   --------------------------------------------------------------------- */
.flash-message {
  text-align: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 400;
}
.flash-success { background: #eaf6ec; color: #1f7a34; }
.flash-error   { background: #fdecec; color: #b3261e; }

/* ---------------------------------------------------------------------
   6. MOBİL ALT NAVİGASYON
   --------------------------------------------------------------------- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  background: var(--color-white);
  border-top: 1px solid var(--color-light-gray);
  justify-content: space-around;
  padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
}

.mbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
}
.mbn-item.mbn-active, .mbn-item:hover { color: var(--color-black); }

.mbn-cart-wrap { position: relative; }
.mbn-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.55rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------------------------
   7. AUTH MODAL (Giriş / Kayıt)
   --------------------------------------------------------------------- */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 1.5rem;
}
.auth-modal-overlay.is-open { opacity: 1; visibility: visible; }

.auth-modal {
  background: var(--color-white);
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.75rem 2.25rem 2.25rem;
  position: relative;
  transform: translateY(12px);
  transition: transform var(--transition);
}
.auth-modal-overlay.is-open .auth-modal { transform: translateY(0); }

.auth-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--color-text-light);
}
.auth-modal-close:hover { color: var(--color-black); }

.auth-modal-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.auth-modal-title {
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
}

.auth-modal-sub {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 0.35rem;
  margin-bottom: 1.75rem;
}

.auth-form { display: flex; flex-direction: column; gap: 1rem; }

.auth-form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.auth-field { display: flex; flex-direction: column; gap: 0.4rem; }
.auth-field label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.auth-field input {
  border: 1px solid var(--color-light-gray);
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  transition: border-color var(--transition);
}
.auth-field input:focus { outline: none; border-color: var(--color-black); }

.auth-field-icon { position: relative; display: flex; align-items: center; }
.auth-field-icon input { width: 100%; padding-right: 2.5rem; }
.toggle-pw-btn {
  position: absolute;
  right: 0.75rem;
  color: var(--color-text-light);
  display: flex;
}
.toggle-pw-btn:hover { color: var(--color-black); }

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}
.auth-check { display: flex; align-items: center; gap: 0.4rem; color: var(--color-text-light); }
.auth-forgot { color: var(--color-text-light); text-decoration: underline; }
.auth-forgot:hover { color: var(--color-black); }

.auth-submit { margin-top: 0.5rem; }

.auth-switch {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 1.5rem;
}
.auth-switch button {
  color: var(--color-black);
  font-weight: 500;
  text-decoration: underline;
}

/* ---------------------------------------------------------------------
   8. HABER BANDI (TICKER)
   --------------------------------------------------------------------- */
.ticker {
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
}
.ticker-inner {
  display: inline-flex;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: ticker-scroll 22s linear infinite;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------------------------------------------------------------------
   9. HERO SWIPER
   --------------------------------------------------------------------- */
.hero-swiper-section { position: relative; }

.hero-main-swiper {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: none;
}

.hero-slide-link { display: block; position: relative; width: 100%; height: 100%; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0) 100%);
}

.hero-slide-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
  max-width: 560px;
}

.hero-slide-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.hero-slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero-slide-line {
  width: 56px;
  height: 1px;
  background: var(--color-white);
  opacity: 0.6;
  margin: 1.5rem 0;
}

.hero-slide-desc {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-white);
  width: fit-content;
  transition: opacity var(--transition);
}
.hero-slide-link:hover .hero-slide-btn { opacity: 0.7; }

.hero-swiper-prev, .hero-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.hero-swiper-prev:hover, .hero-swiper-next:hover { background: rgba(255, 255, 255, 0.3); }
.hero-swiper-prev { left: 1.5rem; }
.hero-swiper-next { right: 1.5rem; }

.hero-pagination { position: absolute; bottom: 1.75rem; }
.hero-pagination .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 0.5;
  width: 7px;
  height: 7px;
}
.hero-pagination .swiper-pagination-bullet-active { opacity: 1; }

/* ---------------------------------------------------------------------
   10. YENİ SEZON / ÜRÜN SLIDER BÖLÜMLERİ
   --------------------------------------------------------------------- */
.yeni-sezon-section { padding: 4.5rem 0; }

.yeni-sezon-header { text-align: center; margin-bottom: 2.5rem; }

.yeni-sezon-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.yeni-sezon-swiper {
  padding: 0 2rem 3rem;
  position: relative;
}

.yeni-sezon-swiper .swiper-button-prev,
.yeni-sezon-swiper .swiper-button-next {
  color: var(--color-black);
  width: 36px;
  height: 36px;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 50%;
  transition: border-color var(--transition);
}
.yeni-sezon-swiper .swiper-button-prev:hover,
.yeni-sezon-swiper .swiper-button-next:hover { border-color: var(--color-black); }
.yeni-sezon-swiper .swiper-button-prev::after,
.yeni-sezon-swiper .swiper-button-next::after { font-size: 0.85rem; }

.yeni-sezon-swiper .swiper-pagination-bullet-active { background: var(--color-black); }

/* ---------------------------------------------------------------------
   11. ÜRÜN KARTI (ys-card) — swiper içinde kullanılan
   --------------------------------------------------------------------- */
.ys-card { display: block; }

.ys-card-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-off-white);
}

.ys-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.ys-card:hover .ys-card-img { transform: scale(1.045); }

.ys-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  z-index: 5;
}

.ys-fav-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.ys-fav-btn:hover { transform: scale(1.08); }

.ys-card-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition);
}
.ys-card:hover .ys-card-overlay { opacity: 1; transform: translateY(0); }

.ys-add-btn {
  display: block;
  text-align: center;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.65rem;
}
.ys-add-btn:hover { background: var(--color-black); color: var(--color-white); }

.ys-card-body { padding-top: 1rem; text-align: center; }

.ys-card-name {
  font-size: 0.82rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ys-card-price { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.ys-price-old { font-size: 0.78rem; color: var(--color-text-light); text-decoration: line-through; }
.ys-price-new { font-size: 0.9rem; font-weight: 500; }

/* Kart içi swiper (galeri) */
.card-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.card-swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.card-swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.card-swiper .swiper-button-prev,
.card-swiper .swiper-button-next {
  color: var(--color-white);
  background: rgba(0,0,0,0.3);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
}
.ys-card:hover .card-swiper .swiper-button-prev,
.ys-card:hover .card-swiper .swiper-button-next { opacity: 1; }
.card-swiper .swiper-button-prev::after,
.card-swiper .swiper-button-next::after { font-size: 0.6rem; }
.card-swiper .swiper-pagination { bottom: 6px; }
.card-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.7);
  width: 5px;
  height: 5px;
}
.card-swiper .swiper-pagination-bullet-active {
  background: var(--color-white);
  width: 14px;
  border-radius: 3px;
}

/* ---------------------------------------------------------------------
   12. GRID ÜRÜN KARTI (product-card) — koleksiyon/favoriler sayfalarında
   --------------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}
.product-grid > * {
  min-width: 0;
}

.product-card { display: block; }

.product-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-off-white);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card-image img { transform: scale(1.045); }

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  z-index: 5;
}

.product-card-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9rem;
  display: flex;
  gap: 0.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; transform: translateY(0); }

.product-card-body { padding-top: 1rem; text-align: center; }
.product-card-cat {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
}
.product-card-name { font-size: 0.85rem; font-weight: 400; margin-bottom: 0.4rem; }
.product-card-price { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.price-current { font-size: 0.9rem; font-weight: 500; }
.price-old { font-size: 0.78rem; color: var(--color-text-light); text-decoration: line-through; }

/* ---------------------------------------------------------------------
   13. FOOTER
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4.5rem 2rem 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.footer-slogan { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-desc { font-size: 0.8rem; line-height: 1.8; max-width: 320px; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.8rem; }
.footer-col a:hover { color: var(--color-white); }

.contact-list li { font-size: 0.8rem; margin-bottom: 0.1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.75rem;
  text-align: center;
}
.footer-pay { display: flex; align-items: center; gap: 0.75rem; }

/* ---------------------------------------------------------------------
   14. SOSYAL MEDYA / WHATSAPP FLOAT (sağ alt köşe buton yığını)
   --------------------------------------------------------------------- */
.social-float-stack {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 400;
  display: flex;
  flex-direction: column-reverse; /* WhatsApp en altta, diğerleri üstünde sıralanır */
  align-items: center;
  gap: 0.6rem;
}
.social-float-stack a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.social-float-stack a:hover { transform: scale(1.08); }
.social-float-stack a img { width: 20px; height: 20px; max-width: 20px; max-height: 20px; }

.whatsapp-float  { background: #25d366; }
.instagram-float {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.tiktok-float    { background: #010101; }
.telegram-float  { background: #0088cc; }

.about-social-link:hover { transform: scale(1.08); }

/* ---------------------------------------------------------------------
   15. SAYFA BAŞLIĞI (page-hero) — koleksiyon, hesap, iletişim vb.
   --------------------------------------------------------------------- */
.page-hero {
  background: var(--color-off-white);
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--color-light-gray);
}

/* ---------------------------------------------------------------------
   16. ÜRÜN LİSTESİ (products / category)
   --------------------------------------------------------------------- */
.products-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  padding: 3rem 0 5rem;
}

.filter-sidebar h3 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.filter-list { display: flex; flex-direction: column; gap: 0.85rem; }
.filter-list a {
  font-size: 0.82rem;
  color: var(--color-text-light);
  transition: color var(--transition);
}
.filter-list a:hover, .filter-list a.active {
  color: var(--color-black);
  font-weight: 500;
}

.empty-state {
  text-align: center;
  padding: 5rem 1.5rem;
  color: var(--color-text-light);
}
.empty-state svg { margin: 0 auto 1.25rem; color: var(--color-light-gray); }
.empty-state p { font-size: 0.9rem; margin-bottom: 1.5rem; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 1px solid var(--color-light-gray);
  transition: all var(--transition);
}
.page-link:hover { border-color: var(--color-black); }
.page-link.active { background: var(--color-black); color: var(--color-white); border-color: var(--color-black); }

/* ---------------------------------------------------------------------
   17. ÜRÜN DETAY SAYFASI
   --------------------------------------------------------------------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  padding: 3rem 0 5rem;
}
.product-detail > * { min-width: 0; }

.product-detail-gallery { min-width: 0; overflow: hidden; }

.product-gallery-swiper { border: 1px solid var(--color-light-gray); }
.product-gallery-swiper img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.product-gallery-swiper .swiper-pagination-bullet-active { background: var(--color-black); }

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.product-breadcrumb a:hover { color: var(--color-black); }

.product-detail-name {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.product-detail-prices {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.detail-price-current { font-size: 1.4rem; font-weight: 500; }
.detail-price-old { font-size: 1rem; color: var(--color-text-light); text-decoration: line-through; }
.detail-price-badge {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.55rem;
}

.product-detail-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.size-label-row { margin-bottom: 0.75rem; }

.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.size-btn {
  min-width: 46px;
  height: 42px;
  padding: 0 0.75rem;
  border: 1px solid var(--color-light-gray);
  font-size: 0.78rem;
  transition: all var(--transition);
}
.size-btn:hover { border-color: var(--color-black); }
.size-btn.active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.qty-row {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-light-gray);
  width: fit-content;
}
.qty-btn {
  width: 40px;
  height: 42px;
  font-size: 1rem;
  color: var(--color-text-light);
}
.qty-btn:hover { color: var(--color-black); }
.qty-input {
  width: 48px;
  height: 42px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-light-gray);
  border-right: 1px solid var(--color-light-gray);
  font-size: 0.85rem;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.product-actions .btn { flex: 1; min-width: 160px; }

/* ---------------------------------------------------------------------
   18. SEPET SAYFASI
   --------------------------------------------------------------------- */
.cart-page { padding: 3rem 0 5rem; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table thead th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-light-gray);
}
.cart-table tbody td {
  padding: 1.25rem 0.5rem 1.25rem 0;
  border-bottom: 1px solid var(--color-light-gray);
  vertical-align: middle;
}

.cart-product-cell { display: flex; align-items: center; gap: 1rem; }
.cart-product-img {
  width: 60px;
  height: 76px;
  object-fit: cover;
  background: var(--color-off-white);
}
.cart-product-name { font-size: 0.85rem; font-weight: 400; }

.cart-qty-input {
  width: 56px;
  padding: 0.45rem;
  border: 1px solid var(--color-light-gray);
  text-align: center;
  font-size: 0.8rem;
}

.remove-btn {
  color: var(--color-text-light);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.remove-btn:hover { color: #cc3333; }

.cart-summary {
  background: var(--color-off-white);
  padding: 1.75rem;
}
.cart-summary h3 {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-mid-gray);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}
.summary-row.total {
  color: var(--color-black);
  font-weight: 500;
  font-size: 0.95rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-mid-gray);
  margin-top: 0.5rem;
}

/* ---------------------------------------------------------------------
   19. CHECKOUT SAYFASI
   --------------------------------------------------------------------- */
.checkout-page { padding: 3rem 0 5rem; }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  align-items: start;
}

.form-section-title {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-grid--1col { grid-template-columns: 1fr; }

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--color-light-gray);
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--color-text);
  background-color: #fff;
  border-radius: 0;
  resize: vertical;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--color-black); }
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  color-scheme: light;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 14px;
  padding-right: 2.25rem;
  cursor: pointer;
}
.form-group select,
.form-group select option {
  color: var(--color-text) !important;
  background-color: #fff !important;
}
.form-group .input--disabled { background: var(--color-off-white); color: var(--color-text-light); }

/* Tarayıcı autofill (otomatik doldurma) rengini/arka planını sabitler,
   böylece kart alanları tarayıcıya göre farklı renk göstermez. */
.form-group input:-webkit-autofill,
.form-group select:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group select:-webkit-autofill:hover,
.form-group select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-in-out 0s;
}
.form-hint { font-size: 0.72rem; color: var(--color-text-light); }
.form-error { font-size: 0.72rem; color: #cc3333; }

.payment-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--color-light-gray);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color var(--transition);
}
.payment-option:has(input:checked) { border-color: var(--color-black); }
.payment-option input { margin-top: 0.2rem; }
.payment-option-label { font-size: 0.85rem; font-weight: 400; margin-bottom: 0.2rem; }
.payment-option-sub { font-size: 0.75rem; color: var(--color-text-light); }

.order-summary-sidebar {
  background: var(--color-off-white);
  padding: 1.75rem;
}

/* ---------------------------------------------------------------------
   20. HESABIM SAYFASI
   --------------------------------------------------------------------- */
.acct-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  color: var(--color-white);
}
.acct-banner__overlay { position: absolute; inset: 0; background: rgba(17, 17, 17, 0.55); }
.acct-banner__body { position: relative; text-align: center; }
.acct-banner__label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }
.acct-banner__title { font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; margin-top: 0.5rem; }
.acct-banner__sub { font-size: 0.85rem; margin-top: 0.6rem; opacity: 0.9; }

.acct-welcome { font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.5rem; }

.acct-page { padding: 3rem 0 5rem; }

.acct-tabs {
  display: none;
  overflow-x: auto;
  gap: 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-light-gray);
}
.acct-tab {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-light);
  padding: 0.5rem 0.9rem;
  white-space: nowrap;
  border: 1px solid var(--color-light-gray);
}
.acct-tab--active { background: var(--color-black); color: var(--color-white); border-color: var(--color-black); }
.acct-tab--logout { color: #cc3333; border-color: #f3d4d4; }

.acct-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

.acct-sidebar { position: sticky; top: calc(var(--header-height) + 2rem); }
.acct-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.acct-nav__link {
  font-size: 0.8rem;
  padding: 0.75rem 1rem;
  color: var(--color-text-light);
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.acct-nav__link:hover { color: var(--color-black); }
.acct-nav__link--active {
  color: var(--color-black);
  font-weight: 500;
  border-left-color: var(--color-black);
  background: var(--color-off-white);
}
.acct-nav__link--logout { color: #cc3333; margin-top: 1rem; }

.acct-section-title {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.acct-empty { text-align: center; padding: 4rem 1.5rem; color: var(--color-text-light); }
.acct-empty p { font-size: 0.9rem; margin-bottom: 1.5rem; }

.acct-form { max-width: 640px; }
.acct-form--narrow { max-width: 420px; }

/* Sipariş kartları */
.order-card {
  border: 1px solid var(--color-light-gray);
  margin-bottom: 1.5rem;
}
.order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-light-gray);
}
.order-head__left { display: flex; align-items: center; gap: 0.75rem; }
.order-code { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.03em; }
.order-date { font-size: 0.75rem; color: var(--color-text-light); }
.order-head__right { display: flex; align-items: center; gap: 0.85rem; }
.order-total { font-size: 0.85rem; font-weight: 500; }
.order-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  color: var(--badge-color, var(--color-text-light));
  border: 1px solid var(--badge-color, var(--color-light-gray));
}

.order-items { padding: 0.5rem 1.25rem; }
.order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-light-gray);
}
.order-item:last-child { border-bottom: none; }
.order-item__img { width: 48px; height: 60px; object-fit: cover; background: var(--color-off-white); }
.order-item__info { flex: 1; }
.order-item__name { font-size: 0.82rem; font-weight: 400; }
.order-item__meta { font-size: 0.72rem; color: var(--color-text-light); }
.order-item__price { font-size: 0.82rem; }

.order-note {
  margin: 0 1.25rem 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
}
.order-note--blue { background: #eaf1fc; color: #1d4ed8; }
.order-note--green { background: #eaf6ec; color: #1f7a34; }

/* ---------------------------------------------------------------------
   21. HAKKIMIZDA SAYFASI
   --------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--color-off-white); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.value-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.25rem; }
.value-item { display: flex; gap: 1.25rem; }
.value-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-text-light);
  flex-shrink: 0;
}
.value-title { font-size: 0.85rem; font-weight: 500; margin-bottom: 0.3rem; }
.value-desc { font-size: 0.8rem; color: var(--color-text-light); line-height: 1.7; }

/* ---------------------------------------------------------------------
   22. İLETİŞİM SAYFASI
   --------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
}
.contact-item { margin-bottom: 1.5rem; }
.contact-item-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
}
.contact-item-value { font-size: 0.9rem; font-weight: 400; }

/* ---------------------------------------------------------------------
   23. SİPARİŞ BAŞARILI SAYFASI
   --------------------------------------------------------------------- */
.success-page { padding: 5rem 0; }
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eaf6ec;
  color: #1f7a34;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-code {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  border: 1px dashed var(--color-mid-gray);
  padding: 0.75rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

/* ---------------------------------------------------------------------
   24. RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .products-layout { grid-template-columns: 180px 1fr; gap: 2rem; }
  .product-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-left, .header-auth-btns { display: none; }
  .hamburger { display: flex; }
  .header-inner { justify-content: space-between; }
  .nav-right { margin-left: 0; }

  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 64px; }

  .acct-tabs { display: flex; }
  .acct-sidebar { display: none; }
  .acct-layout { grid-template-columns: 1fr; }

  .hero-main-swiper {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .hero-slide-content {
    max-width: 80%;
    padding: 0 1rem;
  }
  .hero-slide-label {
    font-size: 0.6rem;
    margin-bottom: 0.25rem;
  }
  .hero-slide-title {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
  }
  .hero-slide-line {
    margin: 0.5rem 0;
  }
  .hero-slide-desc {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .hero-slide-btn {
    font-size: 0.6rem;
    padding-bottom: 0.2rem;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; }
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { border-bottom: 1px solid var(--color-light-gray); padding-bottom: 1.5rem; }
  .filter-list { flex-direction: row; flex-wrap: wrap; gap: 0.6rem 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .auth-form-row2 { grid-template-columns: 1fr; }
  .cart-table thead { display: none; }
  .cart-table tbody td { display: block; width: 100%; padding: 0.4rem 0; border-bottom: none; }
  .cart-table tbody tr { display: block; padding: 1rem 0; border-bottom: 1px solid var(--color-light-gray); }
  .footer-grid { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; }

  .product-actions { flex-direction: column; }
  .product-actions .btn { width: 100%; }
  .social-float-stack { bottom: 4.5rem; gap: 0.5rem; }
  .social-float-stack a { width: 36px; height: 36px; }
  .social-float-stack a img { width: 17px; height: 17px; max-width: 17px; max-height: 17px; }
}

/* -------------------------------------------------------
   KART NUMARASI — BIN'E GÖRE MARKA İKONU (Visa/Mastercard/Amex/Troy)
------------------------------------------------------- */
.card-number-wrap { position: relative; display: flex; align-items: center; }
.card-number-wrap input { width: 100%; padding-right: 3.1rem; }
.card-brand-icon {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  transform: translateY(-50%);
  width: 34px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: opacity .15s ease;
  pointer-events: none;
}
.card-brand-icon.is-visible { opacity: 1; }

/* -------------------------------------------------------
   ŞİFREMİ UNUTTUM — standalone sayfa kartı
   (auth-modal ile aynı görünüm, sabit konumlandırma olmadan)
------------------------------------------------------- */
.auth-page-box {
  background: var(--color-white);
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--color-light-gray);
}

/* ---------------------------------------------------------------------
   REKLAM POPUP (Ana Sayfa)
   --------------------------------------------------------------------- */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.65);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 1.5rem;
}
.promo-popup-overlay.is-open { opacity: 1; visibility: visible; }

.promo-popup {
  position: relative;
  background: var(--color-white);
  width: 100%;
  max-width: 420px;
  max-height: 88vh;
  overflow: hidden;
  transform: translateY(12px) scale(.98);
  transition: transform var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.promo-popup-overlay.is-open .promo-popup { transform: translateY(0) scale(1); }

.promo-popup-link { display: block; }

.promo-popup-img {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  background: var(--color-off-white);
}

.promo-popup-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.9);
  color: var(--color-black);
  border-radius: 50%;
  z-index: 2;
  transition: background var(--transition);
}
.promo-popup-close:hover { background: var(--color-white); }

@media (max-width: 480px) {
  .promo-popup { max-width: 100%; }
}
