/* ============================================================
   Zeina Collection — DESIGN 5 "FRESH COMMERCE"
   Clean modern Turkish scarf e-commerce (freshscarfs-inspired)
   Scoped under .v5
   ============================================================ */

.v5 {
  --bg: #ffffff;
  --soft: #f6f7f7;
  --ink: #1d2321;
  --muted: #6b7570;
  --line: #e7e9e8;
  /* Vurgu rengi: bordo / şarap — zengin, asil, premium */
  --teal: #7c2b39;
  --teal-dark: #5f202b;
  --teal-soft: #f4e6e8;
  --amber: #c8791d;
  --red: #b23a4a;

  --v5-sans: var(--font-v5-sans), system-ui, sans-serif;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--v5-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
.v5 *,
.v5 *::before,
.v5 *::after {
  box-sizing: border-box;
}
.v5 a {
  color: inherit;
  text-decoration: none;
}
.v5-wrap {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(0.9rem, 2.5vw, 2rem);
}

/* ---- Promo bar ---- */
.v5-promo {
  background: var(--teal);
  color: #fff;
}
.v5-promo-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  height: 38px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
.v5-promo-phone {
  display: none;
  opacity: 0.9;
  font-weight: 500;
}
@media (min-width: 760px) {
  .v5-promo-phone {
    display: inline;
  }
}

/* ---- Header ---- */
.v5-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.v5-header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.v5-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v5-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.v5-logo b {
  color: var(--teal);
}

/* Hamburger (mobile only) */
.v5-burger {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-left: -8px;
  border-radius: 10px;
  color: var(--ink);
  transition: background 0.2s ease;
}
.v5-burger:hover {
  background: var(--soft);
}
@media (min-width: 940px) {
  .v5-burger {
    display: none;
  }
}

/* Mobile drawer */
.v5-drawer-root {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}
.v5-drawer-root.is-open {
  pointer-events: auto;
}
.v5-drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 16, 0.42);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.v5-drawer-root.is-open .v5-drawer-scrim {
  opacity: 1;
}
.v5-drawer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(320px, 84vw);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.16);
}
.v5-drawer-root.is-open .v5-drawer {
  transform: translateX(0);
}
.v5-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}
.v5-x {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--ink);
}
.v5-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.4rem;
}
.v5-drawer-nav a {
  padding: 0.95rem 0.9rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.v5-drawer-nav a:hover {
  background: var(--soft);
  color: var(--teal);
}
.v5-drawer-nav a.hot {
  color: var(--red);
}
.v5-drawer-sec {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 0.6rem 0.4rem;
  display: flex;
  flex-direction: column;
}
.v5-drawer-sec a {
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-radius: 10px;
}
.v5-drawer-sec a:hover {
  background: var(--soft);
  color: var(--teal);
}
.v5-drawer-foot {
  padding: 0.9rem 1.3rem 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.v5-nav {
  display: none;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.v5-nav a {
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.2s ease;
}
.v5-nav a:hover {
  color: var(--teal);
}
.v5-nav a.hot {
  color: var(--red);
}
.v5-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v5-iconbtn {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.v5-iconbtn:hover {
  background: var(--soft);
  color: var(--teal);
}
.v5-iconbtn .dot {
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
@media (min-width: 940px) {
  .v5-nav {
    display: flex;
  }
}

/* ---- Countdown campaign banner ---- */
.v5-cd {
  background: linear-gradient(100deg, #35141b 0%, #7c2b39 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.v5-cd-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-block: 0.9rem;
  text-align: center;
}
.v5-cd-title {
  font-weight: 700;
  font-size: 0.98rem;
}
.v5-cd-title span {
  color: #ffd9a8;
}
.v5-cd-timer {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.v5-cd-box {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  min-width: 46px;
  padding: 0.35rem 0.4rem;
  text-align: center;
  line-height: 1;
}
.v5-cd-box b {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.v5-cd-box small {
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.v5-cd-sep {
  font-weight: 800;
  opacity: 0.6;
}
.v5-cd-cta {
  background: #933243;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.v5-cd-cta:hover {
  transform: translateY(-1px);
}

/* ---- Category strip ---- */
.v5-cats {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.v5-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.v5-cat {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
}
.v5-cat > svg {
  height: 100%;
  width: 100%;
  transition: transform 0.6s ease;
}
.v5-cat:hover > svg {
  transform: scale(1.06);
}
.v5-cat-label {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
@media (max-width: 640px) {
  .v5-cat-label {
    font-size: 0.78rem;
    padding: 0.35rem 0.7rem;
  }
}

/* ---- Section head + toolbar ---- */
.v5-sechead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
  border-top: 1px solid var(--line);
}
.v5-sechead h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.v5-sechead .count {
  color: var(--muted);
  font-size: 0.85rem;
  margin-left: 0.5rem;
  font-weight: 500;
}
.v5-toolbar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v5-chiprow {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.v5-chip {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.v5-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.v5-chip.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.v5-sort {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
}

/* ---- Product grid ---- */
.v5-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .v5-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1000px) {
  .v5-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
  }
}

.v5-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.v5-card:hover {
  box-shadow: 0 14px 34px -18px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}
.v5-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}
.v5-card-media > svg {
  height: 100%;
  width: 100%;
  transition: transform 0.6s ease;
}
.v5-card:hover .v5-card-media > svg {
  transform: scale(1.05);
}
.v5-tags {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.v5-tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.v5-tag--new {
  background: var(--teal);
  color: #fff;
}
.v5-tag--sale {
  background: var(--red);
  color: #fff;
}
.v5-fav {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: grid;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.v5-fav:hover {
  color: var(--red);
  transform: scale(1.08);
}
.v5-card-body {
  padding: 0.75rem 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.v5-card-code {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.v5-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  min-height: 2.4em;
}
.v5-card:hover .v5-card-name {
  color: var(--teal);
}
.v5-swatches {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.15rem;
}
.v5-swatches span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.v5-price {
  margin-top: 0.35rem;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.v5-price b {
  font-size: 1.05rem;
  font-weight: 800;
}
.v5-price s {
  font-size: 0.8rem;
  color: var(--muted);
}
.v5-bulk {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-soft);
  align-self: flex-start;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.v5-card-btn {
  margin-top: 0.7rem;
  width: 100%;
  border: 1px solid var(--teal);
  color: var(--teal);
  background: var(--bg);
  border-radius: 10px;
  padding: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.v5-card-btn:hover {
  background: var(--teal);
  color: #fff;
}

/* ---- Trust strip ---- */
.v5-trust {
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.v5-trust-in {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-block: 1.6rem;
}
.v5-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: center;
}
.v5-trust-item svg {
  color: var(--teal);
  flex-shrink: 0;
}
.v5-trust-item b {
  display: block;
  font-size: 0.85rem;
}
.v5-trust-item span {
  font-size: 0.72rem;
  color: var(--muted);
}
@media (min-width: 860px) {
  .v5-trust-in {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---- Newsletter ---- */
.v5-news {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.v5-news h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
}
.v5-news p {
  color: var(--muted);
  margin-top: 0.5rem;
}
.v5-news form {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  margin: 1.4rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.v5-news input {
  flex: 1;
  min-width: 200px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  color: var(--ink);
}
.v5-news input:focus {
  outline: none;
  border-color: var(--teal);
}
.v5-news button {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.v5-news button:hover {
  background: var(--teal-dark);
}

/* ---- Footer ---- */
.v5-footer {
  background: var(--ink);
  color: #d7dcda;
}
.v5-footer-in {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-block: 2.8rem 2rem;
}
.v5-footer h5 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}
.v5-footer a {
  display: block;
  font-size: 0.85rem;
  padding-block: 0.3rem;
  color: rgba(215, 220, 218, 0.85);
  transition: color 0.2s ease;
}
.v5-footer a:hover {
  color: var(--teal);
}
.v5-footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(215, 220, 218, 0.7);
  margin-top: 0.7rem;
  max-width: 30ch;
}
.v5-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.v5-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  padding: 0;
}
.v5-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.v5-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(215, 220, 218, 0.6);
}
.v5-pay {
  display: flex;
  gap: 0.4rem;
}
.v5-pay span {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 760px) {
  .v5-footer-in {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
}

/* ---- Page hero / breadcrumb ---- */
.v5-pagehero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.v5-pagehero-in {
  padding-block: clamp(1.6rem, 3vw, 2.6rem);
}
.v5-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.v5-crumb a:hover {
  color: var(--teal);
}
.v5-crumb .sep {
  color: var(--line);
}
.v5-crumb .cur {
  color: var(--ink);
}
.v5-pagehero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.v5-pagehero p {
  margin-top: 0.6rem;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Product detail (PDP) ---- */
.v5-pdp {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 900px) {
  .v5-pdp {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.v5-pdp-cat {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.v5-pdp h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-top: 0.4rem;
  line-height: 1.2;
}
.v5-pdp-code {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.35rem;
}
.v5-pdp-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 1rem;
}
.v5-pdp-price b {
  font-size: 1.7rem;
  font-weight: 800;
}
.v5-pdp-price s {
  color: var(--muted);
}
.v5-pdp-bulk {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
}
.v5-pdp-desc {
  margin-top: 1.1rem;
  color: var(--ink-soft, #4a4a44);
  line-height: 1.65;
  font-size: 0.95rem;
}
.v5-pdp-block {
  margin-top: 1.4rem;
}
.v5-pdp-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}
.v5-pdp-label span {
  color: var(--muted);
  font-weight: 400;
}
.v5-pdp-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
  padding-block: 1.1rem;
  border-block: 1px solid var(--line);
  font-size: 0.88rem;
}
.v5-pdp-specs dt {
  color: var(--muted);
}
.v5-pdp-specs dd {
  margin-top: 0.2rem;
  font-weight: 600;
}
.v5-pdp-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.v5-pdp-swatches {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
/* Renk seçici — foto şeridi (Trendyol tarzı) */
.zc-renk-serit {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.zc-renk-th {
  width: 58px;
  height: 72px;
  border-radius: 9px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.zc-renk-th img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zc-renk-th .zc-renk-nokta {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.zc-renk-th.is-active {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}
.zc-renk-th:hover {
  border-color: var(--teal);
}
.v5-pdp-swatch {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v5-pdp-swatch:hover {
  transform: scale(1.08);
}
.v5-pdp-swatch.is-active {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--teal);
}
.v5-pdp-buy {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.v5-pdp-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.v5-pdp-qty button {
  width: 44px;
  height: 46px;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--ink);
}
.v5-pdp-qty span {
  min-width: 26px;
  text-align: center;
  font-weight: 600;
}
.v5-pdp-add {
  flex: 1;
  min-width: 180px;
  border: none;
  border-radius: 10px;
  background: var(--teal);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
}
.v5-pdp-add:hover {
  background: var(--teal-dark);
}
.v5-pdp-add.is-added {
  background: #2e7d54;
}

/* Content pages (about / contact) */
.v5-content {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}
.v5-prose {
  max-width: 68ch;
}
.v5-prose h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}
.v5-prose p {
  color: var(--ink-soft, #4a4a44);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.v5-contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .v5-contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}
.v5-info dt {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.v5-info dd {
  margin: 0.25rem 0 1.1rem;
  font-size: 0.98rem;
}
.v5-form {
  display: grid;
  gap: 0.9rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.2rem, 3vw, 2rem);
}
.v5-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.v5-form input,
.v5-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg);
  font-family: inherit;
}
.v5-form input:focus,
.v5-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.v5-form .row {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 560px) {
  .v5-form .row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Design switch ---- */
.v5-switch {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.5rem 0.3rem 0.9rem;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}
.v5-switch a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid var(--line);
}
.v5-switch a:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

/* ============================================================
   SEPET ÇEKMECESİ (CartDrawer) — sağdan açılır
   ============================================================ */
.v5-cart-root {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}
.v5-cart-root.is-open {
  pointer-events: auto;
}
.v5-cart-scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 16, 0.42);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.v5-cart-root.is-open .v5-cart-scrim {
  opacity: 1;
}
.v5-cart {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);
}
.v5-cart-root.is-open .v5-cart {
  transform: translateX(0);
}
.v5-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--line);
}
.v5-cart-title {
  font-size: 1.05rem;
  font-weight: 700;
}
.v5-cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
  padding: 2rem;
}
.v5-cart-ship {
  padding: 0.9rem 1.3rem;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}
.v5-cart-ship p {
  margin-bottom: 0.5rem;
}
.v5-cart-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.v5-cart-bar span {
  display: block;
  height: 100%;
  background: var(--teal);
  transition: width 0.4s ease;
}
.v5-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.3rem;
}
.v5-cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.v5-cart-thumb {
  display: block;
  width: 64px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--soft);
}
.v5-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v5-cart-info {
  min-width: 0;
}
.v5-cart-name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  display: block;
  margin-bottom: 0.5rem;
}
.v5-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.v5-qtybox {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.v5-qtybox button {
  width: 30px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
}
.v5-qtybox span {
  min-width: 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}
.v5-cart-price {
  font-weight: 700;
  font-size: 0.9rem;
}
.v5-cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  padding: 0.2rem;
}
.v5-cart-remove:hover {
  color: var(--red);
}
.v5-cart-foot {
  padding: 1.1rem 1.3rem 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.v5-cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.v5-cart-subtotal strong {
  font-size: 1.2rem;
  font-weight: 800;
}
.v5-cart-note {
  font-size: 0.74rem;
  color: var(--muted);
}

/* ============================================================
   ORTAK BUTONLAR
   ============================================================ */
.v5-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #fff;
  border: 1px solid var(--teal);
  border-radius: 10px;
  padding: 0.85rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  font-family: inherit;
}
.v5-btn-solid:hover {
  background: var(--teal-dark);
}
.v5-btn-solid:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.v5-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
}
.v5-btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.v5-block {
  width: 100%;
}

/* ============================================================
   AUTH SAYFALARI (giriş / kayıt)
   ============================================================ */
.v5-authwrap {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 1rem;
}
.v5-authcard {
  width: 100%;
  max-width: 430px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: var(--bg);
  box-shadow: 0 18px 50px -30px rgba(0, 0, 0, 0.3);
}
.v5-authcard h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.v5-authcard .sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.v5-field {
  margin-bottom: 1rem;
}
.v5-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.v5-field input,
.v5-field textarea,
.v5-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  font-family: inherit;
}
.v5-field input:focus,
.v5-field textarea:focus,
.v5-field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.v5-alert {
  background: #fdecee;
  border: 1px solid #f3c2c8;
  color: #9a2432;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.84rem;
  margin-bottom: 1rem;
}
.v5-auth-alt {
  margin-top: 1.3rem;
  text-align: center;
  font-size: 0.87rem;
  color: var(--muted);
}
.v5-auth-alt a {
  color: var(--teal);
  font-weight: 700;
}

/* ============================================================
   ÖDEME (checkout)
   ============================================================ */
.v5-checkout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .v5-checkout {
    grid-template-columns: 1fr 380px;
  }
}
.v5-checkout h1 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.v5-pay-opts {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.v5-pay-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.v5-pay-opt:has(input:checked) {
  border-color: var(--teal);
  background: var(--teal-soft);
}
.v5-pay-opt input {
  margin-top: 0.2rem;
}
.v5-pay-opt b {
  display: block;
  font-size: 0.92rem;
}
.v5-pay-opt span {
  font-size: 0.8rem;
  color: var(--muted);
}
.v5-ozet {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
  background: var(--soft);
  position: sticky;
  top: 84px;
}
.v5-ozet h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.v5-ozet-line {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.85rem;
  padding: 0.4rem 0;
}
.v5-ozet-line .q {
  color: var(--muted);
}
.v5-ozet-sep {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0.7rem 0;
}
.v5-ozet-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.v5-thanks {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 5rem) 1rem;
}
.v5-thanks .tick {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #e8f5ee;
  color: #2e7d54;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 1.3rem;
}
.v5-thanks h1 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.v5-thanks p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.v5-iban {
  background: var(--soft);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin: 1.4rem 0;
  text-align: left;
  font-size: 0.86rem;
}
.v5-iban b {
  display: block;
  margin-bottom: 0.3rem;
}
.v5-iban code {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

/* ============================================================
   HESABIM
   ============================================================ */
.v5-hesap {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.v5-hesap-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.v5-hesap-head h1 {
  font-size: 1.6rem;
  font-weight: 800;
}
.v5-hesap-head p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}
.v5-hesap-order {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 1rem;
}
.v5-hesap-order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.8rem;
}
.v5-hesap-order-top b {
  font-size: 0.95rem;
}
.v5-hesap-order-top .tarih {
  font-size: 0.8rem;
  color: var(--muted);
}
.v5-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
}
.v5-hesap-kalem {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  color: var(--ink);
}
.v5-hesap-kalem span:last-child {
  color: var(--muted);
}
.v5-hesap-order-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}
.v5-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
.v5-empty-state svg {
  color: var(--line);
  margin-bottom: 1rem;
}

/* ============================================================
   ARAMA
   ============================================================ */
.v5-arama {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.v5-arama-bar {
  display: flex;
  gap: 0.6rem;
  max-width: 640px;
  margin-bottom: 1.6rem;
}
.v5-arama-bar input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  font-family: inherit;
}
.v5-arama-bar input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

/* ============================================================
   AEO — Ürün S.S.S. / Bilgi blokları  (soru-cevap)
   ============================================================ */
.v5-aeo {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.v5-aeo h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.v5-faq {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.v5-faq details {
  border-bottom: 1px solid var(--line);
}
.v5-faq details:last-child {
  border-bottom: none;
}
.v5-faq summary {
  cursor: pointer;
  padding: 0.95rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.v5-faq summary::-webkit-details-marker {
  display: none;
}
.v5-faq summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--teal);
  transition: transform 0.2s ease;
}
.v5-faq details[open] summary::after {
  content: "−";
}
.v5-faq details > div {
  padding: 0 1.1rem 1.1rem;
  color: var(--ink-soft, #4a4a44);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* AEO hızlı-bilgi tablosu (ürün özellikleri) */
.v5-quickfacts {
  margin-top: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.v5-quickfacts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--line);
}
.v5-quickfacts div:last-child {
  border-bottom: none;
}
.v5-quickfacts dt {
  color: var(--muted);
  font-weight: 500;
}
.v5-quickfacts dd {
  font-weight: 600;
  text-align: right;
}

/* İlgili ürünler / internal linking */
.v5-related {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}
.v5-related h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

/* Prose (yasal / politika sayfaları) ek stiller */
.v5-prose h1 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.v5-prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.3rem;
  margin-bottom: 0.5rem;
}
.v5-prose ul,
.v5-prose ol {
  margin: 0 0 1rem 1.2rem;
  color: var(--ink-soft, #4a4a44);
  line-height: 1.7;
}
.v5-prose li {
  margin-bottom: 0.4rem;
}
.v5-prose .updated {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 1.6rem;
}
.v5-prose a {
  color: var(--teal);
  font-weight: 600;
}

/* ---- Tükendi / az stok ---- */
.v5-card-btn:disabled,
.v5-pdp-add:disabled {
  background: var(--soft);
  color: var(--muted);
  border-color: var(--line);
  cursor: not-allowed;
}
.v5-card-btn:disabled:hover {
  background: var(--soft);
  color: var(--muted);
}
.v5-pdp-qty button:disabled {
  color: var(--line);
  cursor: not-allowed;
}
.v5-pdp-stock-warn {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
}

@media (prefers-reduced-motion: reduce) {
  .v5 * {
    transition: none !important;
  }
}

/* ---- Blog ---- */
.v5-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 640px) { .v5-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .v5-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.v5-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg, #fff);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.v5-blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.v5-blog-media { aspect-ratio: 16/10; overflow: hidden; background: var(--soft); }
.v5-blog-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v5-blog-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.v5-blog-title { font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin: 0; }
.v5-blog-excerpt { font-size: .88rem; color: var(--muted); line-height: 1.55; margin: 0; }
.v5-blog-more { margin-top: .3rem; font-size: .82rem; font-weight: 600; color: var(--teal); }
