/* ==========================================================
   MAVİ PANDORA LIGHTING — Tasarım Sistemi
   ========================================================== */
:root {
  --navy: #0d1b2a;
  --navy-2: #101f32;
  --navy-3: #1b2e42;
  --gold: #c9a227;
  --gold-deep: #a8821a;
  --gold-soft: #e7d08b;
  --ivory: #f5f1ea;
  --ivory-strong: #efe7dc;
  --white: #ffffff;
  --text: #1d1d1d;
  --text-soft: #666157;
  --border: rgba(17, 25, 35, 0.12);
  --radius: 10px;
  --shadow: 0 12px 35px rgba(13, 27, 42, 0.12);
  --shadow-soft: 0 10px 25px rgba(13, 27, 42, 0.08);
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

html.supabase-pending .hero-slider,
html.supabase-pending .home-products {
  visibility: hidden;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #f9f6f0 0%, #f3efe9 100%);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ---------- HEADER ---------- */
.header {
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
  position: sticky;
  top: 30px;
  z-index: 100;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 22px rgba(13, 27, 42, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 34px);
  padding: 16px 0;
}
.logo {
  display: block;
  width: clamp(135px, 15vw, 180px);
  font-family: var(--font-head);
  font-size: 1.55rem;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.logo img { width: 100%; height: auto; }
.logo span { color: var(--gold-soft); }
.footer-logo { display: inline-block; }
.footer-logo img { width: 190px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
  flex: 1;
  min-width: 0;
}
.nav a {
  color: rgba(255,255,255,0.8);
  font-size: .9rem;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}
.nav a:hover, .nav a.active {
  color: var(--gold-soft);
  transform: translateY(-1px);
}
.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.icon-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  position: relative;
  color: var(--white);
  transition: transform .2s;
}
.icon-btn:hover { transform: scale(1.15); }
.badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ---------- HERO ---------- */
.hero {
  background:
    linear-gradient(120deg, rgba(13,27,42,0.94) 20%, rgba(20,38,60,0.92) 55%, rgba(20,38,60,0.85) 100%),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}
.hero::after {
  content: "";
  position: absolute;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(201,162,39,0.26), transparent 68%);
  top: -180px; right: -90px;
}
.hero-label {
  color: var(--gold-soft);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: .72rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  max-width: 740px;
  letter-spacing: 0.02em;
}
.hero p {
  margin: 22px 0 36px;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  font-size: 1.04rem;
}
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 0;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .25s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(201,162,39,0.2);
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  margin-left: 10px;
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* ---------- BÖLÜM BAŞLIKLARI ---------- */
.section { padding: 70px 0; }
.home-products { background: rgba(255,255,255,.34); border-top: 1px solid rgba(13,27,42,.06); border-bottom: 1px solid rgba(13,27,42,.06); }
.home-products__more { text-align: center; margin-top: 30px; }
.product-shelves { margin-top: 72px; }
.product-shelf { margin-top: 48px; }
.shelf-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 18px; }
.shelf-head h3 { color: var(--navy); font: 500 2rem 'Playfair Display', serif; margin-top: 6px; }
.shelf-controls { display: flex; gap: 8px; }
.shelf-arrow { width: 38px; height: 38px; border: 1px solid var(--border); background: var(--white); color: var(--navy); font-size: 1.3rem; }
.shelf-arrow:hover { border-color: var(--gold); color: var(--gold-deep); }
.shelf-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 270px); gap: 16px; overflow-x: auto; scroll-snap-type: x proximity; padding: 4px 2px 18px; scrollbar-color: var(--gold-soft) transparent; }
.shelf-track .product-card { scroll-snap-align: start; }
.admin-panel-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.admin-panel-heading h3 { margin-top: 5px; }
.admin-panel-heading__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.slide-location-select { border: 1px solid var(--border); background: var(--white); color: var(--navy); padding: 8px 10px; font: inherit; }
.homepage-slides-editor { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.slide-edit-card { display: grid; gap: 8px; padding: 15px; background: var(--ivory); border: 1px solid var(--border); }
.slide-edit-card strong { color: var(--gold-deep); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.slide-edit-card input, .slide-edit-card textarea { width: 100%; border: 1px solid var(--border); background: var(--white); padding: 9px 10px; font: inherit; color: var(--text); }
.slide-image-preview {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--ivory);
}
.slide-image-preview.is-broken {
  opacity: .35;
}
.account-shell { max-width: 800px; }
.account-card { max-width: 620px; margin: 0 auto; padding: 42px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-soft); text-align: center; }
.account-card > svg { width: 42px; height: 42px; color: var(--gold-deep); stroke-width: 1.4; margin-bottom: 18px; }
.account-card h2 { color: var(--navy); font: 500 2rem 'Playfair Display', serif; }
.account-card p { color: var(--text-soft); margin: 8px 0 24px; }
.account-card--form { text-align: left; }
.account-tabs { display: flex; gap: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.account-tab { border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--text-soft); padding: 0 0 10px; font-weight: 700; }
.account-tab.is-active { color: var(--navy); border-color: var(--gold); }
.account-card .btn { justify-content: center; }
.account-card .btn-outline-dark { background: transparent; border: 1px solid var(--navy); color: var(--navy); padding: 14px 30px; }
.account-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.member-kvkk { display: flex; align-items: flex-start; gap: 8px; margin: 16px 0; color: var(--text-soft); font-size: .82rem; line-height: 1.45; }
.member-kvkk input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); }
.member-kvkk a { color: var(--gold-deep); font-weight: 700; text-decoration: underline; }
@media (max-width: 900px) { .homepage-slides-editor { grid-template-columns: 1fr; } }
.section-head { text-align: center; margin-bottom: 46px; }
.section-head .kicker {
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--navy);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ---------- ANA SAYFA KATEGORİ KARTLARI ---------- */
.home-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.home-cat-card {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background-size: cover;
  background-position: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.home-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13,27,42,.18);
}
.home-cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.82), rgba(13,27,42,.18));
}
.home-cat-card__content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.home-cat-card__eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-weight: 700;
}
.home-cat-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 8px;
  color: var(--white);
}
.home-cat-card p {
  color: rgba(255,255,255,.8);
  font-size: .96rem;
  line-height: 1.6;
  max-width: 24ch;
}
.home-cat-card--avize {
  background-image: url('../assets/images/categories/avizeler-1.jpeg');
}
.home-cat-card--led {
  background-image: url('../assets/images/categories/led-sistemler-1.jpeg');
}
.home-cat-card--dıs {
  background-image: url('../assets/images/categories/dis-ayd-1.jpeg');
}

.feature-banner {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(13,27,42,.96), rgba(20,38,60,.92));
  color: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,162,39,.25);
  transition: transform .25s ease;
}
.feature-banner:hover { transform: translateY(-2px); }
.feature-banner__text span {
  display: inline-block;
  color: var(--gold-light);
  font-size: .76rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}
.feature-banner__text h3 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  margin-bottom: 8px;
}
.feature-banner__text p {
  color: rgba(255,255,255,.75);
  max-width: 60ch;
}
.feature-banner__link {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
}

/* ---------- ÜRÜN KARTLARI ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.shop-layout > div > .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  justify-content: start;
  width: 100%;
}
.shop-layout > div > .product-grid[data-columns="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.shop-layout > div > .product-grid[data-columns="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shop-layout > div > .product-grid[data-columns="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-switcher {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.grid-switcher button {
  width: 36px;
  height: 36px;
  border: 0;
  border-right: 1px solid var(--border);
  background: transparent;
  color: var(--text-soft);
  font: 700 .76rem var(--font-body);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.grid-switcher button:last-child { border-right: 0; }
.grid-switcher button[data-columns="2"] { display: none; }
.grid-switcher button:hover, .grid-switcher button.active {
  background: var(--navy);
  color: var(--white);
}
.product-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(13, 27, 42, 0.14);
  border-color: rgba(201,162,39,0.4);
}
.product-card .p-img { position: relative; height: 260px; aspect-ratio: 1 / 1; overflow: hidden; display: grid; place-items: center; padding: 18px; background: linear-gradient(145deg, #f4f0e8, #ffffff); }
.product-card .p-img img { display: block; width: 100%; height: 100%; min-width: 0; min-height: 0; max-width: 100%; max-height: 100%; object-fit: cover; object-position: center; }
.shop-layout > div > .product-grid .product-card { width: 100%; }
.shop-layout > div > .product-grid .product-card .p-img { width: 100%; height: auto; min-height: 0; max-height: none; aspect-ratio: 4 / 4.5; padding: 0; background: #ffffff; }
.shop-layout > div > .product-grid .product-card .p-img img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: cover; object-position: center; background: #ffffff; }
.shop-layout > div > .product-grid .p-body { min-height: 148px; padding: 13px; }
.shop-layout > div > .product-grid .p-name { min-height: 2.45em; margin: 6px 0 7px; font-size: .98rem; }
.shop-layout > div > .product-grid .p-actions { margin-top: 10px; }
.shop-layout > div > .product-grid .btn-cart { padding: 9px 8px; font-size: .7rem; }
.p-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 0;
}
.p-body { min-height: 205px; padding: 18px; display: flex; flex-direction: column; flex: 1; }
.p-cat { font-size: .72rem; color: var(--gold-deep); text-transform: uppercase; letter-spacing: 0.12em; }
.p-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 8px 0 10px;
  min-height: 2.75em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.p-price {
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--navy);
  margin-top: auto;
}
.p-price .old {
  text-decoration: line-through;
  color: var(--text-soft);
  font-weight: 400;
  font-size: .88rem;
  margin-left: 8px;
}
.p-actions { display: flex; gap: 8px; margin-top: 14px; }
.btn-cart {
  flex: 1;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 11px 12px;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}
.btn-cart:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }
.btn-fav {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 0;
  width: 44px;
  font-size: 1.1rem;
  transition: all .2s ease;
}
.btn-fav:hover { border-color: #d5a2a2; color: #b84545; }
.btn-fav.active { background: #fff0f0; border-color: #d5a2a2; color: #b84545; }
.btn-fav.active svg, .btn-big-fav.active svg { color: #e74c3c; fill: #e74c3c; }

/* ---------- HİZMET KARTLARI ---------- */
.services { background: #f5f1e8; color: var(--navy); border-top: 1px solid rgba(16,29,51,.08); border-bottom: 1px solid rgba(16,29,51,.08); }
.services .section-head h2 { color: var(--navy); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.service-card {
  background: #ffffff;
  border: 1px solid rgba(16,29,51,.12);
  border-radius: 0;
  padding: 34px 28px;
  box-shadow: 0 10px 24px rgba(16,29,51,.06);
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.service-card .icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 22px; border: 1px solid rgba(234,214,167,.5); color: var(--gold-soft); }
.service-card .icon svg { width: 25px; height: 25px; stroke-width: 1.35; }
.service-card h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { color: #667080; font-size: .93rem; line-height: 1.7; }

/* ---------- HAKKIMIZDA ŞERİDİ ---------- */
.about-strip {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-strip h2 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 2.1rem;
  margin-bottom: 16px;
}
.about-strip p { color: var(--text-soft); }
.about-strip--centered {
  display: block;
  text-align: center;
}
.about-strip--centered > div {
  max-width: 850px;
  margin: 0 auto;
}
.about-strip--centered h2 {
  color: var(--navy);
}
.about-vision-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
  text-align: left;
}
.about-vision-mission h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font: 500 1.35rem/1.25 var(--font-head);
}
.about-vision-mission h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 10px;
  background: var(--gold);
}
.about-vision-mission p {
  color: var(--navy);
  font-size: .92rem;
  line-height: 1.65;
}
.about-vision-mission strong {
  font-weight: 700;
}
.about-vision-mission div {
  padding: 0 18px;
}
.about-vision-mission div + div {
  border-left: 1px solid rgba(11, 31, 58, .2);
}
.about-vision-mission span {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.stats { display: flex; gap: 36px; margin-top: 26px; }
.stat b {
  font-size: 2rem;
  color: var(--gold-deep);
  font-family: var(--font-head);
  display: block;
}
.stat span { font-size: .85rem; color: var(--text-soft); }
.about-strip img { border-radius: 0; box-shadow: var(--shadow); }
.about-visual { padding: 34px 0 0; }
.about-visual img { width: 100%; height: auto; aspect-ratio: 1400 / 520; object-fit: contain; box-shadow: var(--shadow); }
@media (max-width: 600px) {
  .about-visual { padding-top: 24px; }
  .about-vision-mission { grid-template-columns: 1fr; }
  .about-vision-mission div { padding: 0; }
  .about-vision-mission div + div { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(11, 31, 58, .2); border-left: 0; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  color: #b9c5d4;
  padding: 56px 0 0;
  margin-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-head);
  margin-bottom: 16px;
}
.footer a { display: block; font-size: .9rem; margin-bottom: 8px; transition: color .2s; }
.footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(198,161,91,.35);
  background: var(--navy-2);
  text-align: center;
  padding: 18px 0;
  font-size: .82rem;
  color: var(--gold-soft);
}
.footer-legal-link { display: inline-block; margin: 0 0 0 6px; color: var(--gold-soft); }
.footer-legal-link:hover { color: var(--white); }

