/* Zyó storefront — Shrine v1.3.0 görünümünün yeniden inşası (lisanslı tema dosyası kopyalanmadı) */

@font-face {
  font-family: "DM Sans";
  src: url("/assets/theme/dmsans_n4.ec80bd4dd7e1a334c969c265873491ae56018d72.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/theme/dmsans_n7.97e21d81502002291ea1de8aefb79170c6946ce5.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/theme/dmsans_i4.b8fe05e69ee95d5a53155c346957d8cbf5081c1a.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya Sans";
  src: url("/assets/theme/alegreyasans_n4.e332e76eefe545db0f9180cd382ce06e2f88055f.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-2: #f3f3f3;
  --ink: #121212;
  --accent: #000000;
  --btn-text: #fdfbf7;
  --grad: linear-gradient(54deg, #dd1d99 14%, #690e0e 85%);
  --card-radius: 1.2rem;
  --btn-radius: 14px;
  --page-width: 1200px;
  --shadow: 1rem 1rem 3.5rem rgba(18, 18, 18, 0.05);
  --body: "DM Sans", sans-serif;
  --heading: "Alegreya Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--heading); font-weight: 400; letter-spacing: 0.02em; }
a { color: inherit; }
img { max-width: 100%; display: block; }

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

/* ---------- kayan duyuru şeridi ---------- */
.ticker {
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  padding: 9px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: horTicker 50s linear infinite;
}
.ticker span {
  padding: 0 3.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.ticker span b { font-weight: 700; }
@keyframes horTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (min-width: 750px) { .ticker { padding: 12px 0; } }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}
.header-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 8px 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-logo img { max-width: 110px; height: auto; }
.header-menu { display: none; flex: 1; gap: 1.6rem; list-style: none; }
.header-menu a {
  text-decoration: none;
  font-size: 0.95rem;
  color: rgba(18, 18, 18, 0.75);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.header-menu a:hover, .header-menu a.active { color: var(--ink); border-color: var(--ink); }
.header-icons { margin-left: auto; display: flex; align-items: center; gap: 1.1rem; }
.header-search { display: none; }
.header-search input {
  font-family: var(--body);
  font-size: 0.9rem;
  padding: 7px 14px;
  border: 1px solid rgba(18, 18, 18, 0.2);
  border-radius: 40px;
  width: 150px;
  background: var(--bg-2);
}
.header-search input:focus { outline: 2px solid var(--ink); outline-offset: 1px; background: #fff; }
@media (min-width: 990px) { .header-search { display: block; } }
.header-icons a { display: flex; color: var(--ink); position: relative; }
.header-icons svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.menu-toggle { background: none; border: 0; display: flex; cursor: pointer; }
.menu-toggle svg { width: 26px; height: 26px; stroke: var(--ink); stroke-width: 1.8; fill: none; stroke-linecap: round; }
@media (min-width: 990px) {
  .header-inner { padding: 16px 1.5rem; }
  .header-menu { display: flex; }
  .menu-toggle { display: none; }
}

/* mobil menü */
.mobile-menu { display: none; border-top: 1px solid rgba(18, 18, 18, 0.08); background: var(--bg); }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 1.5rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
  font-size: 1rem;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 80vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.3); z-index: 2; }
.hero-content { position: relative; z-index: 3; color: #fff; padding: 0 50px; max-width: 720px; }
.hero-content h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 10px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 26px; opacity: 0.95; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s, background 0.2s, color 0.2s;
  border: 0;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-white { background: #fff; color: #111; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-dark { background: var(--accent); color: var(--btn-text); border-radius: var(--btn-radius); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); border-radius: var(--btn-radius); }
.btn-block { display: block; width: 100%; text-align: center; }
@media (max-width: 749px) {
  .hero { align-items: flex-end; }
  .hero::after { background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1)); }
  .hero-content { padding: 0 24px 48px; text-align: center; margin: 0 auto; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-buttons { justify-content: center; }
}

/* ---------- bölümler ---------- */
.section { padding: clamp(40px, 7vh, 72px) 0; }
.section-title { text-align: center; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: clamp(24px, 4vh, 40px); }

/* kategori kartları */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 990px) { .cat-grid { grid-template-columns: repeat(5, 1fr); gap: 40px 24px; } }
.cat-card { text-decoration: none; text-align: center; }
.cat-card .cat-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-2);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.cat-card:hover img { transform: scale(1.05); }
.cat-card h3 { margin-top: 14px; font-size: 1.15rem; }
.cat-card h3::after { content: " →"; opacity: 0; transition: opacity 0.2s; }
.cat-card:hover h3::after { opacity: 1; }

/* ürün kartları */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 990px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.product-card {
  text-decoration: none;
  text-align: center;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 1rem 1.4rem 4rem rgba(18, 18, 18, 0.1); }
.pc-img { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #fff; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; }
.pc-img .img-hover { position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s; }
.product-card:hover .img-hover { opacity: 1; }
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--grad);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0.6rem;
  letter-spacing: 0.03em;
  z-index: 2;
}
.pc-body { padding: 14px 14px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pc-title { font-size: 0.98rem; line-height: 1.35; font-weight: 500; }
.pc-price { margin-top: auto; font-size: 1.02rem; font-weight: 700; }
.pc-price s { color: rgba(18, 18, 18, 0.45); font-weight: 400; margin-right: 8px; }

/* image-with-text (marka hikayesi) */
.story { display: grid; gap: 28px; align-items: center; }
@media (min-width: 990px) { .story { grid-template-columns: 1fr 1fr; gap: 60px; } }
.story img { border-radius: 12px; box-shadow: var(--shadow); }
.story h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.story p { color: rgba(18, 18, 18, 0.75); margin-bottom: 22px; }

/* neden zyó ikon barı */
.icon-bar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: center; }
@media (min-width: 990px) { .icon-bar { grid-template-columns: repeat(4, 1fr); } }
.icon-bar .ib svg { width: 34px; height: 34px; margin: 0 auto 12px; stroke: var(--ink); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-bar h3 { font-size: 1.02rem; margin-bottom: 4px; font-family: var(--body); font-weight: 700; }
.icon-bar p { font-size: 0.9rem; color: rgba(18, 18, 18, 0.65); }

/* ---------- koleksiyon sayfası ---------- */
.collection-head { text-align: center; padding: clamp(28px, 5vh, 48px) 0 0; }
.collection-head h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }

/* ---------- ürün sayfası ---------- */
.product-page { display: grid; gap: 32px; padding-top: clamp(24px, 4vh, 44px); }
@media (min-width: 990px) { .product-page { grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; } }
.gallery-main {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.8;
}
.gallery-thumbs img.sel { border-color: var(--ink); opacity: 1; }
.pp-info h1 { font-size: clamp(1.5rem, 2.6vw, 2rem); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.pp-price { font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.pp-price s { color: rgba(18, 18, 18, 0.4); font-weight: 400; font-size: 1.1rem; margin-right: 10px; }
.pp-tax { font-size: 0.85rem; color: rgba(18, 18, 18, 0.55); margin-bottom: 22px; }
.qty-row { display: flex; gap: 14px; align-items: stretch; margin-bottom: 14px; }
.qty-box { display: flex; border: 1px solid rgba(18, 18, 18, 0.55); border-radius: 40px; overflow: hidden; }
.qty-box button { width: 42px; border: 0; background: none; font-size: 1.2rem; cursor: pointer; }
.qty-box input { width: 44px; border: 0; text-align: center; font-size: 1rem; font-family: var(--body); }
.qty-box input:focus { outline: none; }
.atc { flex: 1; }
.pp-badges { display: flex; gap: 8px 20px; flex-wrap: wrap; margin: 20px 0; font-size: 0.9rem; color: rgba(18, 18, 18, 0.7); }
.pp-badges span::before { content: "✓ "; font-weight: 700; color: var(--ink); }
.pp-promo {
  background: var(--grad);
  color: #fff;
  border-radius: 0.6rem;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 18px;
}
.pp-desc { margin-top: 16px; }
.pp-desc img { border-radius: 12px; }

/* ---------- sepet ---------- */
.cart-page { max-width: 860px; margin: 0 auto; padding-top: clamp(24px, 4vh, 44px); }
.cart-page h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); text-align: center; margin-bottom: 30px; }
.cart-line {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}
.cart-line img { width: 84px; height: 105px; object-fit: cover; border-radius: 8px; }
.cart-line .cl-title { font-weight: 500; text-decoration: none; }
.cart-line .cl-unit { font-size: 0.9rem; color: rgba(18, 18, 18, 0.6); }
.cl-right { text-align: right; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.cl-remove { background: none; border: 0; color: rgba(18, 18, 18, 0.5); cursor: pointer; font-size: 0.85rem; text-decoration: underline; }
.cart-total { text-align: right; padding: 22px 0; font-size: 1.2rem; }
.cart-total b { font-size: 1.4rem; }
.cart-note { text-align: right; font-size: 0.88rem; color: rgba(18, 18, 18, 0.6); margin-bottom: 18px; }
.cart-actions { display: flex; justify-content: flex-end; gap: 14px; flex-wrap: wrap; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty p { margin-bottom: 22px; color: rgba(18, 18, 18, 0.65); }

/* ---------- formlar / checkout / hesap ---------- */
.form-error {
  background: #fdecec;
  color: #8a1f1f;
  border: 1px solid #f2c2c2;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; font-weight: 500; }
.form-grid .span2 { grid-column: span 2; }
.form-grid input, .form-grid textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 11px 14px;
  border: 1px solid rgba(18, 18, 18, 0.55);
  border-radius: 6px;
  background: #fff;
}
.form-grid input:focus, .form-grid textarea:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; margin: 10px 0; cursor: pointer; }
.check input { margin-top: 3px; }
.check.provider {
  border: 1px solid rgba(18, 18, 18, 0.3);
  border-radius: var(--btn-radius);
  padding: 13px 16px;
  font-weight: 500;
}
.checkout-page { padding-top: clamp(24px, 4vh, 44px); }
.checkout-page h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 24px; }
.checkout-grid { display: grid; gap: 32px; align-items: start; }
@media (min-width: 990px) { .checkout-grid { grid-template-columns: 1.15fr 0.85fr; gap: 56px; } }
.co-form h2 { font-size: 1.25rem; margin: 26px 0 14px; }
.co-form h2:first-child { margin-top: 0; }
.co-hint { font-size: 0.88rem; color: rgba(18, 18, 18, 0.6); margin: 10px 0; }
.co-summary {
  background: var(--bg-2);
  border-radius: var(--card-radius);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.co-summary h2 { font-size: 1.2rem; margin-bottom: 16px; }
.cos-line {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 0.92rem;
  padding: 8px 0;
}
.cos-line img { width: 46px; height: 57px; object-fit: cover; border-radius: 6px; }
.cos-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.97rem; }
.cos-discount { color: #0a7a3d; font-weight: 600; }
.cos-total { border-top: 1px solid rgba(18, 18, 18, 0.15); margin-top: 8px; padding-top: 12px; font-size: 1.15rem; font-weight: 700; }
.co-summary .btn { margin-top: 16px; }

.auth-page { max-width: 560px; margin: 0 auto; padding-top: clamp(28px, 5vh, 52px); }
.auth-tabs { display: flex; gap: 6px; margin-bottom: 22px; border-bottom: 1px solid rgba(18, 18, 18, 0.12); }
.auth-tabs a {
  text-decoration: none;
  padding: 10px 20px;
  font-weight: 500;
  color: rgba(18, 18, 18, 0.55);
  border-bottom: 2px solid transparent;
}
.auth-tabs a.active { color: var(--ink); border-color: var(--ink); }
.account-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.account-head h1 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.order-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}
.order-status {
  background: var(--bg-2);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}
.success-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.order-summary-mini { max-width: 420px; margin: 0 auto; text-align: left; background: var(--bg-2); border-radius: var(--card-radius); padding: 20px 24px; }

/* ---------- statik sayfa ---------- */
.static-page { max-width: 780px; margin: 0 auto; padding: clamp(28px, 5vh, 52px) 0; }
.static-page h1 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 24px; }
.static-page pre {
  white-space: pre-wrap;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(18, 18, 18, 0.85);
}

/* ---------- footer ---------- */
.site-footer { background: var(--bg-2); margin-top: clamp(40px, 7vh, 72px); }
.footer-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(36px, 6vh, 56px) 1.5rem 24px;
  display: grid;
  gap: 32px;
}
@media (min-width: 990px) { .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; gap: 60px; } }
.footer-inner h3 { font-family: var(--body); font-weight: 700; font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 0.02em; }
.footer-inner ul { list-style: none; display: grid; gap: 8px; }
.footer-inner a { text-decoration: none; font-size: 0.93rem; color: rgba(18, 18, 18, 0.7); }
.footer-inner a:hover { color: var(--ink); text-decoration: underline; }
.footer-brand img { max-width: 96px; margin-bottom: 12px; }
.footer-brand p { font-size: 0.92rem; color: rgba(18, 18, 18, 0.65); max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(18, 18, 18, 0.1);
  padding: 18px 1.5rem 26px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(18, 18, 18, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .btn, .product-card, .cat-card img { transition: none; }
}
