@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   LOTEN — Premium Fashion Storefront
   Editorial, minimal, spacious, monochrome
   ============================================================ */
:root {
  --ink: #0e0e0e;
  --ink-soft: #2b2b2b;
  --paper: #f6f4ef;
  --paper-2: #eeeae3;
  --white: #ffffff;
  --muted: #8b867d;
  --line: #e8e4dc;
  --line-strong: rgba(14, 14, 14, 0.18);
  --accent: #b9a88e;
  --danger: #a54434;
  --success: #4d6b54;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --px: clamp(22px, 5.5vw, 84px);
  --maxw: 1600px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.01em;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul { list-style: none; }
::selection { background: var(--ink); color: var(--paper); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #d5cfc5; border-radius: 99px; }
::-webkit-scrollbar-track { background: transparent; }

.muted { color: var(--muted); }

/* ============================================================
   MICRO ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-content { animation: fadeUp 1.1s var(--ease) both; }
  .hero-content > * { animation: fadeUp 1s var(--ease) both; }
  .hero-content > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.15s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.25s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.35s; }
  .hero-index { animation: fadeIn 1.4s var(--ease) both; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ============================================================
   ANNOUNCEMENT
   ============================================================ */
.announcement {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 11px var(--px);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
}
.announcement span { color: rgba(246, 244, 239, 0.45); margin: 0 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  background: rgba(246, 244, 239, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 1px 0 var(--line);
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 42px; width: auto; display: block; }
.logo-light img { filter: brightness(0) invert(1); }

.nav { display: flex; gap: clamp(24px, 3vw, 44px); align-items: center; }
.nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 10px 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 1px;
  background: var(--ink);
  transition: right 0.4s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a.active { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 22px; }

.search-form {
  display: flex; align-items: center; position: relative;
  height: 44px;
  padding: 0 5px 0 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.search-form:hover { border-color: var(--line-strong); }
.search-form:focus-within { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(14, 14, 14, 0.06); }
.search-form input {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 13px;
  width: 150px;
  border-radius: 0;
  outline: 0;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: width 0.35s var(--ease);
}
.search-form input::placeholder { color: var(--muted); }
.search-form input:focus { width: 180px; }
.search-form button {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--ink);
  border-radius: 50%;
  background: transparent;
  transition: background 0.25s, color 0.25s;
}
.search-form button:hover { background: var(--ink); color: var(--paper); }

.search-suggestions {
  position: absolute; top: 100%; left: 0; right: 0; margin-top: 12px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(14, 14, 14, 0.09);
  z-index: 100; max-height: 380px; overflow-y: auto;
  display: none;
}
.search-suggestions.open { display: block; }
.search-suggestions a { display: flex; gap: 12px; padding: 12px 14px; align-items: center; border-bottom: 1px solid var(--line); }
.search-suggestions a:last-child { border-bottom: 0; }
.search-suggestions a:hover { background: var(--paper); }
.search-suggestions img { width: 40px; height: 52px; object-fit: cover; }
.search-suggestions .sug-name { font-size: 12.5px; font-weight: 500; }
.search-suggestions .sug-price { font-size: 11.5px; color: var(--muted); }
.search-suggestions .sug-empty { padding: 18px; font-size: 13px; color: var(--muted); text-align: center; }

.cart-link, .account-link, .wish-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--ink-soft);
  border-radius: 50%;
  transition: color 0.25s, background 0.25s;
}
.cart-link:hover, .account-link:hover, .wish-link:hover { color: var(--ink); background: var(--white); }
.cart-link.active { background: var(--ink); color: var(--paper); }
.cart-link.active:hover { background: var(--ink); color: var(--paper); }
.cart-link b, .wish-link b {
  position: absolute;
  top: -2px; right: -2px;
  display: inline-grid;
  place-items: center;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: normal;
  border: 2px solid var(--paper);
}
.cart-link.active b, .cart-link.active:hover b { background: var(--paper); color: var(--ink); border-color: var(--ink); }
.account-link .avatar-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: inline-grid; place-items: center;
  font-size: 12px; font-weight: 600;
}
.icon-btn { font-size: 22px; line-height: 1; padding: 8px; color: var(--ink); }
.menu-btn { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  height: 100vh;
  min-height: 620px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero > img {
  height: 100%; width: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0) 55%),
    linear-gradient(100deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0) 60%);
}
.hero-content {
  position: absolute;
  left: var(--px);
  bottom: clamp(48px, 9vh, 110px);
  max-width: 820px;
  z-index: 2;
}
.eyebrow {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--ink);
}
.eyebrow.light { color: rgba(255, 255, 255, 0.85); }
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(58px, 10.5vw, 150px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 30px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 360;
  color: inherit;
  -webkit-text-stroke: 0;
}
.hero-content > p:not(.eyebrow) {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin: 0 0 38px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.hero-index {
  position: absolute;
  right: var(--px);
  bottom: clamp(48px, 9vh, 110px);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 34px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
  text-align: center;
  min-width: 0;
}
.btn:active { transform: scale(0.99); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: transparent; color: #fff; border-color: #fff; }

.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: transparent; color: var(--ink); border-color: var(--ink); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-sm { padding: 8px 16px; font-size: 10px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 0;
  white-space: nowrap;
}
.marquee div {
  width: max-content;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  animation: move 28s linear infinite;
}
@keyframes move { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(88px, 13vh, 170px) var(--px); max-width: var(--maxw); margin: 0 auto; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.section h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.text-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 7px;
  transition: color 0.3s, border-color 0.3s;
}
.text-link:hover { color: var(--ink); border-color: var(--ink); }

/* ============================================================
   PRODUCT GRID + CARD
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 40px);
  row-gap: clamp(40px, 5vw, 64px);
}
.product-card { position: relative; display: flex; flex-direction: column; }

.product-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
  display: block;
  border-radius: 0;
}
.product-image img {
  height: 100%; width: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), opacity 0.5s var(--ease);
}
.product-image img.img-secondary { position: absolute; inset: 0; opacity: 0; transform: scale(1.04); }
.product-card:hover .product-image img.img-primary.has-secondary { opacity: 0; }
.product-card:hover .product-image img.img-secondary { opacity: 1; transform: scale(1); }
.product-card:hover .product-image img:not(.has-secondary) { transform: scale(1.05); }

.badge {
  position: absolute; left: 14px; top: 14px;
  background: var(--ink); color: var(--paper);
  padding: 8px 11px;
  font-family: var(--font);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 3;
}
.badge.out { background: var(--ink); color: var(--paper); }
.badge.low { background: var(--white); color: var(--ink); }

.discount-badge {
  position: absolute; left: 14px; top: 14px;
  background: var(--danger); color: #fff;
  padding: 8px 11px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  z-index: 3;
}

.wish-btn {
  position: absolute; right: 14px; top: 14px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 16px;
  z-index: 4;
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: transform 0.3s var(--ease), color 0.3s;
}
.wish-btn:hover { transform: scale(1.08); color: var(--danger); }
.wish-btn.active { color: var(--danger); }

.quick-add {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(14, 14, 14, 0.92);
  color: var(--paper);
  padding: 15px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 3;
  backdrop-filter: blur(4px);
}
.quick-add:hover { background: var(--ink); }
.quick-add:disabled { display: none; }
.product-card:hover .quick-add:not(:disabled) { opacity: 1; transform: translateY(0); }

.color-dots { display: flex; gap: 6px; margin-top: 10px; }
.color-dot {
  width: 13px; height: 13px; border-radius: 50%;
  border: 1px solid var(--line-strong);
}

.product-meta { padding-top: 16px; }
.product-meta h3 {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 5px;
  color: var(--ink);
}
.product-meta .cat { font-size: 11.5px; color: var(--muted); margin: 0; letter-spacing: 0.03em; }
.price { font-size: 13.5px; font-weight: 500; letter-spacing: 0.02em; }
.price .old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
  font-size: 12.5px;
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 34px); }
.collection-card {
  position: relative; display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-2);
}
.collection-card img {
  height: 100%; width: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card .col-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0) 55%);
  display: flex; align-items: flex-end;
  padding: clamp(20px, 2.4vw, 32px);
}
.collection-card .col-overlay h3 {
  color: #fff;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.collection-card .col-overlay span {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--font);
}
.collection-card .col-overlay p { color: rgba(255, 255, 255, 0.72); font-size: 12.5px; margin-top: 6px; font-weight: 300; }

/* ============================================================
   SPLIT BANNER
   ============================================================ */
.split-banner {
  background: #0a0a0a;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.split-banner img { height: 100%; object-fit: cover; }
.split-copy {
  padding: clamp(48px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.split-copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 34px;
}
.split-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  line-height: 1.9;
  max-width: 460px;
  margin-bottom: 38px;
  font-size: 15.5px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(56px, 7vw, 90px) var(--px);
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 22px;
}
.benefits article { padding: 8px 0; border: 0; }
.benefits span {
  font-family: var(--font);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.benefits h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  margin: 14px 0 7px;
  letter-spacing: -0.01em;
}
.benefits p { color: var(--muted); font-size: 13px; margin: 0; font-weight: 300; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a0a0a;
  color: #fff;
  padding: clamp(72px, 9vw, 120px) var(--px) 32px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(60px, 8vw, 100px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer p { color: rgba(255, 255, 255, 0.55); line-height: 1.9; font-size: 13px; font-weight: 300; }
.footer h4 {
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 6px 0 26px;
}
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; gap: 14px; }
.footer-main a:not(.logo) {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
  font-weight: 300;
}
.footer-main a:not(.logo):hover { color: #fff; }
.footer-social { display: flex; gap: 22px; margin-top: 24px; }
.footer-social a { font-size: 11px; letter-spacing: 0.16em; color: rgba(255, 255, 255, 0.6); transition: color 0.3s; }
.footer-social a:hover { color: #fff; }
.newsletter p { margin-bottom: 18px; }
.newsletter form { display: flex; border-bottom: 1px solid rgba(255, 255, 255, 0.35); }
.newsletter input {
  width: 100%;
  background: none; border: 0;
  color: #fff;
  padding: 12px 0;
  outline: 0;
  font-size: 13px;
  font-weight: 300;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter button { color: #fff; font-size: 20px; padding-left: 14px; transition: opacity 0.3s; }
.newsletter button:hover { opacity: 0.6; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-bottom a { color: inherit; }
.footer.compact { padding-top: 56px; }

/* ============================================================
   PAGE HERO (kategori vb.)
   ============================================================ */
.page-hero {
  padding: clamp(72px, 11vw, 140px) var(--px) clamp(48px, 7vw, 80px);
  border-bottom: 1px solid var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.page-hero > p:last-child { color: var(--muted); font-size: 15.5px; font-weight: 300; }

/* ============================================================
   SHOP / FİLTRELER
   ============================================================ */
.shop { padding-top: clamp(40px, 5vw, 60px); }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filters button {
  background: none;
  border: 0;
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.filters button:hover { color: var(--ink); }
.filters button.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.shop-toolbar select {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 28px 10px 0;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  cursor: pointer;
  outline: 0;
  color: var(--ink-soft);
  border-radius: 0;
}
.result-count { font-size: 11px; letter-spacing: 0.16em; color: var(--muted); margin: 18px 0 36px; text-transform: uppercase; }

.price-filter { display: flex; gap: 12px; align-items: stretch; }
.price-filter input {
  width: 92px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 4px;
  font-size: 12.5px;
  outline: 0;
  background: transparent;
  border-radius: 0;
}
.price-filter button {
  border: 1px solid var(--line-strong);
  padding: 10px 18px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.price-filter button:hover { background: var(--ink); color: var(--paper); }

.filter-backdrop { position: fixed; inset: 0; background: rgba(10, 10, 10, 0.4); z-index: 70; display: none; }
.filter-backdrop.open { display: block; }
.filter-drawer {
  position: fixed; left: 0; top: 0; bottom: 0;
  width: 360px; max-width: 92vw;
  background: var(--paper);
  z-index: 80;
  transform: translateX(-100%);
  transition: transform 0.45s var(--ease);
  padding: 36px;
  overflow-y: auto;
}
.filter-drawer.open { transform: none; }
.filter-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.filter-drawer-head h3 { font-family: var(--display); font-weight: 400; font-size: 26px; letter-spacing: -0.01em; }
.filter-drawer-close { font-size: 24px; cursor: pointer; color: var(--ink-soft); }
.filter-group { margin-bottom: 30px; }
.filter-group h4 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.filter-group label {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px;
  padding: 7px 0;
  cursor: pointer;
  color: var(--ink-soft);
}
.filter-group input { accent-color: var(--ink); }
.filter-apply-btn {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  padding: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s;
}
.filter-apply-btn:hover { opacity: 0.85; }

/*============================================================
   ÜRÜN DETAY
   ============================================================ */
.product-detail { display: grid; grid-template-columns: 1.15fr 0.85fr; min-height: 720px; }
.detail-gallery { display: flex; flex-direction: column; gap: 2px; }
.detail-gallery-main { position: relative; overflow: hidden; background: var(--paper-2); }
.detail-gallery-main img {
  width: 100%; height: 100%;
  max-height: 760px;
  object-fit: cover;
  cursor: crosshair;
  transition: transform 0.8s var(--ease);
}
.detail-gallery-main img:hover { transform: scale(1.04); }
.detail-thumbs { display: flex; gap: 10px; padding: 10px 0; }
.detail-thumbs img {
  width: 72px; height: 88px; object-fit: cover; cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.detail-thumbs img.active { opacity: 1; }
.detail-thumbs img:hover { opacity: 0.9; }

.detail-info {
  padding: clamp(40px, 5vw, 80px);
  position: sticky; top: 92px;
  height: max-content;
  align-self: start;
}
.detail-info h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 10px 0 20px;
}
.detail-price {
  font-size: 19px;
  font-weight: 500;
  display: flex; gap: 12px; align-items: center;
}
.detail-price .old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
  font-size: 15.5px;
}
.detail-price .discount-pct {
  background: var(--danger);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  padding: 5px 9px;
}
.detail-desc { color: var(--muted); font-weight: 300; line-height: 1.85; margin: 24px 0 30px; }

.color-select { display: flex; gap: 12px; margin: 14px 0 28px; }
.color-select button {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.3s;
}
.color-select button.active {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}
.color-select button[data-color="Siyah"] { background: #111; }
.color-select button[data-color="Beyaz"] { background: #f5f5f5; }
.color-select button[data-color="Gri"] { background: #9a9a9a; }
.color-select button[data-color="Kırmızı"], .color-select button[data-color="Kirmizi"] { background: #b0422e; }
.color-select button[data-color="Lacivert"] { background: #1a2a4a; }

.size-head {
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.size-guide-btn {
  text-decoration: underline;
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.3s;
}
.size-guide-btn:hover { color: var(--ink); }
.sizes { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.sizes button {
  min-width: 52px; height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  background: none;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 0;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.sizes button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sizes button.sold-out { opacity: 0.3; text-decoration: line-through; cursor: not-allowed; }
.sizes button:not(.sold-out):hover { border-color: var(--ink); }

.qty-picker {
  display: flex; align-items: center;
  border: 1px solid var(--line-strong);
  width: max-content;
  margin-bottom: 22px;
}
.qty-picker button { width: 46px; height: 48px; font-size: 17px; transition: background 0.25s; }
.qty-picker button:hover { background: var(--paper-2); }
.qty-picker span { min-width: 46px; text-align: center; font-weight: 400; font-size: 14px; }

.stock-status { font-size: 12px; letter-spacing: 0.06em; margin-bottom: 20px; }
.stock-status.in { color: var(--success); }
.stock-status.low { color: #a06a24; }
.stock-status.out { color: var(--danger); }

.detail-actions { display: flex; gap: 10px; align-items: stretch; }
.detail-actions .add-btn { flex: 1; }
.add-btn {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  padding: 19px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.35s var(--ease);
}
.add-btn:hover { background: var(--ink-soft); }
.add-btn:disabled { background: #b9b5ac; cursor: not-allowed; }
.buy-now { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.buy-now:hover { background: var(--ink); color: var(--paper); }
.wish-detail-btn {
  width: 56px;
  border: 1px solid var(--line-strong);
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink-soft);
  border-radius: 0;
  transition: color 0.3s, border-color 0.3s;
}
.wish-detail-btn:hover, .wish-detail-btn.active { color: var(--danger); border-color: var(--danger); }

.detail-points { margin-top: 38px; }
.point-item { border-bottom: 1px solid var(--line); }
.point-item summary {
  list-style: none;
  padding: 18px 0;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.point-item summary::after { content: "+"; font-size: 20px; font-weight: 300; color: var(--muted); transition: transform 0.3s; }
.point-item[open] summary::after { transform: rotate(45deg); }
.point-item p, .point-item .ship-notes {
  padding: 0 0 20px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}
.ship-notes { display: grid; gap: 10px; }
.ship-notes span { color: var(--muted); }

.size-guide-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
}
.size-guide-modal.open { display: flex; }
.size-guide-box {
  background: var(--white);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
}
.size-guide-box h3 { font-family: var(--display); font-weight: 400; font-size: 26px; margin-bottom: 6px; }
.size-guide-box table { width: 100%; border-collapse: collapse; margin-top: 22px; font-size: 13px; }
.size-guide-box th, .size-guide-box td { border-bottom: 1px solid var(--line); padding: 12px; text-align: center; }
.size-guide-box th { font-weight: 500; letter-spacing: 0.08em; font-size: 11px; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   SEPET
   ============================================================ */
.cart-page { min-height: 65vh; }
.cart-page > h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(50px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.cart-layout { display: grid; grid-template-columns: 1fr 420px; gap: clamp(40px, 6vw, 90px); align-items: start; }
.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:first-child { border-top: 1px solid var(--line); }
.cart-item img { width: 110px; height: 142px; object-fit: cover; }
.cart-item h3 {
  margin: 6px 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.cart-item p { color: var(--muted); font-size: 12px; margin-bottom: 14px; font-weight: 300; }
.qty-row { display: flex; align-items: center; gap: 18px; }
.qty { display: flex; align-items: center; border: 1px solid var(--line-strong); }
.qty button { width: 36px; height: 36px; font-size: 15px; transition: background 0.25s; }
.qty button:hover { background: var(--paper-2); }
.qty span { min-width: 32px; text-align: center; font-weight: 400; }
.remove { text-decoration: underline; color: var(--muted); font-size: 11px; letter-spacing: 0.08em; transition: color 0.3s; }
.remove:hover { color: var(--danger); }

.cart-summary {
  background: var(--white);
  padding: clamp(28px, 3vw, 40px);
  position: sticky;
  top: 120px;
}
.cart-summary h2 { font-family: var(--display); font-weight: 400; font-size: 26px; letter-spacing: -0.01em; margin-bottom: 18px; }
.summary-row {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.summary-row span { color: var(--muted); font-weight: 300; }
.summary-row b { font-weight: 500; }
.summary-total {
  font-size: 20px;
  border: 0;
  margin: 16px 0 24px;
  padding-top: 6px;
  font-weight: 500;
}
.cart-summary .btn { width: 100%; margin-bottom: 10px; }

.coupon-box { margin: 12px 0 4px; display: flex; gap: 0; border: 1px solid var(--line-strong); }
.coupon-box input {
  flex: 1;
  border: 0;
  padding: 13px 14px;
  font-size: 12.5px;
  outline: 0;
  background: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.coupon-box button {
  padding: 0 20px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-left: 1px solid var(--line-strong);
  transition: background 0.3s, color 0.3s;
}
.coupon-box button:hover { background: var(--ink); color: var(--paper); }
.coupon-msg { font-size: 11px; margin: 8px 0 14px; }
.coupon-msg.ok { color: var(--success); }
.coupon-msg.err { color: var(--danger); }

.empty-cart { text-align: center; padding: 90px 20px; }
.empty-cart h2 { font-family: var(--display); font-weight: 400; font-size: 34px; letter-spacing: -0.01em; margin-bottom: 10px; }
.empty-cart p { color: var(--muted); margin-bottom: 28px; font-weight: 300; }
.kargo-note {
  background: var(--paper-2);
  padding: 14px 18px;
  font-size: 12.5px;
  margin-top: 22px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 300;
}
.secure-note {
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-page { min-height: 65vh; }
.checkout-page h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(50px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 42px;
}
.checkout-steps { display: flex; gap: 8px; margin-bottom: 42px; flex-wrap: wrap; }
.checkout-steps .step {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.checkout-steps .step.active { color: var(--ink); font-weight: 500; }
.checkout-steps .step.done { color: var(--success); }
.checkout-steps .step::after { content: "—"; color: var(--line-strong); margin-left: 10px; }
.checkout-steps .step:last-child::after { content: ""; }

.checkout-layout { display: grid; grid-template-columns: 1fr 420px; gap: clamp(40px, 6vw, 90px); align-items: start; }
.checkout-form { display: grid; gap: 24px; }
.checkout-section { background: var(--white); padding: clamp(26px, 3vw, 40px); display: grid; gap: 16px; }
.checkout-section h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.checkout-section label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: grid; gap: 7px;
}
.checkout-section input, .checkout-section select {
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 2px;
  font-size: 14.5px;
  outline: 0;
  background: transparent;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.3s;
  font-weight: 300;
}
.checkout-section input:focus, .checkout-section select:focus { border-color: var(--ink); }

.saved-addresses { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.saved-address {
  border: 1px solid var(--line);
  padding: 16px;
  cursor: pointer;
  font-size: 13px;
  background: none;
  transition: border-color 0.3s, background 0.3s;
  font-weight: 300;
}
.saved-address:hover { border-color: var(--ink); }
.saved-address.selected { border-color: var(--ink); background: var(--paper); }
.saved-address strong { display: block; margin-bottom: 6px; font-weight: 500; }

.shipping-options { display: grid; gap: 10px; }
.shipping-option {
  border: 1px solid var(--line);
  padding: 16px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color 0.3s, background 0.3s;
}
.shipping-option:hover { border-color: var(--ink); }
.shipping-option.selected { border-color: var(--ink); background: var(--paper); }
.shipping-option label {
  display: flex; gap: 10px; align-items: center;
  cursor: pointer;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 13.5px;
  color: var(--ink);
}
.shipping-option .ship-price { font-weight: 500; }

.payment-methods { display: grid; gap: 10px; }
.payment-methods label {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  cursor: pointer;
  padding: 14px 16px;
  border: 1px solid var(--line);
  transition: border-color 0.3s, background 0.3s;
}
.payment-methods label:hover { border-color: var(--ink); }
.payment-methods input { accent-color: var(--ink); }

.checkout-actions { display: flex; gap: 14px; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.checkout-actions .btn { min-width: 0; }

/* ============================================================
   SUCCESS
   ============================================================ */
.success-page { min-height: 60vh; padding-bottom: 80px; }
.success-page #success-content { max-width: 680px; margin: 0 auto; }
.success-box { text-align: center; padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 56px); }
.success-icon {
  width: 72px; height: 72px;
  background: var(--ink); color: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 30px;
  margin: 0 auto 26px;
}
.success-box h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.success-sub { color: var(--muted); margin-bottom: 34px; font-weight: 300; }
.success-order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin-bottom: 30px;
}
.success-order > div { background: var(--white); padding: 22px; text-align: left; }
.success-order span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.success-order b { font-size: 15px; font-weight: 500; }
.success-items { text-align: left; margin-bottom: 30px; }
.success-items h4 { font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 10px; color: var(--muted); }
.success-items .summary-row { font-size: 13.5px; }
.success-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.success-note { font-size: 12px; color: var(--muted); font-weight: 300; }

/* ============================================================
   ARAMA
   ============================================================ */
.search-page { max-width: var(--maxw); margin: 0 auto; }
.search-head { text-align: center; margin-bottom: clamp(40px, 6vw, 60px); }
.search-head h1 { font-family: var(--display); font-weight: 400; font-size: clamp(40px, 6vw, 72px); letter-spacing: -0.02em; margin: 10px 0 18px; }
.search-stats { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   HESAP
   ============================================================ */
.account-page { max-width: 1150px; margin: 0 auto; }
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(30px, 4vw, 60px); min-height: 60vh; }
.account-nav { display: flex; flex-direction: column; gap: 2px; }
.account-nav button, .account-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-align: left;
  transition: color 0.3s, background 0.3s;
}
.account-nav button:hover, .account-nav a:hover { color: var(--ink); background: var(--paper-2); }
.account-nav button.active, .account-nav a.active { color: var(--paper); background: var(--ink); }
.account-panel { background: var(--white); padding: clamp(26px, 3vw, 44px); min-height: 420px; }
.account-panel h2 { font-family: var(--display); font-weight: 400; font-size: 30px; letter-spacing: -0.01em; margin-bottom: 26px; }

.auth-box { max-width: 440px; margin: 40px auto 0; }
.auth-box h1 { font-family: var(--display); font-weight: 400; font-size: 44px; letter-spacing: -0.02em; margin-bottom: 10px; }
.auth-sub { color: var(--muted); margin-bottom: 30px; font-size: 14px; font-weight: 300; }
.auth-tabs { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.auth-tabs button {
  flex: 1;
  padding: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.auth-tabs button.active { color: var(--ink); border-bottom-color: var(--ink); }
.auth-form { display: grid; gap: 18px; }
.auth-form label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: grid; gap: 7px;
}
.auth-form input {
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 2px;
  font-size: 14.5px;
  outline: 0;
  background: none;
  border-radius: 0;
  font-weight: 300;
  transition: border-color 0.3s;
}
.auth-form input:focus { border-color: var(--ink); }
.auth-error { font-size: 12px; color: var(--danger); min-height: 18px; }
.auth-link-btn {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
  text-decoration: underline;
  transition: color 0.3s;
}
.auth-link-btn:hover { color: var(--ink); }

.order-card { border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.order-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  flex-wrap: wrap; gap: 8px;
}
.order-card-head .order-no { font-weight: 500; font-size: 13.5px; letter-spacing: 0.04em; }
.order-card-head .order-date { color: var(--muted); font-size: 11.5px; }
.order-card-body {
  padding: 14px 0 18px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.order-card-body .order-items { font-size: 12.5px; color: var(--muted); font-weight: 300; }
.order-card-body .order-total { font-weight: 500; font-size: 15px; }

.address-list { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.address-card { border: 1px solid var(--line); padding: 18px; font-size: 13.5px; }
.address-card .addr-title { font-weight: 500; margin-bottom: 8px; }
.address-card .addr-line { color: var(--muted); line-height: 1.7; font-weight: 300; }
.address-actions { display: flex; gap: 10px; margin-top: 12px; }

/* ============================================================
   FAVORİLER
   ============================================================ */
.favorites-page { max-width: var(--maxw); margin: 0 auto; }
.favorites-count { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }

/* ============================================================
   HUKUKİ / STATİK
   ============================================================ */
.legal-page { max-width: 780px; margin: 0 auto; }
.legal-page h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 30px;
}
.legal-updated { color: var(--muted); font-size: 12px; margin-bottom: 34px; font-weight: 300; }
.legal-content h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.legal-content h3 { font-size: 16px; font-weight: 500; margin: 26px 0 10px; }
.legal-content p { margin-bottom: 16px; color: var(--ink-soft); line-height: 1.85; font-weight: 300; }
.legal-content ul { list-style: disc; margin: 0 0 18px 24px; }
.legal-content li { margin-bottom: 9px; line-height: 1.75; color: var(--ink-soft); font-weight: 300; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(40px, 7vw, 100px); padding-top: 20px; }
.contact-info > div { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-info span, .contact-form label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info a, .contact-info p { display: block; font-size: 17px; margin: 10px 0; font-weight: 300; }
.contact-form { display: grid; gap: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-form input, .contact-form textarea {
  display: block; width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  padding: 14px 0;
  outline: 0;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 300;
  border-radius: 0;
  transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { width: max-content; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero { height: 88vh; min-height: 560px; position: relative; color: #fff; }
.about-hero img { height: 100%; width: 100%; object-fit: cover; filter: brightness(0.6); }
.about-hero > div { position: absolute; left: var(--px); bottom: clamp(48px, 8vw, 90px); }
.about-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(54px, 9vw, 120px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0;
}
.about-hero h1 em { font-style: italic; font-weight: 360; }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 120px); }
.story > div:last-child { font-size: 16.5px; line-height: 1.9; color: var(--ink-soft); font-weight: 300; }
.story > div:last-child p { margin-bottom: 18px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); padding: clamp(60px, 8vw, 100px) var(--px); max-width: var(--maxw); margin: 0 auto; gap: 22px; }
.values article { padding: 0 2vw; border: 0; }
.values article:first-child { padding-left: 0; }
.values h3 { font-family: var(--display); font-weight: 400; font-size: 22px; margin: 14px 0 8px; }
.values p, .values b { color: var(--muted); font-size: 13px; font-weight: 300; }
.values b { font-size: 10.5px; letter-spacing: 0.22em; }
.about-image { height: 620px; position: relative; }
.about-image img { height: 100%; width: 100%; object-fit: cover; filter: brightness(0.75); }
.about-image span {
  position: absolute; right: 5vw; bottom: 5vw;
  color: #fff; text-align: right;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 900px; margin: auto; }
.faq h2 { font-family: var(--display); font-weight: 400; font-size: clamp(34px, 4.6vw, 56px); letter-spacing: -0.02em; margin-bottom: 36px; }
.faq details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none;
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  display: flex; justify-content: space-between;
  cursor: pointer;
  gap: 20px;
}
.faq summary::after { content: "+"; font-size: 22px; font-weight: 300; color: var(--muted); transition: transform 0.3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin-top: 14px; line-height: 1.8; font-weight: 300; }

/* ============================================================
   LOADING / EMPTY / ERROR STATES
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, #e9e5dd 25%, #f4f1eb 50%, #e9e5dd 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card { aspect-ratio: 3 / 4; }
.skeleton-text { height: 13px; margin-top: 14px; width: 78%; }
.skeleton-text.short { width: 48%; }

.empty-state, .error-state { text-align: center; padding: 90px 20px; }
.empty-state .empty-icon, .error-state .err-icon {
  font-size: 38px;
  margin-bottom: 18px;
  opacity: 0.45;
}
.empty-state h2, .error-state h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.empty-state p, .error-state p { color: var(--muted); margin-bottom: 26px; font-weight: 300; }

/* ============================================================
   COOKIE + TOAST + ADMIN
   ============================================================ */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px;
  background: #0a0a0a; color: #fff;
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; z-index: 300;
  flex-wrap: wrap;
  font-size: 13px;
  max-width: 920px;
  margin: 0 auto;
}
.cookie-banner p { line-height: 1.6; max-width: 640px; font-weight: 300; }
.cookie-banner a { text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; }
.cookie-actions button {
  padding: 12px 22px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
#cookie-accept { background: #fff; color: #111; }
#cookie-accept:hover { background: transparent; color: #fff; outline: 1px solid rgba(255,255,255,0.5); }
#cookie-decline { background: transparent; color: rgba(255,255,255,0.6); outline: 1px solid rgba(255,255,255,0.3); }
#cookie-decline:hover { color: #fff; outline-color: #fff; }

.admin-link {
  position: fixed; left: 20px; bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink); color: var(--paper);
  padding: 11px 16px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 150;
  opacity: 0.5;
  transition: opacity 0.3s, box-shadow 0.3s;
}
.admin-link:hover { opacity: 1; box-shadow: 0 8px 24px rgba(14, 14, 14, 0.18); }

.toast {
  position: fixed; right: 26px; bottom: 26px;
  background: var(--ink); color: var(--paper);
  padding: 16px 24px;
  z-index: 500;
  transform: translateY(130px);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  max-width: 360px;
}
.toast.show { transform: none; opacity: 1; }
.toast.error { background: var(--danger); color: #fff; }

.related { border-top: 1px solid var(--line); }

/* ===== Logonun ürün görsellerinde düzgün görünmesi ===== */
.product-image img[src*="logo.png"],
.product-image img.img-secondary[src*="logo.png"] {
  object-fit: contain;
  padding: clamp(24px, 3vw, 44px);
  background: var(--paper-2);
}
.detail-gallery-main img[src*="logo.png"] {
  object-fit: contain;
  padding: clamp(40px, 6vw, 90px);
  background: var(--paper-2);
  cursor: default;
}
.detail-thumbs img[src*="logo.png"] {
  object-fit: contain;
  background: var(--paper-2);
  padding: 6px;
}
.cart-item img[src*="logo.png"] {
  object-fit: contain;
  background: var(--paper-2);
  padding: 12px;
}
.search-suggestions img[src*="logo.png"] {
  object-fit: contain;
  background: var(--paper-2);
  padding: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .site-header { height: 72px; }
  .menu-btn { display: block; }
  .nav {
    position: fixed; left: 0; right: 0; top: 72px;
    background: var(--paper);
    padding: 34px var(--px);
    display: none;
    flex-direction: column;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    z-index: 55;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 13px; padding: 12px 0; }
  .hero { height: 88vh; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .split-banner { grid-template-columns: 1fr; }
  .split-copy { min-height: 460px; }
  .split-banner img { height: 460px; }
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .product-detail { grid-template-columns: 1fr; }
  .detail-info { position: static; padding: 44px var(--px); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .success-box { padding: 40px 22px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .story { grid-template-columns: 1fr; gap: 30px; }
  .account-layout { grid-template-columns: 1fr; }
  .account-nav { flex-direction: row; flex-wrap: wrap; }
  .address-list { grid-template-columns: 1fr; }
  .saved-addresses { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .announcement { font-size: 9px; padding: 10px 16px; letter-spacing: 0.2em; }
  .announcement span { margin: 0 8px; }
  .site-header { padding: 0 20px; }
  .logo img { height: 34px; }
  .search-form { height: 40px; padding: 0 4px; background: transparent; border-color: transparent; }
  .search-form:focus-within { background: var(--white); border-color: var(--line); padding-left: 12px; }
  .search-form input { width: 0; padding: 0; opacity: 0; }
  .search-form input:focus { width: 130px; padding: 0; opacity: 1; }
  .cart-link, .account-link, .wish-link { width: 40px; height: 40px; }
  .header-actions { gap: 10px; }
  .section { padding: 72px 20px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 36px; }
  .hero { min-height: 560px; }
  .hero-content { left: 20px; right: 20px; bottom: 48px; }
  .hero h1 { font-size: 50px; }
  .hero-content > p:not(.eyebrow) { font-size: 15px; margin-bottom: 30px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-cta .btn { width: 100%; }
  .hero-index { display: none; }
  .product-grid { gap: 14px; row-gap: 36px; }
  .product-meta h3 { font-size: 12.5px; }
  .quick-add { opacity: 1; transform: none; padding: 12px; }
  .wish-btn { width: 34px; height: 34px; }
  .collection-grid { grid-template-columns: 1fr; }
  .split-copy { min-height: 420px; padding: 56px 24px; }
  .split-copy h2 { font-size: 46px; }
  .benefits { grid-template-columns: 1fr; padding: 30px 20px; gap: 24px; }
  .footer { padding: 60px 22px 26px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding-bottom: 48px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .page-hero { padding: 64px 20px 44px; }
  .page-hero h1 { font-size: 50px; }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .shop-toolbar select { width: 100%; }
  .filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .filters button { white-space: nowrap; flex-shrink: 0; }
  .price-filter { width: 100%; }
  .price-filter input { flex: 1; }
  .detail-gallery-main img { max-height: 60vh; }
  .detail-info { padding: 36px 20px; }
  .detail-info h1 { font-size: 36px; }
  .sizes button { min-width: 46px; height: 44px; }
  .cart-page > h1, .checkout-page h1 { font-size: 46px; }
  .cart-item { grid-template-columns: 84px 1fr; gap: 14px; }
  .cart-item img { width: 84px; height: 108px; }
  .cart-item > strong { grid-column: 2; }
  .checkout-actions { flex-direction: column-reverse; }
  .checkout-actions .btn { width: 100%; }
  .success-order { grid-template-columns: 1fr; }
  .success-box h2 { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .about-hero { height: 72vh; }
  .about-hero h1 { font-size: 48px; }
  .story > div:last-child { font-size: 15px; }
  .values { grid-template-columns: 1fr; padding: 30px 20px; gap: 28px; }
  .values article { padding: 0; }
  .about-image { height: 440px; }
  .account-panel { padding: 22px; }
  .account-panel h2 { font-size: 24px; }
  .order-card-body { flex-direction: column; align-items: flex-start; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 20px; }
  .toast { right: 14px; bottom: 14px; left: 14px; max-width: none; }
}

/* ============================================================
   PAYTR GÜVENLİ ÖDEME MODALI
   ============================================================ */
.paytr-notice {
  font-size: 13px;
  color: var(--muted);
  background: #f6f8fb;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 12px;
  line-height: 1.5;
}
.paytr-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.paytr-modal-box {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}
.paytr-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #e6e8ec;
  font-weight: 600;
  font-size: 14px;
  color: #111;
}
.paytr-close {
  border: 0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 4px;
}
.paytr-close:hover { color: #111; }
.paytr-modal-box iframe {
  width: 100%;
  height: 640px;
  border: 0;
  flex: 1;
  min-height: 420px;
}
@media (max-width: 600px) {
  .paytr-modal { padding: 0; align-items: flex-end; }
  .paytr-modal-box { max-width: none; border-radius: 12px 12px 0 0; max-height: 96vh; }
  .paytr-modal-box iframe { height: 78vh; }
}