.content-page { max-width: 900px; }
.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.policy-content h2 { margin: 26px 0 8px; color: var(--navy); font: 500 1.3rem var(--font-head); }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--text-soft); line-height: 1.8; }
.policy-content a { color: var(--gold-deep); font-weight: 700; }
.policy-note { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border); font-size: .88rem; }
@media (max-width: 600px) { .policy-content { padding: 24px 18px; } }

/* ---------- DUYURU ŞERİDİ ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  overflow: hidden;
  background: var(--navy);
  color: var(--gold-soft);
  text-align: center;
  font-size: .62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  height: 30px;
  padding: 0 12px;
  box-shadow: 0 2px 10px rgba(13, 27, 42, 0.08);
}
.topbar { overflow: hidden; }
.topbar span { white-space: nowrap; flex: 0 0 auto; }

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-soft);
  background: var(--navy-3);
  color: var(--gold-soft);
  padding: 0;
  border-radius: 999px;
  margin-left: 8px;
  flex: 0 0 42px;
  position: relative;
  z-index: 120;
}
.mobile-menu-toggle svg { width: 18px; height: 18px; }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.45);
  z-index: 90;
}
.mobile-nav-overlay.active { display: block; }

.support-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 160;
  display: grid;
  justify-items: end;
  gap: 10px;
}
.support-button,
.support-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--gold-soft);
  background: var(--navy);
  color: var(--gold-soft);
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.22);
  cursor: pointer;
}
.support-button {
  min-height: 46px;
  padding: 0 17px;
  border-radius: 999px;
  font-weight: 700;
}
.support-button:hover { background: var(--navy-3); color: var(--white); }
.support-button svg { width: 18px; height: 18px; }
.support-button span,
.support-button svg { color: inherit !important; }
.support-panel {
  position: relative;
  width: min(320px, calc(100vw - 32px));
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--navy);
}
.support-panel[hidden] { display: none; }
.support-panel strong { display: block; padding-right: 24px; font-family: var(--font-head); font-size: 1.18rem; }
.support-panel p { margin: 7px 0 17px; color: var(--text-soft); font-size: .9rem; line-height: 1.5; }
.support-panel a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 700;
}
.support-contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-top: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
  font: 700 .88rem var(--font-body);
  text-align: left;
}
.support-contact-link:hover { color: var(--gold-deep); }
.support-contact-link svg { width: 17px; height: 17px; color: var(--gold-deep); }
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 31, 58, .28);
}
.contact-modal[hidden] { display: none; }
.contact-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 32px;
  background: #f4f1ea;
  border: 1px solid var(--navy);
}
.contact-modal__dialog h2 { margin: 8px 0 22px; color: var(--navy); font: 500 2rem/1.1 var(--font-head); }
.contact-modal__close { position: absolute; top: 16px; right: 16px; border: 0; background: transparent; color: var(--navy); }
.contact-modal__close svg { width: 20px; height: 20px; }
.contact-modal__form { display: grid; gap: 14px; }
.contact-modal__form label { display: grid; gap: 6px; color: var(--navy); font-size: .8rem; font-weight: 700; }
.contact-modal__form input, .contact-modal__form select, .contact-modal__form textarea { width: 100%; padding: 11px 12px; border: 1px solid rgba(11, 31, 58, .3); background: #fff; color: var(--navy); font: inherit; }
.contact-modal__form textarea { resize: vertical; }
.contact-modal__message { min-height: 1.4em; color: var(--navy); font-size: .85rem; }
@media (max-width: 600px) { .contact-modal__dialog { padding: 24px 18px; } }
.support-panel a:hover { color: var(--gold-deep); }
.support-panel a svg { width: 17px; height: 17px; color: var(--gold-deep); }
.support-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  box-shadow: none;
}
.support-close:hover { color: var(--navy); }
.support-close svg { width: 17px; height: 17px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .container { width: min(92%, 100%); }
  .topbar {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    height: 28px;
    padding: 0 12px;
    letter-spacing: 0.06em;
    font-size: .56rem;
  }

  .header { top: 28px; }

  .header-inner {
    flex-wrap: nowrap;
    gap: 8px;
    position: relative;
  }
  .logo { font-size: 1.15rem; letter-spacing: 0.02em; }
  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(82vw, 300px);
    height: 100vh;
    background: rgba(13, 27, 42, 0.98);
    box-shadow: -16px 0 32px rgba(13, 27, 42, 0.25);
    flex-direction: column;
    gap: 12px;
    padding: 26px 20px 22px;
    margin-left: 0;
    z-index: 110;
    transition: right .25s ease;
    border-left: 1px solid rgba(201,162,39,0.28);
  }
  .header.nav-open .nav {
    display: flex;
    right: 0;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 0;
  }
  .header-actions { margin-left: auto; gap: 8px; }
  .nav a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.82);
  }
  .nav a:last-child { border-bottom: none; }
  .header.nav-open .mobile-nav-overlay { display: block; }

  .support-widget { right: 14px; bottom: 14px; }

  .hero {
    padding: 90px 0 70px;
  }
  .hero h1 { max-width: 92%; }
  .hero p { max-width: 90%; }
  .hero-slide h1, .page-slide h1 { font-size: clamp(2.2rem, 10vw, 3.6rem); }
  .hero-slider, .hero-slides, .page-slider, .page-slider__track { min-height: 520px; }
  .home-cat-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 18px;
  }
  .branch-grid, .service-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; padding: 30px; }
  .stats { grid-template-columns: repeat(3, minmax(100px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout, .checkout-layout, .cart-layout, .detail-layout, .contact-layout, .importer-layout, .admin-layout {
    grid-template-columns: 1fr;
  }
  .shop-layout > div > .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .detail-layout { padding: 24px; }
  .detail-gallery .main-img { height: 360px; }
  .zoom-preview { display: none; }
  .filter-box { display: none; }
  .filter-box.open { display: block; }
  .shop-topbar {
    flex-direction: column;
    align-items: stretch;
  }
  .search-input, .sort-select, .grid-switcher {
    width: 100%;
  }
  .grid-switcher {
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
  }
  .grid-switcher button {
    width: 42px;
    height: 38px;
  }
  .grid-switcher button[data-columns="2"] { display: block; }
  .grid-switcher button[data-columns="4"] { display: none; }
  .shop-layout > div > .product-grid[data-columns="3"],
  .shop-layout > div > .product-grid[data-columns="4"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }
  .cart-item {
    grid-template-columns: 90px 1fr;
    gap: 14px;
  }
  .ci-right {
    grid-column: 1 / -1;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .form-row, .form-grid-2 { grid-template-columns: 1fr; }
  .admin-top { grid-template-columns: 1fr; }
  .admin-tool-group { justify-content: flex-start; }
  .admin-tool-group > span { text-align: left; }
}
@media (max-width: 560px) {
  .header { position: sticky; }
  .header-inner { gap: 10px; }
  .logo { font-size: 1.2rem; }
  .header-actions { gap: 8px; }
  .icon-btn { font-size: 1.1rem; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
  .feature-banner { padding: 22px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .branch-grid, .service-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .shop-layout > div > .product-grid { grid-template-columns: 1fr; }
  .shop-layout > div > .product-grid[data-columns="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-layout > div > .product-grid[data-columns="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-card .p-img, .shop-layout > div > .product-grid .product-card .p-img { height: auto; }
  .detail-layout { padding: 18px; }
  .detail-gallery .main-img { height: 260px; }
  .qty-row { flex-direction: column; align-items: stretch; }
  .btn-big-cart { min-width: 0; width: 100%; }
  .cart-item { grid-template-columns: 1fr; }
  .cart-item img { width: 100%; height: 210px; }
  .ci-right { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .contact-card, .contact-form, .checkout-form, .admin-login { padding: 22px 18px; }
  .success-box { padding: 42px 18px; }
  .home-products__more { margin-top: 20px; }
  .hero-slider__controls { left: 14px; right: 14px; bottom: 18px; }
  .hero-slide__number { display: none; }
  .breadcrumb { margin-bottom: 14px; font-size: .72rem; line-height: 1.45; overflow-wrap: anywhere; }
  .detail-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; padding: 14px; }
  .detail-gallery .main-img { height: min(72vw, 300px); min-height: 220px; border-radius: 3px; }
  .detail-thumbs { gap: 7px; margin-top: 9px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 3px; }
  .gallery-thumb { width: 58px; height: 58px; flex: 0 0 58px; }
  .detail-info { min-width: 0; }
  .detail-info .p-cat { font-size: .68rem; letter-spacing: .08em; }
  .detail-info h1 { margin: 7px 0 10px; font-size: clamp(1.55rem, 8vw, 2.25rem); line-height: 1.08; overflow-wrap: anywhere; }
  .detail-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; font-size: 1.35rem; }
  .discount-badge { margin-left: 0; font-size: .68rem; }
  .stock-info { margin: 9px 0; font-size: .78rem; }
  .detail-description { margin-top: 12px; padding-top: 10px; }
  .detail-description summary { font-size: .8rem; }
  .detail-desc { font-size: .82rem; line-height: 1.55; overflow-wrap: anywhere; }
  .spec-table { display: block; overflow-x: auto; font-size: .76rem; }
  .qty-row { display: grid; grid-template-columns: minmax(0, 1fr) 48px; gap: 9px; align-items: stretch; }
  .qty-control { min-width: 0; }
  .qty-control input { min-width: 0; width: 42px; }
  .btn-big-cart { grid-column: 1 / -1; width: 100%; min-height: 44px; }
  .btn-big-fav { grid-column: 2; grid-row: 1; width: 48px; min-height: 44px; }
  .trust-badges { grid-template-columns: 1fr; gap: 8px; }
}
/* ---------- ÜRÜNLER SAYFASI: FİLTRE ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 36px;
  align-items: start;
}

.filter-box {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
.footer-branches { display: grid; gap: 5px; }
.footer-branches a { margin: 0; font-size: .82rem; }
.footer-branches small { display: block; color: var(--text-soft); font-size: .72rem; }
.footer .footer-branches small { color: #b9c5d4; }
.filter-box h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 18px;
  font-size: 1.2rem;
}
.filter-group { margin-bottom: 22px; }
.filter-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  padding: 5px 0;
  cursor: pointer;
  color: var(--text);
}
.filter-check input { accent-color: var(--gold); width: 16px; height: 16px; cursor: pointer; }

/* ---------- LÜKS TAŞIYICI GÜNCELLEMELER ---------- */
.section,
.footer,
.hero,
.header {
  border-left: 0;
  border-right: 0;
}

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

.home-cat-card,
.feature-banner,
.about-strip,
.product-card,
.service-card,
.filter-box {
  border-radius: 0;
}

.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .88rem;
}
.price-inputs span { color: var(--text-soft); }

.btn-filter-reset {
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text-soft);
  transition: all .2s;
}
.btn-filter-reset:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- ÜST BAR (arama + sıralama) ---------- */
.shop-topbar {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.search-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--white);
}
.search-input:focus { outline: 2px solid var(--gold); border-color: transparent; }
.sort-select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: inherit;
  font-size: .9rem;
  background: var(--white);
  cursor: pointer;
}
.result-count { font-size: .85rem; color: var(--text-soft); width: 100%; }

/* ---------- MOBİL FİLTRE BUTONU ---------- */
.btn-mobile-filter { display: none; }
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-box { display: none; position: static; max-height: none; overflow: visible; }
  .filter-box.open { display: block; }
  .btn-mobile-filter {
    display: block;
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 600;
  }
}

/* ---------- BOŞ SONUÇ ---------- */
.empty-result {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-soft);
}
.empty-result .big { font-size: 3rem; margin-bottom: 12px; }
.empty-result .big svg { width: 48px; height: 48px; color: var(--gold-deep); stroke-width: 1.3; }
/* ---------- ÜRÜN DETAY ---------- */
.breadcrumb {
  font-size: .85rem;
  color: var(--text-soft);
  margin-bottom: 26px;
}
.breadcrumb a:hover { color: var(--gold); }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}

.detail-gallery .main-img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border-radius: var(--radius);
}
.main-img-wrap { position: relative; overflow: visible; background: var(--ivory-strong); cursor: crosshair; }
.main-img-wrap .main-img { display: block; }
.zoom-preview { position: absolute; z-index: 8; top: 50%; left: calc(100% + 22px); width: 260px; height: 260px; transform: translateY(-50%); border-radius: 50%; border: 3px solid var(--gold); background-color: var(--white); background-repeat: no-repeat; background-size: 360% 360%; box-shadow: 0 14px 35px rgba(16,29,51,.26); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .16s ease, visibility .16s ease; }
.zoom-preview.is-visible { opacity: 1; visibility: visible; }
.detail-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumb { width: 80px; height: 80px; padding: 0; overflow: hidden; border: 2px solid transparent; background: var(--white); cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; background: var(--ivory-strong); }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); }
.btn-big-cart, .btn-big-fav { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-big-cart svg, .btn-big-fav svg { width: 18px; height: 18px; stroke-width: 1.7; }
.trust-badges span { display: inline-flex; align-items: center; gap: 7px; }
.trust-badges svg { width: 16px; height: 16px; color: var(--gold-deep); stroke-width: 1.5; }

.detail-info .p-cat { font-size: .8rem; }
.detail-info h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  margin: 8px 0 14px;
}
.detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 18px 0;
}
.detail-price .old {
  font-size: 1.2rem;
  color: var(--text-soft);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 12px;
}
.detail-price .discount-badge {
  background: #e74c3c;
  color: #fff;
  font-size: .78rem;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 12px;
  vertical-align: middle;
}
.stock-info { font-size: .9rem; margin-bottom: 18px; }
.stock-ok { color: #27ae60; }
.stock-low { color: #e67e22; }
.stock-out { color: #e74c3c; }

.detail-desc { color: var(--text-soft); margin-bottom: 22px; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 26px;
  font-size: .92rem;
}
.spec-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
}
.spec-table td:first-child {
  background: var(--bg);
  font-weight: 600;
  width: 40%;
  color: var(--navy);
}

.qty-row { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.qty-control button {
  width: 42px; height: 46px;
  border: none;
  background: var(--bg);
  font-size: 1.2rem;
  transition: background .2s;
}
.qty-control button:hover { background: var(--gold); }
.qty-control input {
  width: 56px; height: 46px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
}
.qty-control input:focus { outline: none; }

.btn-big-cart {
  flex: 1;
  min-width: 200px;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background .2s;
}
.btn-big-cart:hover { background: var(--gold); color: var(--navy); }
.btn-big-cart:disabled { background: var(--border); color: var(--text-soft); cursor: not-allowed; }

.btn-big-fav {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-size: 1.3rem;
  transition: all .2s;
}
.btn-big-fav:hover { border-color: #e7a1a1; color: #d45b5b; }
.btn-big-fav.active { background: #ffe9e9; border-color: #e74c3c; }

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-soft);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; padding: 24px; gap: 30px; }
  .detail-gallery .main-img { height: 340px; }
}
/* ---------- SEPET ---------- */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 16px;
  align-items: center;
}
.cart-item img {
  width: 110px; height: 110px;
  object-fit: cover;
  border-radius: 10px;
}
.cart-item h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.cart-item .ci-cat { font-size: .78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.cart-item .ci-unit { font-size: .85rem; color: var(--text-soft); margin-top: 6px; }
.cart-item .ci-total { font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-top: 10px; }
.ci-right { text-align: right; }
.ci-remove {
  background: none;
  border: none;
  color: #e74c3c;
  font-size: 1.2rem;
  margin-top: 12px;
  transition: transform .2s;
}
.ci-remove:hover { transform: scale(1.2); }

.cart-item .qty-control button { height: 36px; width: 36px; }
.cart-item .qty-control input { height: 36px; width: 46px; }

/* Özet kutusu */
.cart-summary {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.cart-summary h3 {
  font-family: var(--font-head);
  color: var(--gold-light);
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: .93rem;
  color: #b9c5d4;
}
.sum-row.total {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 12px;
  padding-top: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.sum-row .free { color: #27ae60; font-weight: 600; }
.btn-checkout {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
  transition: all .2s;
}
.btn-checkout:hover { background: var(--gold-light); }
.btn-continue {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: #b9c5d4;
  font-size: .88rem;
}
.btn-continue:hover { color: var(--gold-light); }

/* Kampanya kodu */
.coupon-row { display: flex; gap: 8px; margin-top: 18px; }
.coupon-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: var(--navy-2);
  color: var(--white);
  border-radius: 8px;
  font-family: inherit;
}
.coupon-row button {
  background: var(--navy-2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
}
.coupon-msg { font-size: .82rem; margin-top: 8px; min-height: 18px; }
.coupon-msg.ok { color: #27ae60; }
.coupon-msg.err { color: #e74c3c; }

.order-modal-overlay { position: fixed; inset: 0; background: rgba(13, 27, 42, 0.55); display: flex; align-items: center; justify-content: center; z-index: 500; padding: 20px; }
.order-modal-overlay[hidden] { display: none; }
.order-modal { position: relative; background: var(--white); max-width: 420px; width: 100%; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); max-height: 90vh; overflow-y: auto; }
.order-modal h3 { color: var(--navy); font: 500 1.4rem 'Playfair Display', serif; margin-bottom: 10px; }
.order-modal p { color: var(--text-soft); font-size: .9rem; margin-bottom: 20px; }
.order-modal-close { position: absolute; top: 14px; right: 14px; background: none; border: none; font-size: 1.4rem; line-height: 1; color: var(--text-soft); }
.order-modal-actions { display: flex; flex-direction: column; gap: 10px; }
.order-modal-actions .btn { width: 100%; justify-content: center; }
.order-modal-form { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.order-modal-form .btn { width: 100%; justify-content: center; }
.order-modal-form textarea { resize: vertical; }

.importer-shell { max-width: 1200px; }
.importer-layout { display: grid; grid-template-columns: 1.5fr .9fr; gap: 24px; align-items: start; }
.upload-zone { display: flex; gap: 18px; align-items: center; background: #faf7f1; border: 1px dashed rgba(201,162,39,.6); padding: 20px; cursor: pointer; margin-top: 10px; }
.upload-zone input { display: none; }
.upload-zone__icon { width: 54px; height: 54px; display: grid; place-items: center; font-size: 1.8rem; background: rgba(201,162,39,.1); color: var(--navy); border: 1px solid rgba(201,162,39,.3); }
.upload-zone__text { display: flex; flex-direction: column; gap: 4px; }
.upload-zone__text strong { color: var(--navy); }
.upload-zone__text span { color: var(--text-soft); font-size: .84rem; }
.source-summary { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.summary-pill { display: flex; flex-direction: column; gap: 4px; min-width: 110px; padding: 10px 12px; border: 1px solid var(--border); background: #faf7f1; }
.summary-pill b { color: var(--navy); font-size: 1.2rem; font-family: var(--font-head); }
.summary-pill span { color: var(--text-soft); font-size: .72rem; text-transform: uppercase; letter-spacing: 0.08em; }
.mapper-box { margin-top: 22px; }
.mapper-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.mini-btn { background: transparent; border: 1px solid rgba(201,162,39,.5); color: var(--navy); padding: 8px 12px; font-size: .72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.mapper-grid { display: grid; gap: 10px; margin-top: 10px; }
.mapper-row { display: grid; grid-template-columns: 120px 1fr; gap: 10px; align-items: center; font-size: .9rem; color: var(--text-soft); }
.mapper-row select { width: 100%; border: 1px solid var(--border); background: #fff; padding: 10px 12px; font: inherit; color: var(--text); }
.option-grid { display: grid; gap: 10px; }
.option-card { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: flex-start; padding: 12px 14px; background: #faf7f1; border: 1px solid var(--border); cursor: pointer; }
.option-card input { margin-top: 3px; accent-color: var(--gold); }
.option-card strong { display: block; color: var(--navy); margin-bottom: 2px; }
.option-card small { color: var(--text-soft); line-height: 1.5; }
.category-box { margin-top: 18px; }
.category-box label { display: block; margin-bottom: 8px; font-size: .8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); font-weight: 700; }
.category-box select, .category-box input { width: 100%; border: 1px solid var(--border); background: #fff; padding: 10px 12px; font: inherit; }
.category-box input:disabled { opacity: .55; background: var(--bg); cursor: not-allowed; }
.mt-8 { margin-top: 8px; }
.preview-box { margin-top: 18px; }
.preview-box h4 { font-family: var(--font-head); color: var(--navy); margin-bottom: 10px; }
.preview-list { display: grid; gap: 10px; }
.preview-item { display: flex; flex-direction: column; gap: 3px; padding: 10px 12px; background: #faf7f1; border: 1px solid var(--border); }
.preview-item strong { color: var(--navy); }
.preview-item span { color: var(--text-soft); font-size: .8rem; }
.empty-state { padding: 14px; border: 1px dashed rgba(201,162,39,.4); background: #faf7f1; color: var(--text-soft); font-size: .82rem; }
.privacy-box { margin-top: 20px; }
.privacy-box p { color: var(--text-soft); font-size: .85rem; line-height: 1.6; }
.form-actions.stacked { display: flex; flex-direction: column; margin-top: 18px; }
.form-actions.stacked .btn-save { width: 100%; }
.form-actions.stacked .btn-save.accent { background: linear-gradient(135deg, var(--gold), #a77f20); color: var(--navy); }
.btn-whatsapp-order { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin: 12px 0; padding: 13px; border: 1px solid #168c4a; background: #1ca65a; color: #fff; font: inherit; font-weight: 700; cursor: pointer; }
.btn-whatsapp-order svg { width: 17px; height: 17px; }
@media (max-width: 900px) { .importer-layout { grid-template-columns: 1fr; } .mapper-row { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item img { width: 80px; height: 80px; }
  .ci-right { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; gap: 16px; }
}
/* ---------- ÖDEME ---------- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}

.checkout-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.form-section { margin-bottom: 30px; }
.form-section h3 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.single { grid-template-columns: 1fr; }

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .93rem;
  background: var(--bg);
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group input.error { border-color: #e74c3c; background: #fff5f5; }
.field-error { color: #e74c3c; font-size: .78rem; margin-top: 4px; min-height: 14px; }

/* ---------- SİPARİŞ TAKİP ---------- */
.order-tracking-shell { max-width: 860px; }
.order-tracking-shell .section-head p { max-width: 560px; margin: 12px auto 0; color: var(--text-soft); }
.order-track-form {
  max-width: 680px;
  margin: 0 auto 34px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.order-track-form > label { display: block; color: var(--navy); font-size: .82rem; font-weight: 700; margin-bottom: 8px; }
.order-track-input { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); padding-left: 14px; background: var(--ivory); }
.order-track-input svg { width: 18px; color: var(--gold-deep); flex-shrink: 0; }
.order-track-input input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; padding: 14px 0; color: var(--navy); font: inherit; text-transform: uppercase; }
.order-track-input .btn { border: 0; flex-shrink: 0; }
.order-track-result { background: var(--navy); color: var(--white); padding: 30px; box-shadow: var(--shadow); }
.order-track-result__top { display: flex; justify-content: space-between; align-items: start; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 22px; }
.order-track-result .kicker { color: var(--gold-soft); font-size: .76rem; letter-spacing: .12em; }
.order-track-result h3 { font: 500 1.75rem var(--font-head); margin-top: 5px; }
.order-track-result__top > strong { color: var(--gold-soft); border: 1px solid rgba(231,208,139,.45); padding: 8px 12px; font-size: .84rem; white-space: nowrap; }
.order-status-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 30px 0; }
.order-status-step { position: relative; text-align: center; color: rgba(255,255,255,.42); }
.order-status-step:not(:last-child)::after { content: ""; position: absolute; top: 15px; left: calc(50% + 18px); width: calc(100% - 36px); height: 1px; background: rgba(255,255,255,.2); }
.order-status-step span { position: relative; z-index: 1; display: grid; place-items: center; width: 30px; height: 30px; margin: 0 auto 9px; border: 1px solid currentColor; border-radius: 50%; font-size: .78rem; }
.order-status-step small { font-size: .75rem; }
.order-status-step.is-done { color: var(--gold-soft); }
.order-status-step.is-done::after { background: var(--gold); }
.order-status-step.is-current span { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 700; }
.order-track-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; }
.order-track-meta span { display: grid; gap: 3px; }
.order-track-meta small { color: rgba(255,255,255,.58); font-size: .72rem; }
.order-track-meta b { font-size: .9rem; font-weight: 600; }
.order-track-items { display: grid; gap: 8px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.78); font-size: .86rem; }
.order-track-items span { display: flex; justify-content: space-between; gap: 16px; }
.order-track-items b { color: var(--gold-soft); white-space: nowrap; }
.order-track-cancelled { color: rgba(255,255,255,.78); margin-top: 22px; }
.order-track-cancelled a { color: var(--gold-soft); text-decoration: underline; }

/* Ödeme yöntemi kartları */
.pay-methods { display: grid; gap: 12px; }
.pay-method {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: all .2s;
}
.pay-method:hover { border-color: var(--gold-light); }
.pay-method.selected { border-color: var(--gold); background: #fffcf2; }
.pay-method input { accent-color: var(--gold); width: 18px; height: 18px; }
.pay-method .pm-icon { font-size: 1.5rem; }
.pay-method b { color: var(--navy); display: block; font-size: .95rem; }
.pay-method small { color: var(--text-soft); font-size: .8rem; }

/* Özet kutusu (sepetle aynı, mini liste ekli) */
.mini-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
}
.mini-item img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
.mini-item .mi-qty { color: var(--gold-light); font-weight: 700; margin-left: auto; white-space: nowrap; }

/* Başarı ekranı */
.success-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 60px 30px;
  max-width: 600px;
  margin: 0 auto;
}
.success-box .check {
  width: 90px; height: 90px;
  background: #27ae60;
  color: #fff;
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: pop .4s ease;
}
@keyframes pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.success-box h2 { font-family: var(--font-head); color: var(--navy); margin-bottom: 10px; }
.success-box p { color: var(--text-soft); margin-bottom: 8px; }
.order-no {
  display: inline-block;
  background: var(--bg);
  border: 1px dashed var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  margin: 16px 0 26px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .order-track-form, .order-track-result { padding: 20px; }
  .order-track-input { align-items: stretch; flex-wrap: wrap; padding-left: 12px; }
  .order-track-input input { flex-basis: calc(100% - 34px); }
  .order-track-input .btn { width: 100%; }
  .order-track-result__top { flex-direction: column; }
  .order-status-steps { gap: 4px; padding: 24px 0; }
  .order-status-step small { font-size: .66rem; }
  .order-status-step:not(:last-child)::after { left: calc(50% + 16px); width: calc(100% - 32px); }
  .order-track-meta { grid-template-columns: 1fr; gap: 12px; }
}
/* ---------- İLETİŞİM ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: start;
}
.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-card h3 {
  font-family: var(--font-head);
  color: var(--gold-light);
  margin-bottom: 22px;
  font-size: 1.4rem;
}
.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .93rem;
}
.contact-line:last-child { border-bottom: none; }
.contact-line .cl-icon { font-size: 1.3rem; }
.contact-line b { color: var(--gold-light); display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-line a:hover { color: var(--gold-light); }
.contact-card { background: var(--navy); color: var(--white); }
.contact-card h3 { color: var(--gold-soft); }
.contact-card .contact-line { color: rgba(255,255,255,.86); }
.contact-card .contact-line b { color: var(--gold-soft); }
.contact-card .contact-line a { color: var(--white); }
.contact-card .contact-line a:hover { color: var(--gold-soft); }

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  margin-top: 20px;
  transition: transform .2s;
}
.whatsapp-btn:hover { transform: translateY(-2px); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.contact-form h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 22px;
  font-size: 1.4rem;
}

.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 36px;
}
.map-box iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- HAKKIMIZDA ---------- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 4px; bottom: 4px;
  width: 2px;
  background: var(--gold);
}
.tl-item {
  position: relative;
  padding: 0 0 34px 24px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -30px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
}
.tl-item .tl-year {
  font-weight: 700;
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 1px;
}
.tl-item h4 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.15rem;
  margin: 4px 0;
}
.tl-item p { color: var(--text-soft); font-size: .92rem; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
  transition: transform .25s;
}
.value-card:hover { transform: translateY(-6px); }
.value-card .icon { font-size: 2.4rem; margin-bottom: 12px; }
.value-card h3 { font-family: var(--font-head); color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: .9rem; color: var(--text-soft); }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
/* ---------- ADMIN ---------- */
.admin-login {
  max-width: 420px;
  margin: 60px auto;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(201,162,39,.25);
  border-radius: 0;
  box-shadow: 0 20px 40px rgba(13,27,42,.08);
  padding: 42px 32px;
  text-align: center;
}
.admin-login .lock { font-size: 3rem; margin-bottom: 14px; }
.admin-login h2 { font-family: var(--font-head); color: var(--navy); margin-bottom: 8px; }
.admin-login p { color: var(--text-soft); font-size: .88rem; margin-bottom: 22px; }
.admin-login input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 14px;
  text-align: center;
  background: #faf8f3;
}
.admin-login input:focus { outline: 2px solid var(--gold); }
.login-error { color: #e74c3c; font-size: .85rem; min-height: 18px; margin-bottom: 10px; }

.admin-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.admin-top h2 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-right: auto;
}
.admin-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: 0;
  font-size: .8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}
.admin-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}
.admin-btn.danger { background: #b63d3d; }
.admin-btn.danger:hover { background: #8f2d2d; color: #fff; }
.admin-btn.small { padding: 7px 12px; font-size: .8rem; }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.stat-card b {
  min-width: 0;
  font-size: clamp(1rem, 1.8vw, 1.7rem);
  font-family: var(--font-head);
  color: var(--navy);
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.15;
}
.stat-card span { min-width: 0; font-size: .83rem; color: var(--text-soft); overflow-wrap: anywhere; }
.stat-card.warn b { color: #e67e22; }

.admin-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}
.admin-panel {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(201,162,39,.22);
  border-radius: 0;
  box-shadow: 0 14px 30px rgba(13,27,42,.05);
  padding: 26px;
}
.admin-panel h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--bg);
  color: var(--navy);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:hover td { background: #fffcf2; }
.admin-table img {
  width: 48px; height: 48px;
  object-fit: contain;
  background: var(--ivory-strong);
  border-radius: 8px;
}
.admin-table .p-name-cell b { color: var(--navy); }
.admin-table .p-name-cell small { display: block; color: var(--text-soft); }
.stock-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
}
.stock-chip.ok { background: #e8f8ef; color: #27ae60; }
.stock-chip.low { background: #fdf3e3; color: #e67e22; }
.stock-chip.out { background: #fdeaea; color: #e74c3c; }
.admin-table .actions { white-space: nowrap; }
.admin-table .actions button {
  border: none;
  background: none;
  font-size: 1.05rem;
  margin-right: 6px;
  cursor: pointer;
}
.admin-pagination { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); color: var(--text-soft); font-size: .82rem; }
.admin-page-size { display: inline-flex; align-items: center; gap: 8px; }
.admin-page-size select { border: 1px solid var(--border); background: var(--white); color: var(--text); padding: 7px 10px; font: inherit; }
.admin-pagination__buttons { display: inline-flex; align-items: center; gap: 10px; }
.admin-pagination__buttons button { width: 30px; height: 30px; border: 1px solid var(--border); background: var(--white); color: var(--navy); font-size: 1.1rem; }
.admin-pagination__buttons button:not(:disabled):hover { border-color: var(--gold); color: var(--gold-deep); }
.admin-pagination__buttons button:disabled { opacity: .35; cursor: not-allowed; }
.admin-top { display: grid; grid-template-columns: minmax(210px, .8fr) 1.6fr 1fr; gap: 14px; align-items: center; padding: 18px; background: var(--navy); border: 1px solid var(--navy-3); color: var(--white); }
.admin-top__title { display: flex; align-items: center; gap: 12px; }
.admin-top__title > svg { width: 28px; height: 28px; color: var(--gold-soft); stroke-width: 1.4; }
.admin-top__title .kicker { color: var(--gold-soft); font-size: .65rem; }
.admin-top h2 { margin: 3px 0 0; color: var(--white); font-size: 1.25rem; }
.admin-tool-group { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 7px; }
.admin-tool-group > span { width: 100%; color: var(--gold-soft); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; text-align: right; }
.admin-top .admin-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); color: var(--white); font-size: .72rem; }
.admin-top .admin-btn:hover { border-color: var(--gold-soft); color: var(--gold-soft); background: rgba(255,255,255,.12); }
.admin-top .admin-btn svg { width: 14px; height: 14px; }
.admin-top .admin-btn.danger { background: rgba(160,60,60,.5); }
.admin-workspace { display: grid; grid-template-columns: 228px minmax(0, 1fr); gap: 24px; align-items: start; }
.admin-sidebar { position: sticky; top: 20px; display: flex; flex-direction: column; gap: 5px; padding: 14px; background: var(--navy); border: 1px solid var(--navy-3); min-height: 420px; }
.admin-sidebar__brand { display: flex; align-items: center; gap: 10px; padding: 5px 10px 16px; border-bottom: 1px solid rgba(255,255,255,.12); color: var(--white); }
.admin-sidebar__brand > svg { width: 24px; height: 24px; color: var(--gold-soft); }
.admin-sidebar__brand div { display: grid; gap: 3px; min-width: 0; }
.admin-sidebar__brand .kicker { color: var(--gold-soft); font-size: .58rem; letter-spacing: .08em; white-space: nowrap; }
.admin-sidebar__brand strong { font: 600 1rem var(--font-head); }
.admin-sidebar__label { padding: 12px 10px 6px; color: var(--gold-soft); font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.admin-nav-item { display: flex; align-items: center; gap: 10px; width: 100%; padding: 11px 10px; border: 1px solid transparent; background: transparent; color: rgba(255,255,255,.7); font: inherit; font-size: .78rem; font-weight: 700; text-align: left; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.admin-nav-item svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--gold-soft); }
.admin-nav-item:hover, .admin-nav-item.is-active { border-color: rgba(212,183,106,.45); background: rgba(255,255,255,.1); color: var(--white); }
.admin-nav-item b { display: grid; place-items: center; min-width: 19px; height: 19px; margin-left: auto; padding: 0 5px; background: var(--gold); color: var(--navy); border-radius: 20px; font-size: .68rem; }
.admin-nav-item b[hidden] { display: none; }
.admin-sidebar__footer { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.admin-nav-item--logout { color: rgba(255,255,255,.54); }
.admin-sidebar__tools { display: grid; gap: 4px; padding: 0 0 8px; }
.admin-tool-link { display: flex; align-items: center; gap: 9px; width: 100%; padding: 8px 10px; border: 1px solid transparent; background: transparent; color: rgba(255,255,255,.57); font: inherit; font-size: .71rem; text-align: left; text-decoration: none; cursor: pointer; }
.admin-tool-link svg { width: 15px; height: 15px; color: var(--gold-soft); flex: 0 0 auto; }
.admin-tool-link:hover { border-color: rgba(212,183,106,.3); background: rgba(255,255,255,.06); color: var(--white); }
.admin-tool-link--danger:hover { border-color: rgba(230,126,126,.5); color: #ffd4d4; }
.admin-sidebar-toggle { display: flex; align-items: center; gap: 8px; padding: 8px 10px; color: rgba(255,255,255,.57); font-size: .71rem; cursor: pointer; }
.admin-sidebar-toggle input { accent-color: var(--gold); }
.admin-content { min-width: 0; }
.admin-content-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.admin-content-heading h2 { margin-top: 4px; color: var(--navy); font: 600 1.65rem var(--font-head); }
.admin-content-heading > span { max-width: 430px; color: var(--text-soft); font-size: .82rem; text-align: right; }
.admin-section[hidden] { display: none; }
.admin-section > .admin-panel { margin-bottom: 18px; }
.admin-section > .admin-panel:last-child { margin-bottom: 0; }
.stat-card { position: relative; display: grid; grid-template-columns: 30px 1fr; column-gap: 10px; align-items: center; }
.stat-card > svg { grid-row: span 2; width: 24px; height: 24px; color: var(--gold-deep); stroke-width: 1.4; }
.stat-card b, .stat-card span { grid-column: 2; }
.admin-panel-heading h3, .admin-panel > h3 { display: flex; align-items: center; gap: 8px; }
.admin-panel-heading h3 svg, .admin-panel > h3 svg { width: 18px; height: 18px; color: var(--gold-deep); stroke-width: 1.5; }
.admin-table .actions button { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border: 1px solid transparent; color: var(--navy); }
.admin-table .actions button:hover { border-color: var(--gold); background: var(--ivory); }
.admin-table .actions svg { width: 15px; height: 15px; stroke-width: 1.6; }
.admin-product-tools { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: -6px 0 14px; }
.admin-product-tools select { min-width: 180px; padding: 8px 10px; border: 1px solid var(--border); background: var(--white); color: var(--text); font: inherit; font-size: .78rem; }
.admin-product-tools .admin-btn.is-active { background: var(--gold); color: var(--navy); }
.admin-table .actions .featured-toggle { color: #a9a9a9; }
.admin-table .actions .featured-toggle.is-featured { color: var(--gold-deep); }
.admin-table .actions .featured-toggle.is-featured svg { fill: currentColor; }
.slide-edit-card { position: relative; padding-top: 42px; }
.slide-edit-card::before { top: 16px; left: 15px; right: auto; }
.slide-delete { position: absolute; top: 11px; right: 12px; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(164,87,87,.3); background: transparent; color: #a45757; cursor: pointer; }
.slide-delete svg { width: 14px; height: 14px; }
.slide-edit-card::before { content: attr(data-slide-label); position: absolute; top: 14px; right: 14px; color: var(--gold-deep); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.slide-edit-card input, .slide-edit-card textarea { border-radius: 0; }
@media (max-width: 1050px) { .admin-top { grid-template-columns: 1fr; } .admin-tool-group { justify-content: flex-start; } .admin-tool-group > span { text-align: left; } }
@media (max-width: 900px) {
  .admin-workspace { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; min-height: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .admin-sidebar__label, .admin-sidebar__footer { grid-column: 1 / -1; }
  .admin-sidebar__footer { margin-top: 4px; }
  .admin-content-heading { align-items: flex-start; flex-direction: column; }
  .admin-content-heading > span { text-align: left; }
}
@media (max-width: 560px) {
  .admin-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.admin-visibility-setting { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid var(--border); color: var(--text-soft); font-size: .76rem; font-weight: 700; white-space: nowrap; }
.admin-visibility-setting input { accent-color: var(--gold); }
.admin-visibility-setting--form { margin-top: 4px; background: var(--ivory); }
.coupon-admin-form { display: grid; grid-template-columns: minmax(180px, 1.4fr) 130px 160px auto; gap: 10px; margin-bottom: 16px; align-items: center; }
.coupon-admin-form input { width: 100%; min-width: 0; padding: 10px 12px; border: 1px solid var(--border); background: var(--white); font: inherit; }
.coupon-admin-list { display: grid; gap: 8px; }
.coupon-admin-row { display: grid; grid-template-columns: minmax(110px, 1.2fr) 54px minmax(170px, 1.5fr) minmax(130px, 1fr) 70px auto auto; gap: 10px; align-items: center; padding: 12px; border: 1px solid var(--border); background: var(--ivory); }
.coupon-admin-row strong { color: var(--navy); letter-spacing: .08em; }
.coupon-admin-row span { color: var(--gold-deep); font-weight: 700; }
.coupon-admin-row input { width: 100%; min-width: 0; padding: 7px 9px; border: 1px solid var(--border); background: var(--white); font: inherit; }
.coupon-usage { display: grid; gap: 4px; color: var(--text-soft); font-size: .75rem; }
.coupon-usage-count { color: var(--text-soft); font-size: .78rem; }
.coupon-status { color: #238653; font-size: .8rem; font-style: normal; font-weight: 700; }
.coupon-status.is-off { color: #b63d3d; }
.coupon-admin-row .admin-btn { white-space: nowrap; padding: 8px 10px; }
.coupon-status { color: #24844f; font-size: .8rem; font-style: normal; }
.coupon-status.is-off { color: #a45757; }
.coupon-empty { color: var(--text-soft); font-size: .85rem; }
.import-history-list { display: grid; gap: 7px; }
.import-history-row { display: grid; grid-template-columns: 24px minmax(0, 1fr) auto auto auto; gap: 10px; align-items: center; padding: 10px 12px; border: 1px solid var(--border); background: var(--ivory); }
.import-history-row > svg { width: 18px; height: 18px; color: var(--gold-deep); }
.import-history-row span { display: grid; gap: 2px; }
.import-history-row small, .import-history-row em { color: var(--text-soft); font-size: .74rem; font-style: normal; }
.import-history-row b { color: var(--navy); font-size: .82rem; }
@media (max-width: 700px) { .import-history-row { grid-template-columns: 24px minmax(0, 1fr); } .import-history-row b, .import-history-row em, .import-history-row .admin-btn { grid-column: 2; justify-self: start; } }
.admin-inline-note { color: var(--text-soft); font-size: .78rem; }
.orders-admin-list { display: grid; gap: 8px; }
.messages-admin-list { display: grid; gap: 8px; }
.message-admin-card { border: 1px solid var(--border); background: var(--ivory); }
.message-admin-card.is-unread { border-color: var(--gold); }
.message-admin-card summary { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 13px 15px; cursor: pointer; list-style: none; }
.message-admin-card summary::-webkit-details-marker { display: none; }
.message-admin-card summary span { display: grid; gap: 3px; }
.message-admin-card summary small { color: var(--text-soft); font-size: .76rem; }
.message-admin-card summary b { color: var(--navy); font-size: .78rem; }
.message-admin-card.is-unread summary b { color: var(--gold-deep); }
.messages-unread-count { color: var(--gold-deep); font-size: .85em; }
.message-admin-detail { padding: 0 15px 15px; color: var(--navy); font-size: .86rem; }
.message-admin-detail p { margin: 8px 0; }
.message-admin-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.message-admin-actions .admin-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--navy) !important; color: #fff !important; }
.message-admin-actions .admin-btn:hover { background: var(--gold) !important; color: var(--navy) !important; }
.message-admin-actions .admin-btn svg { width: 15px; height: 15px; }
.message-admin-actions .admin-btn.danger { background: #b63d3d !important; color: #fff !important; }
.order-admin-card { border: 1px solid var(--border); background: var(--ivory); }
.order-admin-card summary { display: grid; grid-template-columns: 1fr auto 150px; gap: 14px; align-items: center; padding: 13px 15px; cursor: pointer; list-style: none; }
.order-admin-card summary::-webkit-details-marker { display: none; }
.order-admin-card summary span { display: grid; gap: 3px; }
.order-admin-card summary small { color: var(--text-soft); font-size: .76rem; }
.order-admin-card summary b { color: var(--navy); }
.order-admin-card summary select { padding: 8px; border: 1px solid var(--border); background: var(--white); color: var(--text); font: inherit; }
.order-admin-detail { padding: 0 15px 15px; color: var(--text-soft); font-size: .82rem; }
.order-admin-item { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.order-admin-note { margin-top: 10px; font-style: italic; }
.order-delete-btn { margin-top: 12px; }
.bank-transfer-info { margin-top: 16px; padding: 16px; border: 1px solid var(--border); background: #faf8f3; }
.bank-transfer-info h4 { margin: 0 0 8px; color: var(--navy); font: 600 1rem var(--font-head); }
.bank-transfer-note { margin: 0 0 14px; color: var(--text-soft); font-size: .8rem; line-height: 1.5; }
.bank-account-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.bank-account-info { display: grid; gap: 6px; min-width: 0; padding: 14px; border: 1px solid #ded8ca; border-left: 3px solid var(--gold); background: var(--white); color: var(--text-soft); font-size: .82rem; }
.bank-account-info strong { color: var(--navy); font-size: .95rem; }
.bank-account-info span { overflow-wrap: anywhere; }
.bank-account-info b { color: var(--navy); letter-spacing: .04em; overflow-wrap: anywhere; }
.bank-account-info small { padding-top: 6px; border-top: 1px solid var(--border); color: var(--gold-deep); font-size: .74rem; line-height: 1.45; }
.detail-description { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 14px; }
.detail-description summary { color: var(--gold-deep); cursor: pointer; font-weight: 700; font-size: .88rem; }
.detail-description .detail-desc { margin-top: 12px; }
@media (max-width: 700px) { .order-admin-card summary { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .coupon-admin-form, .coupon-admin-row { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .bank-transfer-info { padding: 12px; }
  .bank-account-grid { grid-template-columns: 1fr; gap: 10px; }
  .bank-account-info { padding: 12px; }
}

.admin-form .form-group { margin-bottom: 14px; }
.admin-form textarea { resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.admin-form img.preview {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 8px;
  border: 1px solid var(--border);
  display: none;
}
.form-actions { display: flex; gap: 10px; margin-top: 18px; }
.form-actions .btn-save { flex: 1; background: #27ae60; color: #fff; border: none; padding: 13px; border-radius: 8px; font-weight: 700; font-size: .95rem; }
.form-actions .btn-save:hover { background: #2ecc71; }
.form-actions .btn-cancel { background: var(--bg); border: 1px solid var(--border); padding: 13px 18px; border-radius: 8px; }
.editing-banner {
  background: #fdf3e3;
  border: 1px solid #e67e22;
  color: #e67e22;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 14px;
  display: none;
}

.import-history-row .admin-btn { padding: 7px 10px; font-size: .78rem; white-space: nowrap; }
.batch-filter-bar { background: #eef4fb; border: 1px solid var(--gold-deep, #b9975b); border-radius: 8px; padding: 12px 14px; margin-bottom: 14px; display: grid; gap: 10px; }
.batch-filter-bar__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.batch-filter-bar__head strong { color: var(--navy); font-size: .88rem; }
.batch-filter-bar__head small { color: var(--text-soft); display: block; font-size: .76rem; }
.batch-filter-bar__actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; }
.batch-filter-bar__action { display: flex; gap: 6px; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 6px 8px; }
.batch-filter-bar__action input, .batch-filter-bar__action select { flex: 1; min-width: 0; border: none; font: inherit; font-size: .78rem; }
.batch-filter-bar__action input:focus, .batch-filter-bar__action select:focus { outline: none; }
.batch-filter-bar__action button { border: none; background: var(--navy); color: #fff; border-radius: 4px; padding: 5px 8px; font-size: .72rem; cursor: pointer; white-space: nowrap; }
.batch-filter-bar__action button:hover { background: var(--gold-deep, #b9975b); }
@media (max-width: 700px) { .batch-filter-bar__head { flex-direction: column; align-items: flex-start; } }

@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
/* ==========================================================
   LÜKS TEMA OVERRIDE — Keskin köşeler & premium görünüm
   ========================================================== */
:root {
  --gold: #b8963e;          /* Daha koyu, şampanya altını */
  --gold-light: #d4b76a;
  --navy: #0a1220;          /* Daha derin lacivert */
  --navy-2: #101c30;
  --bg: #f4f1ea;
  --radius: 2px;            /* Keskin köşeler */
}

/* Kartlar: gölge yerine ince altın çerçeve hissi */
.product-card, .cat-card, .service-card, .value-card,
.admin-panel, .stat-card, .cart-item, .checkout-form,
.contact-form, .contact-card, .success-box, .about-strip {
  border-radius: 2px;
  box-shadow: none;
  border: 1px solid #ddd6c6;
}
.product-card:hover, .value-card:hover {
  border-color: var(--gold);
  box-shadow: 8px 8px 0 rgba(184,150,62,.15);  /* Keskin ofset gölge */
}

/* Butonlar: köşeli, büyük harf, geniş harf aralığı */
.btn, .btn-cart, .btn-checkout, .btn-big-cart, .admin-btn, .btn-save {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .82rem;
}
.btn-gold, .btn-checkout {
  background: linear-gradient(135deg, var(--gold), #9a7a2a);
}

/* ==========================================================
   MAVİ PANDORA / NEW LUXURY DIRECTION
   ========================================================== */
:root {
  --navy: #101d33;
  --navy-2: #172945;
  --navy-3: #294365;
  --gold: #c6a15b;
  --gold-deep: #987433;
  --gold-soft: #ead6a7;
  --ivory: #fbfaf7;
  --ivory-strong: #f1eee7;
  --white: #fffefa;
  --text: #202936;
  --text-soft: #6e7480;
  --border: rgba(16, 29, 51, .14);
  --shadow: 0 18px 45px rgba(16, 29, 51, .12);
  --shadow-soft: 0 8px 24px rgba(16, 29, 51, .08);
  --font-head: 'Manrope', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

body {
  background: #fbfaf6;
  color: var(--text);
  font-size: 15px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 110;
  align-items: center;
  background: var(--navy);
  color: var(--gold-soft);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 12px;
  height: 30px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 2px 10px rgba(13, 27, 42, 0.08);
}
.header {
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: 0 8px 22px rgba(13, 27, 42, 0.18);
}
.header-inner { padding: 10px 0; }
.logo { color: var(--navy); font-family: 'Playfair Display', serif; font-size: 1.6rem; letter-spacing: .01em; }
.logo span { color: var(--gold-deep); }
.nav a { color: rgba(255,255,255,.8); font-size: .85rem; letter-spacing: .12em; }
.nav a:hover, .nav a.active { color: var(--gold-soft); }
.icon-btn { color: var(--white); }
.icon-btn svg { width: 22px; height: 22px; stroke-width: 1.6; }
.badge { background: var(--gold); color: var(--white); border-radius: 50%; }
.section { padding: 86px 0; }
.section-head h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 700; }
.section-head h2 svg { width: 27px; height: 27px; vertical-align: -3px; color: var(--gold-deep); stroke-width: 1.5; }
.section-head .kicker, .hero-label { color: var(--gold-deep); }
.btn { display: inline-flex; align-items: center; gap: 10px; }
.btn svg, .text-link svg, .branch-card__link svg { width: 16px; height: 16px; }
.btn-gold { background: var(--navy); color: var(--white); box-shadow: none; }
.btn-gold:hover { background: var(--gold-deep); color: var(--white); }

.hero-slider { position: relative; min-height: 610px; overflow: hidden; background: var(--navy); }
.hero-slides { position: relative; min-height: 610px; }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transform: scale(1.02); transition: opacity .65s ease, transform .9s ease, visibility .65s; background-position: center; background-size: cover; }
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,29,51,.86) 0%, rgba(16,29,51,.56) 44%, rgba(16,29,51,.10) 100%); }
.hero-slide--one { background-image: url('https://images.unsplash.com/photo-1540932239986-30128078f3c5?auto=format&fit=crop&w=1800&q=85'); }
.hero-slide--two { background-image: url('https://images.unsplash.com/photo-1513506003901-1e6a229e2d15?auto=format&fit=crop&w=1800&q=85'); }
.hero-slide--three { background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1800&q=85'); }
.hero-slide__content { position: relative; z-index: 1; color: var(--white); padding-bottom: 28px; }
.hero-slide__content .hero-label { color: var(--gold-soft); letter-spacing: .25em; text-transform: uppercase; font-size: .72rem; font-weight: 700; }
.hero-slide h1 { max-width: 680px; margin: 18px 0; font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 5.7rem); line-height: 1.02; font-weight: 500; letter-spacing: -.025em; }
.hero-slide p { max-width: 520px; margin-bottom: 28px; color: rgba(255,255,255,.80); font-size: 1.02rem; }
.btn-light { background: var(--white); color: var(--navy); border: 1px solid var(--white); }
.btn-light:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-cart, .btn-fav, .ci-remove { display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.btn-cart svg, .btn-fav svg, .ci-remove svg { width: 16px; height: 16px; stroke-width: 1.7; }
.hero-slide__number { position: absolute; z-index: 1; right: 6%; bottom: 38px; color: rgba(255,255,255,.75); font-size: .72rem; letter-spacing: .16em; }
.hero-slider__controls { position: absolute; z-index: 3; left: 4%; bottom: 30px; display: flex; align-items: center; gap: 14px; }
.page-slider { position: relative; min-height: 610px; overflow: hidden; background: var(--navy); }
.page-slider__track { min-height: 610px; position: relative; }
.page-slide { position: absolute; inset: 0; display: flex; align-items: center; background-position: center; background-size: cover; opacity: 0; visibility: hidden; transition: opacity .55s ease, visibility .55s ease; color: var(--white); }
.page-slide.is-active { opacity: 1; visibility: visible; }
.page-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,29,51,.88), rgba(16,29,51,.28)); }
.page-slide .container { position: relative; z-index: 1; }
.page-slide span { color: var(--gold-soft); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; }
.page-slide h1 { max-width: 650px; margin: 14px 0; font: 500 clamp(2.2rem, 5vw, 4.4rem)/1.05 'Playfair Display', serif; }
.page-slide p { max-width: 520px; margin-bottom: 24px; color: rgba(255,255,255,.8); }
.page-slider__controls { position: absolute; z-index: 2; left: 4%; bottom: 30px; display: flex; align-items: center; gap: 14px; }
.page-slider__controls button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); background: transparent; color: var(--white); }
.page-slider__controls button:hover, .page-slider__controls #aboutDots button.is-active { border-color: var(--gold-soft); color: var(--gold-soft); }
.page-slider__controls svg { width: 17px; }
.page-slider__controls #aboutDots { display: flex; gap: 6px; }
.page-slider__controls #aboutDots button { width: 30px; height: 2px; border: 0; background: rgba(255,255,255,.4); }
.slider-arrow { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.38); background: transparent; color: var(--white); }
.slider-arrow:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.slider-arrow svg { width: 17px; }
.slider-dots { display: flex; gap: 7px; }
.slider-dot { width: 30px; height: 2px; border: 0; background: rgba(255,255,255,.35); padding: 0; }
.slider-dot.is-active { background: var(--gold-soft); }

.home-cat-grid { gap: 16px; }
.home-cat-card { min-height: 330px; border-radius: 0; box-shadow: var(--shadow-soft); }
.home-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.home-cat-card::before { background: linear-gradient(to top, rgba(16,29,51,.84), rgba(16,29,51,.08)); }
.home-cat-card__eyebrow { color: var(--gold-soft); }
.home-cat-card h3 { font-family: 'Playfair Display', serif; font-weight: 500; }
.feature-banner { border-radius: 0; background: var(--navy); }
.home-products { background: #f1ede4; }
.product-card, .service-card, .contact-card, .contact-form, .admin-panel, .about-strip { border-color: rgba(16,29,51,.13); background: rgba(255,254,250,.78); }
.services .service-card { background: #ffffff; border-color: rgba(16,29,51,.12); }
.contact-layout .contact-card { background: var(--navy); color: var(--white); border-color: rgba(198,161,91,.35); }
.product-card:hover { box-shadow: 7px 7px 0 rgba(181,139,82,.22); }
.p-tag, .discount-badge { background: var(--gold); color: var(--white); }
.btn-cart { background: var(--navy); color: var(--white); }
.btn-cart:hover { background: var(--gold-deep); }

.section-head--split { display: flex; align-items: end; justify-content: space-between; text-align: left; gap: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-deep); font-weight: 700; font-size: .82rem; }
.branch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.branch-card { position: relative; min-height: 235px; padding: 24px; background: var(--white); border: 1px solid var(--border); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.branch-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-soft); }
.branch-card > svg { width: 22px; height: 22px; color: var(--gold-deep); stroke-width: 1.5; margin: 32px 0 17px; }
.branch-card__index { position: absolute; top: 20px; right: 22px; color: var(--gold-deep); font: 700 .72rem 'DM Sans', sans-serif; letter-spacing: .16em; }
.branch-card h3 { color: var(--navy); font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 500; }
.branch-card p { margin: 8px 0 20px; color: var(--text-soft); font-size: .86rem; line-height: 1.55; }
.branch-card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.branch-phone { display: flex; align-items: center; gap: 7px; margin: 0 0 13px; color: var(--text-soft); font-size: .78rem; }
.branch-phone svg { width: 14px; height: 14px; color: var(--gold-deep); stroke-width: 1.6; }
.contact-form .btn svg { width: 16px; height: 16px; }
.branch-directory { margin-top: 72px; }
.contact-line .cl-icon svg { width: 18px; height: 18px; stroke-width: 1.5; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 9px; }
.whatsapp-btn svg { width: 17px; }

@media (max-width: 900px) {
  .topbar { gap: 12px; font-size: .55rem; letter-spacing: .08em; }
  .nav { gap: 12px; }
  .nav a { font-size: .65rem; }
  .hero-slider, .hero-slides { min-height: 540px; }
  .hero-slide h1 { font-size: clamp(2.5rem, 10vw, 4.5rem); }
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .zoom-preview { display: none; }
}
@media (max-width: 600px) {
  .topbar {
    justify-content: flex-start;
    gap: 12px;
    height: 28px;
    padding: 0 12px;
    font-size: .56rem;
    letter-spacing: .06em;
  }
  .topbar span { display: block; }
  .header-inner { flex-wrap: nowrap; gap: 8px; }
  .logo { font-size: 1.15rem; }
  .nav { order: initial; width: auto; }
  .hero-slide h1 { max-width: 340px; }
  .hero-slide p { max-width: 310px; font-size: .92rem; }
  .hero-slide, .page-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    background-color: var(--navy);
  }
  .hero-slider, .hero-slides, .hero-slide { min-height: 300px; }
  .hero-slide__content { padding-bottom: 18px; }
  .hero-slide__content .hero-label { font-size: .55rem; letter-spacing: .14em; }
  .hero-slide h1 { max-width: 270px; margin: 9px 0; font-size: 1.65rem; line-height: 1.05; }
  .hero-slide p { max-width: 250px; margin-bottom: 12px; font-size: .72rem; line-height: 1.35; }
  .hero-slide .btn { padding: 8px 11px; font-size: .62rem; }
  .hero-slider__controls { bottom: 10px; gap: 8px; }
  .slider-arrow { width: 28px; height: 28px; }
  .section-head--split { display: block; }
  .section-head--split .text-link { margin-top: 14px; }
  .branch-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .page-slider,
  .page-slider__track { min-height: 540px; }
  .page-slider__controls {
    left: 14px;
    right: 14px;
    bottom: 18px;
  }
  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--gold-soft);
  }
  .mobile-menu-toggle svg { width: 27px; height: 27px; stroke-width: 2.2; }
  .header-actions .icon-btn {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    font-size: 1.2rem;
  }
  .header-actions .icon-btn svg { width: 24px; height: 24px; }
  .header.nav-open .nav a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: var(--white);
    font-size: .82rem;
    letter-spacing: .08em;
    visibility: visible;
    opacity: 1;
  }
}

/* ---------- ADMIN WORKSPACE POLISH ---------- */
.management-page .admin-workspace {
  gap: 20px;
  align-items: stretch;
}
.management-page .admin-sidebar {
  position: sticky;
  top: 16px;
  left: auto;
  width: auto;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  min-height: 0;
  height: max-content;
  padding: 12px;
  border-radius: 4px;
  box-shadow: 0 18px 38px rgba(10,18,32,.14);
}
.management-page .admin-sidebar__brand {
  min-height: 54px;
  padding: 7px 9px 15px;
}
.management-page .admin-sidebar__footer { margin-top: 10px; }
.management-page .admin-sidebar__label {
  padding-top: 16px;
}
.management-page .admin-nav-item,
.management-page .admin-tool-link {
  min-height: 40px;
  border-radius: 3px;
}
.management-page .admin-nav-item.is-active {
  box-shadow: inset 3px 0 0 var(--gold-soft);
}
.management-page .admin-content-heading {
  min-height: 62px;
  margin-bottom: 16px;
  padding: 4px 2px 14px;
}
.management-page .admin-content-heading h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}
.management-page .admin-panel {
  padding: 22px;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(10,18,32,.06);
}
.management-page .admin-panel-heading {
  align-items: center;
  margin-bottom: 16px;
}
.management-page .admin-panel-heading h3,
.management-page .admin-panel > h3 {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 1.08rem;
}
.management-page .admin-btn,
.management-page .btn-save,
.management-page .btn-cancel {
  min-height: 38px;
  border-radius: 3px;
  letter-spacing: .06em;
  font-size: .72rem;
  line-height: 1.2;
}
.management-page .admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 13px;
}
.management-page .admin-btn svg,
.management-page .btn-save svg,
.management-page .btn-cancel svg { width: 15px; height: 15px; flex: 0 0 auto; }
.management-page .admin-btn.small { min-height: 34px; padding: 7px 10px; font-size: .68rem; }
.management-page .admin-form input,
.management-page .admin-form select,
.management-page .admin-form textarea,
.management-page .coupon-admin-form input,
.management-page .coupon-admin-form select,
.management-page .admin-product-tools select {
  min-height: 40px;
  border-radius: 3px;
  border-color: #d8d3c7;
  background: #fff;
  color: var(--navy);
}
.management-page .admin-form input:focus,
.management-page .admin-form select:focus,
.management-page .admin-form textarea:focus,
.management-page .coupon-admin-form input:focus,
.management-page .coupon-admin-form select:focus,
.management-page .admin-product-tools select:focus {
  outline: 2px solid rgba(184,150,62,.22);
  border-color: var(--gold);
}
.management-page .admin-product-tools {
  margin: -2px 0 16px;
  padding: 10px;
  border: 1px solid var(--border);
  background: #faf8f3;
}
.management-page .admin-product-tools select { flex: 1 1 190px; }
.management-page .admin-table-wrap { border: 1px solid var(--border); }
.management-page .admin-table { background: var(--white); }
.management-page .admin-table th { background: #f2eee5; }
.management-page .admin-table td { padding: 11px 12px; }
.management-page .admin-table .actions { display: flex; align-items: center; gap: 4px; }
.management-page .admin-table .actions button { margin: 0; border-radius: 3px; }
.management-page .admin-table .actions .featured-toggle.is-featured { background: #fff7dd; border-color: #e2c56d; }
.management-page .stat-cards { gap: 12px; margin-bottom: 0; }
.management-page .stat-card { min-height: 96px; padding: 16px; border-radius: 4px; box-shadow: none; }
.management-page .coupon-admin-row,
.management-page .import-history-row,
.management-page .message-admin-card,
.management-page .order-admin-card { border-radius: 3px; }
.management-page .form-actions { align-items: stretch; }
.management-page .form-actions .btn-save { border-radius: 3px; }
.management-page .password-change-box { border-left: 3px solid var(--gold); }
@media (max-width: 700px) {
  .management-page .admin-panel { padding: 16px; }
  .management-page .admin-sidebar { position: static; left: auto; width: auto; max-height: none; overflow: visible; min-height: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .management-page .admin-panel-heading { align-items: flex-start; flex-direction: column; }
  .management-page .admin-panel-heading__actions { width: 100%; }
  .management-page .admin-panel-heading__actions .admin-btn { flex: 1 1 auto; }
  .management-page .admin-product-tools { align-items: stretch; }
  .management-page .admin-product-tools .admin-btn,
  .management-page .admin-product-tools select { width: 100%; }
  .management-page .admin-table { min-width: 610px; }
  .management-page .admin-table-wrap { overflow-x: auto; }
  .management-page .form-actions { flex-direction: column; }
}
@media (max-width: 600px) {
  .logo { font-size: 1.05rem; }
  .page-slider,
  .page-slider__track { min-height: 540px; }
  .page-slider__controls {
    right: 16px;
    left: 14px;
    bottom: 18px;
  }
  .page-slide .container { padding-bottom: 48px; }
}

.page-slider,
.page-slider__track { min-height: 430px; }
.page-slide { align-items: flex-end; }
.page-slide .container {
  width: min(760px, 92%);
  margin: 0 auto 28px max(4%, calc((100% - 1200px) / 2));
  padding: 28px 32px;
  background: rgba(16, 29, 51, .88);
  border-left: 3px solid var(--gold);
}
.page-slide h1 { max-width: 700px; font-size: clamp(2rem, 3.5vw, 3.2rem); }
.page-slide p { margin-bottom: 20px; }

@media (max-width: 600px) {
  .page-slider,
  .page-slider__track { min-height: 410px; }
  .page-slide .container {
    width: 92%;
    margin: 0 auto 44px;
    padding: 22px 20px;
  }
  .page-slide h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

/* Başlıklar: zarif harf aralığı */
.section-head h2, .hero h1, .detail-info h1,
.about-strip h2, .service-card h3, .cart-summary h3 {
  letter-spacing: 1px;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 14px auto 0;
}

/* Kicker: daha sofistike */
.section-head .kicker, .hero-label {
  letter-spacing: 5px;
  font-size: .72rem;
}

/* Üst şerit ve header: ince altın çizgi */
.topbar {
  background: var(--navy);
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
}
.header { border-bottom: 2px solid var(--gold); }

/* Form alanları: köşeli */
input, select, textarea, .search-input, .sort-select {
  border-radius: 0 !important;
}

/* Fiyat: altın vurgu */
.p-price, .detail-price, .sum-row.total span:last-child {
  color: var(--gold);
}

/* Footer: çift çizgi detayı */
.footer { border-top: 3px double var(--gold); }

/* ---------- YATAY KAYDIRMALI VİTRİN (ana sayfa) ---------- */
.showcase-section { padding: 56px 0 8px; }
.showcase-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid #ddd6c6;
  padding-bottom: 14px;
  margin-bottom: 26px;
}
.showcase-head h2 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.7rem;
  letter-spacing: 1px;
}
.showcase-head h2::before {
  content: "◆";
  color: var(--gold);
  font-size: .8rem;
  margin-right: 12px;
  vertical-align: middle;
}
.showcase-head a {
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}
.showcase-head a:hover { color: var(--navy); }

.hscroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}
.hscroll::-webkit-scrollbar { height: 6px; }
.hscroll::-webkit-scrollbar-track { background: #e8e3d6; }
.hscroll::-webkit-scrollbar-thumb { background: var(--gold); }
.hscroll .product-card {
  min-width: 260px;
  max-width: 260px;
  scroll-snap-align: start;
}

/* ---------- ORTAK IVORY HEADER / FOOTER VE MENÜ ---------- */
body {
  background: #f4f1ea;
}
.topbar,
.header,
.footer {
  background: #f4f1ea;
}
.topbar {
  color: var(--gold);
  border-bottom: 1px solid var(--navy);
}
.header {
  top: 0;
  border-bottom: 1px solid var(--navy);
  box-shadow: 0 5px 18px rgba(11, 31, 58, .08);
}
.header-inner {
  position: relative;
  min-height: 82px;
  padding: 20px 0;
}
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(160px, 18vw, 210px);
  z-index: 2;
}
.header-actions {
  margin-left: auto;
}
.header-actions .icon-btn {
  color: #000;
}
.icon-btn {
  color: var(--gold);
}
.icon-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}
.header-actions .icon-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}
.badge {
  background: var(--gold);
  color: #f4f1ea;
}
.mobile-menu-toggle {
  display: inline-flex;
  order: 0;
  margin-left: 0;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  transition: color .2s ease, transform .2s ease;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: transparent;
  color: var(--navy);
  transform: scale(1.08);
  outline: none;
}

/* Yönetim paneli üst kontrol alanı */
.admin-top {
  background: #f4f1ea;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 22px;
}
.admin-top__title > svg {
  color: var(--gold);
}
.admin-top__title .kicker,
.admin-tool-group > span {
  color: var(--gold);
}
.admin-top h2 {
  color: var(--navy);
}
.admin-tool-group .admin-btn,
.admin-top .admin-btn {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #f4f1ea;
}
.admin-tool-group .admin-btn:hover,
.admin-top .admin-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.admin-top .admin-btn.danger {
  background: #8f3f3f;
  border-color: #8f3f3f;
  color: #fff;
}
.admin-top .admin-btn.danger:hover {
  background: #b63d3d;
  border-color: #b63d3d;
  color: #fff;
}
.admin-top .admin-visibility-setting {
  border-color: rgba(11, 31, 58, .25);
  background: transparent;
  color: var(--navy);
}
.admin-header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #f4f1ea;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-header-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.admin-header-link svg { width: 16px; height: 16px; }
.management-page > .footer,
.management-page > .support-widget {
  display: none;
}
.mobile-menu-toggle svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}
.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: min(300px, 100%);
  padding: 16px 20px;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: #f4f1ea;
  border: 1px solid var(--navy);
  box-shadow: 0 12px 22px rgba(11, 31, 58, .1);
  z-index: 115;
}
.header.nav-open .nav {
  display: flex;
}
.nav a {
  width: 100%;
  padding: 11px 0;
  color: var(--gold);
  border-bottom: 1px solid rgba(11, 31, 58, .18);
}
.header.nav-open .nav a {
  color: var(--gold) !important;
  font-weight: 700;
}
.header.nav-open .nav a:hover,
.header.nav-open .nav a.active {
  color: var(--navy) !important;
}
.nav a:last-child {
  border-bottom: 0;
}
.nav a:hover,
.nav a.active {
  color: var(--navy);
  transform: none;
}
.footer {
  border-top: 1px solid var(--navy);
}
.footer-logo img {
  width: 190px;
}
.footer h4,
.footer a,
.footer p,
.footer small {
  color: var(--navy);
}
.home-cat-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 31%);
  grid-template-columns: none;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 18px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--gold) transparent;
}
.home-cat-card {
  min-width: 0;
  min-height: 340px;
  scroll-snap-align: start;
}
.home-cat-card::before {
  display: block;
  background: linear-gradient(to top, rgba(11, 31, 58, .28), rgba(11, 31, 58, .04));
}
.home-cat-card--modernaydinlatma {
  background-image: url('../assets/images/categories/modern-1.jpeg');
}
.home-cat-card--aplik {
  background-image: url('../assets/images/categories/aplikler-1.jpeg');
}
.home-cat-grid::-webkit-scrollbar { height: 6px; }
.home-cat-grid::-webkit-scrollbar-track { background: rgba(11, 31, 58, .08); }
.home-cat-grid::-webkit-scrollbar-thumb { background: var(--gold); }
.footer-bottom,
.footer-bottom a {
  background: #f4f1ea;
  color: var(--navy);
}
.footer-logo img {
  width: 220px;
}
:root {
  --navy: #0B1F3A;
  --navy-2: #0B1F3A;
  --navy-3: #0B1F3A;
  --text: #0B1F3A;
  --text-soft: #0B1F3A;
}
.shop-layout {
  display: block;
}
.filter-box {
  display: none;
  position: static;
  max-height: none;
  overflow: visible;
  margin-bottom: 24px;
}
.filter-box.open {
  display: block;
}
.btn-mobile-filter {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--gold);
  color: #f4f1ea;
  border: 1px solid var(--gold);
  border-radius: 0;
  font-weight: 700;
}
.btn-mobile-filter svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 900px) {
  .header {
    top: 0;
  }
  .header-inner {
    min-height: 72px;
    padding: 14px 0;
  }
  .logo {
    width: 160px;
  }
  .home-cat-grid {
    grid-auto-columns: minmax(260px, 78vw);
  }
  .nav {
    position: absolute;
    top: 100%;
    right: auto;
    width: min(300px, 100%);
    height: auto;
    padding: 16px 18px;
    background: #f4f1ea;
  }
  .header.nav-open .nav {
    right: auto;
  }
}

/* ---------- MEGA MENU ---------- */
body.mega-menu-open { overflow: hidden; }
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: auto;
  min-width: 82px;
  height: 42px;
  padding: 0;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mobile-menu-toggle span { line-height: 1; }
.mobile-menu-toggle svg { width: 22px; height: 22px; stroke-width: 1.5; }
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible { color: var(--gold); transform: none; }
.header-actions { gap: 14px; }
.header-actions .icon-btn { display: inline-flex; align-items: center; justify-content: center; }
.header-actions .icon-btn.is-disabled { opacity: .35; pointer-events: none; }

.mega-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  overflow-y: auto;
  background: #f4f1ea;
  color: var(--navy);
}
.mega-menu[hidden] { display: none; }
.mega-menu__inner {
  width: min(1440px, 100%);
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) clamp(20px, 5vw, 80px) 28px;
  display: flex;
  flex-direction: column;
}
.mega-menu__top {
  position: relative;
  padding-right: 120px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d9d9d9;
}
.mega-menu__eyebrow,
.mega-menu__detail-head small,
.mega-featured__heading > span,
.mega-category small {
  display: block;
  color: #555;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mega-menu__top h2 {
  margin-top: 8px;
  color: var(--navy);
  font: 500 clamp(1.7rem, 3vw, 2.8rem)/1.1 var(--font-head);
}
.mega-menu__close {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mega-menu__close svg { width: 22px; height: 22px; stroke-width: 1.5; }
.mega-menu__body {
  display: grid;
  grid-template-columns: minmax(230px, .7fr) minmax(0, 1.5fr);
  gap: clamp(28px, 6vw, 100px);
  flex: 1;
  padding: 36px 0 48px;
}
.mega-menu__category-list { display: grid; align-content: start; }
.mega-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid #e2e2e2;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font: 500 1.18rem/1.2 var(--font-head);
  opacity: 0;
  transform: translateY(10px);
  animation: megaMenuItemIn .45s ease forwards;
  animation-delay: calc(var(--index) * 60ms);
}
.mega-category:hover,
.mega-category:focus-visible { color: var(--gold); outline: none; }
.mega-category span { display: grid; gap: 6px; }
.mega-category small { font-family: var(--font-body); font-size: .62rem; }
.mega-category svg { width: 18px; height: 18px; stroke-width: 1.4; }
.mega-category--link { text-decoration: none; }
.mega-menu__detail { min-width: 0; }
.mega-menu__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid #e2e2e2;
  background: transparent;
  color: #555;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mega-menu__back svg { width: 16px; height: 16px; }
.mega-menu__detail-head { padding: 28px 0 20px; }
.mega-menu__detail-head h3 { margin-top: 8px; color: var(--navy); font: 500 clamp(1.7rem, 3vw, 3rem)/1.1 var(--font-head); }
.mega-menu__links { display: grid; gap: 0; max-width: 500px; }
.mega-menu__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid #e2e2e2;
  color: var(--navy);
  font-size: .92rem;
  opacity: 0;
  transform: translateY(8px);
  animation: megaMenuItemIn .4s ease forwards;
  animation-delay: calc(var(--index) * 60ms);
}
.mega-menu__links a:hover { color: var(--gold); }
.mega-menu__links svg { width: 16px; height: 16px; }
.mega-featured { margin-top: 40px; }
.mega-featured__heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.mega-featured__heading > div { display: flex; gap: 6px; }
.mega-slider-button { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #cfcfcf; background: #fff; color: var(--navy); }
.mega-slider-button:disabled { opacity: .3; cursor: not-allowed; }
.mega-slider-button:not(:disabled):hover { border-color: var(--navy); }
.mega-slider-button svg { width: 16px; height: 16px; }
.mega-featured__track { display: flex; gap: 12px; overflow: hidden; scroll-behavior: smooth; touch-action: pan-y; }
.mega-featured-card { position: relative; flex: 0 0 calc((100% - 12px) / 2); aspect-ratio: 4 / 3; overflow: hidden; background: #f4f4f4; }
.mega-featured-card { display: block; color: inherit; }
.mega-featured-card img { width: 100%; height: 100%; object-fit: cover; }
.mega-featured-card span { position: absolute; right: 14px; bottom: 12px; left: 14px; color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mega-menu__bottom { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid #d9d9d9; }
.mega-menu__bottom a { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mega-menu__bottom a:hover { color: var(--gold); }
.mega-menu__bottom a svg { width: 16px; height: 16px; }
@keyframes megaMenuItemIn { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .mobile-menu-toggle { min-width: 74px; font-size: .64rem; }
  .mega-menu__inner { padding: 24px 18px 20px; }
  .mega-menu__body { display: block; padding: 24px 0 34px; }
  .mega-menu__detail { margin-top: 24px; padding-top: 24px; border-top: 1px solid #d9d9d9; }
  .mega-menu__detail[hidden] { display: none; }
  .mega-menu__bottom { gap: 14px 18px; }
  .mega-featured-card { flex-basis: 78%; }
}

@media (max-width: 600px) {
  .header-inner {
    min-height: 64px;
    gap: 4px;
    padding: 10px 0;
  }
  .mobile-menu-toggle {
    min-width: 58px;
    width: 58px;
    gap: 5px;
    font-size: .56rem;
  }
  .mobile-menu-toggle svg { width: 20px; height: 20px; }
  .logo {
    width: 125px;
    z-index: 1;
  }
  .header-actions {
    position: absolute;
    top: 50%;
    right: 0;
    gap: 4px;
    transform: translateY(-50%);
  }
  .header-actions .icon-btn svg,
  .icon-btn svg {
    width: 18px;
    height: 18px;
  }
  .header-actions .icon-btn { width: 20px; height: 30px; }
}