/* DAWEE — mockup birebir */

:root {
  --red: #e31e24;
  --red-dark: #c4181e;
  --black: #0f0f0f;
  --charcoal: #1a1a1a;
  --feature: #1e1e1e;
  --muted: #666;
  --line: #dadada;
  --paper: #efefef;
  --white: #fff;
  --max: 1140px;
  --display: "Montserrat", sans-serif;
  --body: "Manrope", sans-serif;
  /* WooCommerce vars — mor varsayılanı ezer */
  --woocommerce: #e31e24;
  --wc-primary: #e31e24;
  --wc-primary-text: #ffffff;
  --wc-secondary: #1a1a1a;
  --wc-highlight: #e31e24;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn--sm { min-height: 38px; padding: 0 16px; font-size: 0.66rem; }
.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.85);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); }
.btn--outline {
  background: var(--white);
  color: var(--black);
  border-color: #c8c8c8;
}
.btn--outline:hover { border-color: var(--black); }
.btn--white { background: var(--white); color: var(--red); }
.btn--white:hover { background: #f2f2f2; }

.label {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sec-title {
  text-align: center;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  margin-bottom: 36px;
}
.sec-title--light { color: var(--white); }
.sec-title--underline::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 14px auto 0;
}
.sec-actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* HEADER */
.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
}
.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}
.header--logo-keep .header__logo img {
  filter: none;
}
.header__nav {
  display: none;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  justify-items: center;
  column-gap: 6px;
}
.header__nav > a,
.nav-dd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
}
.header__nav > a,
.nav-dd__trigger {
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: auto;
  padding: 0 12px;
  text-align: center;
  white-space: nowrap;
}
.header__nav > a::after {
  content: "";
  width: 7px;
  height: 4px;
  flex-shrink: 0;
}
.header__nav a:hover,
.header__nav a.is-active { color: var(--red); }

.nav-dd { position: relative; }
.nav-dd__trigger {
  cursor: default;
}
.nav-dd__trigger.is-active { color: var(--red); }
.nav-dd--kurumsal:hover .nav-dd__trigger,
.nav-dd--kurumsal:focus-within .nav-dd__trigger { color: var(--red); }
.nav-dd--products:hover .nav-dd__trigger,
.header:has(.products-mega:hover) .nav-dd--products .nav-dd__trigger { color: var(--red); }

/* Hover köprüsü — menüye inerken kapanmasın */
.nav-dd--kurumsal::after,
.nav-dd--products::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 40px;
  z-index: 110;
}
.nav-dd--products::after {
  height: 52px;
}

.nav-dd__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
  z-index: 120;
}
.nav-dd--kurumsal:hover .nav-dd__panel,
.nav-dd--kurumsal:focus-within .nav-dd__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dd__panel a {
  display: block;
  padding: 10px 20px;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--charcoal);
  white-space: nowrap;
}
.nav-dd__panel a:hover { background: #f7f7f7; color: var(--red); }

.products-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 14px);
  padding-top: 14px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 100;
}
.header:has(.nav-dd--products:hover) .products-mega,
.header:has(.products-mega:hover) .products-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.products-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 14px;
}
.products-mega .wrap {
  width: min(100% - 48px, 1320px);
  padding-block: 28px 32px;
}
.products-mega__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0;
}
.products-mega__col {
  padding: 0 32px;
  border-right: 1px solid var(--line);
}
.products-mega__col:first-child { padding-left: 0; }
.products-mega__col:last-child {
  border-right: 0;
  padding-right: 0;
}
.products-mega__col h4 {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.products-mega__col li + li { margin-top: 4px; }
.products-mega__col a {
  display: block;
  padding: 9px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid #eee;
  transition: color .15s ease;
}
.products-mega__col a:hover { color: var(--red); }
.products-mega__col li:last-child a { border-bottom: 0; }
.products-mega__col li.is-sub a {
  padding-left: 16px;
  font-size: 0.84rem;
  color: rgba(26,26,26,0.62);
  border-bottom-color: #f3f3f3;
}
.products-mega__col li.is-sub a::before {
  content: "⌙";
  margin-right: 8px;
  opacity: 0.55;
}

.chev {
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  flex-shrink: 0;
}
.header__actions {
  --header-action-size: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  min-width: 0;
}
.header__actions .btn--sm,
.header__actions .icon-search,
.header__actions .icon-cart,
.header__actions .icon-account,
.header__actions .icon-wa {
  display: none;
  flex-shrink: 0;
  box-sizing: border-box;
  height: var(--header-action-size);
  min-height: var(--header-action-size);
  max-height: var(--header-action-size);
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none !important;
  outline: none;
  box-shadow: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.header__actions .btn--sm::-moz-focus-inner,
.header__actions button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.header__actions .btn--sm {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  white-space: nowrap;
  line-height: 1;
  margin-inline-end: 4px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.header__actions .btn--sm:hover,
.header__actions .btn--sm:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  text-decoration: none !important;
}
.icon-search,
.icon-cart {
  width: var(--header-action-size, 36px);
  height: var(--header-action-size, 36px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
/* Elementor `button{width:auto|100%}` karesi eziyordu — kutuyu kilitle */
.header .header__actions button.icon-search,
.header .header__actions button.icon-cart,
.header .header__actions a.icon-wa {
  width: var(--header-action-size);
  min-width: var(--header-action-size);
  max-width: var(--header-action-size);
  height: var(--header-action-size);
  flex: 0 0 var(--header-action-size);
  padding: 0;
  aspect-ratio: 1;
}
.header__actions .icon-cart,
.header__actions .icon-account {
  display: inline-flex; /* mobilde de görünür */
}
.icon-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--header-action-size, 36px);
  padding: 0 12px 0 10px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
  text-decoration: none !important;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  max-width: 160px;
  min-width: var(--header-action-size, 36px);
}
.icon-account__glyph {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.icon-account__glyph svg {
  display: block;
  width: 18px;
  height: 18px;
  flex: none;
}
.icon-account__name {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 96px;
  text-decoration: none !important;
}
.icon-account__name--full { display: none; }
.icon-account__name--short { display: none; }
@media (max-width: 1023px) {
  .icon-account {
    width: var(--header-action-size, 36px);
    padding: 0;
    justify-content: center;
    max-width: var(--header-action-size, 36px);
  }
  .icon-account__name {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
.icon-search:hover,
.icon-cart:hover,
.icon-account:hover,
.icon-search:focus-visible,
.icon-cart:focus-visible,
.icon-account:focus-visible {
  border-color: rgba(255,255,255,0.7);
  color: var(--red);
  background: rgba(255,255,255,0.04);
  text-decoration: none !important;
  outline: none;
  box-shadow: none;
}
.icon-search:hover svg,
.icon-cart:hover svg,
.icon-account:hover svg {
  transform: none;
}
.header .header__actions .icon-search svg,
.header .header__actions .icon-cart svg,
.header .header__actions .icon-cart__glyph {
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  flex: none;
  aspect-ratio: 1;
  overflow: visible;
}
.icon-cart__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 17px;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 0 0 2px var(--charcoal, #1a1a1a);
  transition: transform .2s ease;
}
.icon-cart.has-items .icon-cart__count {
  animation: cart-badge-pop .35s ease;
}
.icon-cart:not(.has-items) .icon-cart__count {
  display: none;
}
@keyframes cart-badge-pop {
  0% { transform: scale(0.6); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.icon-wa {
  width: var(--header-action-size, 36px);
  height: var(--header-action-size, 36px);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
}
.icon-wa svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: none;
}
.burger {
  margin-left: 12px;
  width: 26px;
  display: grid;
  gap: 5px;
  cursor: pointer;
}
.burger span { height: 2px; background: #fff; }

.mnav {
  display: none;
  position: absolute;
  top: 82px; left: 0; right: 0;
  z-index: 60;
  background: rgba(15,15,15,0.98);
  padding: 16px 20px 28px;
  flex-direction: column;
  gap: 14px;
}
.mnav a {
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.mnav__group {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
}
.mnav__group summary {
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
}
.mnav__group summary::-webkit-details-marker { display: none; }
.mnav__sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-left: 12px;
}
.mnav__sub a {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: none;
  color: rgba(255,255,255,0.82);
}
.mnav__sub .is-sub {
  padding-left: 14px;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
}
.mnav__sub .is-sub::before {
  content: "⌙ ";
  opacity: 0.7;
}
.mnav__search {
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  cursor: pointer;
}
.mnav__search:hover { border-color: var(--red); color: var(--red); }
.es-header__mnav-toggle:checked ~ .mnav,
#mnav:checked ~ .mnav { display: flex; }

@media (min-width: 1024px) {
  .header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 40px;
    row-gap: 0;
  }
  .header__logo { grid-column: 1; justify-self: start; }
  .header__nav {
    grid-column: 2;
    display: grid;
    flex: none;
    justify-self: center;
    max-width: 100%;
    min-width: 0;
  }
  .header__actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    margin-left: 0;
    padding-left: 8px;
    gap: 12px;
  }
  .header__actions .btn--sm {
    display: inline-flex;
    margin-inline-end: 0;
  }
  .header__actions .icon-search,
  .header__actions .icon-cart,
  .header__actions .icon-account,
  .header__actions .icon-wa {
    display: inline-flex;
  }
  /* İsim gizle — Teklif + menü çakışmasın */
  .header__actions .icon-account {
    max-width: var(--header-action-size);
    width: var(--header-action-size);
    padding: 0;
    justify-content: center;
  }
  .header__actions .icon-account .icon-account__name {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .burger { display: none; }
  .es-header__mnav-toggle:checked ~ .mnav,
  #mnav:checked ~ .mnav { display: none; }
}

@media (min-width: 1280px) {
  .header__inner {
    column-gap: 48px;
  }
  .header__actions {
    gap: 14px;
  }
}

@media (min-width: 1440px) {
  .header__inner {
    column-gap: 56px;
  }
  .header__actions .icon-account {
    max-width: 140px;
    width: auto;
    padding: 0 12px 0 10px;
    justify-content: flex-start;
  }
  .header__actions .icon-account .icon-account__name--short {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: hidden;
    display: inline;
    max-width: 88px;
  }
  .header__actions .icon-account.is-guest .icon-account__name {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: hidden;
    display: inline;
    max-width: 88px;
  }
}

@media (min-width: 1600px) {
  .header__actions .icon-account {
    max-width: 200px;
  }
  .header__actions .icon-account .icon-account__name--short {
    display: none;
  }
  .header__actions .icon-account .icon-account__name--full {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: hidden;
    display: inline;
    max-width: 140px;
  }
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 20px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(3px);
}
.search-overlay__panel {
  position: relative;
  width: min(100%, 620px);
  background: #fff;
  padding: 28px 28px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}
.search-overlay__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
}
.search-overlay__close:hover { color: var(--red); }

/* MINI CART */
.mini-cart {
  position: fixed;
  inset: 0;
  z-index: 320;
  pointer-events: none;
  visibility: hidden;
}
.mini-cart.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mini-cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  opacity: 0;
  transition: opacity .22s ease;
}
.mini-cart.is-open .mini-cart__backdrop { opacity: 1; }
.mini-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 48px rgba(0,0,0,0.18);
  transform: translateX(100%);
  transition: transform .28s ease;
}
.mini-cart.is-open .mini-cart__panel { transform: translateX(0); }
.mini-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #ececec;
}
.mini-cart__head h2 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mini-cart__close {
  width: 36px;
  height: 36px;
  border: 0;
  background: #f4f4f4;
  color: var(--black);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, color .2s ease;
}
.mini-cart__close:hover {
  background: var(--red);
  color: #fff;
}
.mini-cart__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mini-cart .woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  width: 100%;
}
/* WC clearfix ::before/::after grid satırını bozar — kaldır */
.mini-cart .woocommerce-mini-cart-item::before,
.mini-cart .woocommerce-mini-cart-item::after,
.mini-cart .mini-cart-item::before,
.mini-cart .mini-cart-item::after,
.mini-cart ul.product_list_widget li::before,
.mini-cart ul.product_list_widget li::after,
.mini-cart ul.cart_list li::before,
.mini-cart ul.cart_list li::after {
  content: none !important;
  display: none !important;
}
.mini-cart .woocommerce-mini-cart-item,
.mini-cart .mini-cart-item {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 16px 16px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  font-size: 0.88rem;
  float: none !important;
  clear: none !important;
}
.mini-cart .mini-cart-item__thumb {
  display: block;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  overflow: hidden;
  background: #f3f3f3;
  float: none !important;
}
.mini-cart .mini-cart-item__thumb img,
.mini-cart .woocommerce-mini-cart-item img,
.mini-cart ul.product_list_widget li img {
  display: block !important;
  float: none !important;
  width: 64px !important;
  height: 64px !important;
  margin: 0 !important;
  object-fit: cover;
  box-shadow: none;
}
.mini-cart .mini-cart-item__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}
.mini-cart .mini-cart-item__name,
.mini-cart .woocommerce-mini-cart-item a.mini-cart-item__name {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: #111;
  text-decoration: none;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.mini-cart .mini-cart-item__name:hover {
  color: var(--red);
}
.mini-cart .mini-cart-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 8px;
}
.mini-cart .mini-cart-item__qty,
.mini-cart .woocommerce-mini-cart-item .quantity {
  display: block;
  margin: 0;
  float: none !important;
  color: #777;
  font-size: 0.8rem;
  line-height: 1.4;
}
.mini-cart .mini-cart-item__line {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}
.mini-cart .mini-cart-item__remove,
.mini-cart .woocommerce-mini-cart-item .remove_from_cart_button,
.mini-cart .woocommerce-mini-cart-item a.remove {
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid !important;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  float: none !important;
}
.mini-cart .mini-cart-item__remove:hover,
.mini-cart .woocommerce-mini-cart-item .remove_from_cart_button:hover {
  color: var(--red);
}
.mini-cart .mini-cart-item dl.variation,
.mini-cart .woocommerce-mini-cart-item dl.variation {
  margin: 0;
  padding: 0;
  border: 0;
  float: none;
}
.mini-cart .mini-cart-item dl.variation::before,
.mini-cart .mini-cart-item dl.variation::after,
.mini-cart .woocommerce-mini-cart-item dl.variation::before,
.mini-cart .woocommerce-mini-cart-item dl.variation::after {
  content: none !important;
  display: none !important;
}
.mini-cart .mini-cart-item dl.variation dt,
.mini-cart .mini-cart-item dl.variation dd,
.mini-cart .woocommerce-mini-cart-item dl.variation dt,
.mini-cart .woocommerce-mini-cart-item dl.variation dd {
  display: inline;
  float: none;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  color: #777;
}
.mini-cart .mini-cart__footer {
  flex: 0 0 auto;
  margin-top: auto;
  padding: 16px 20px 22px;
  border-top: 1px solid #ececec;
  background: #fff;
}
.mini-cart .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #111;
}
.mini-cart .woocommerce-mini-cart__total strong {
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--red);
}
.mini-cart .woocommerce-mini-cart__buttons {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.mini-cart .woocommerce-mini-cart__buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  height: 44px;
  padding: 0 16px;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  line-height: 1;
  border: 1px solid #111;
  background: #fff;
  color: #111 !important;
  text-decoration: none !important;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.mini-cart .woocommerce-mini-cart__buttons a:hover {
  border-color: var(--red);
  color: var(--red) !important;
  background: #fff;
}
.mini-cart .woocommerce-mini-cart__buttons .checkout {
  background: var(--red);
  border-color: var(--red);
  color: #fff !important;
}
.mini-cart .woocommerce-mini-cart__buttons .checkout:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff !important;
}
.mini-cart__empty {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  flex: 1;
  padding: 48px 24px;
  text-align: center;
}
.mini-cart .woocommerce-mini-cart__empty-message {
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 0.95rem;
}
.mini-cart__empty .btn {
  color: #fff !important;
}
body.is-mini-cart-open { overflow: hidden; }

.search-overlay__label {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.search-overlay__form {
  display: flex;
  gap: 10px;
}
.search-overlay__form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d4d4d4;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s ease;
}
.search-overlay__form input:focus {
  border-color: var(--red);
}
.search-overlay__form .btn {
  min-width: 96px;
}
body.is-search-open { overflow: hidden; }

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 700px;
  display: grid;
  align-items: center;
  color: var(--white);
  background: #000;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 35%, rgba(0,0,0,0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 100px;
  max-width: 560px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  width: min(100% - 40px, 560px);
}
.hero h1 {
  font-size: clamp(2.35rem, 5.6vw, 4.1rem);
  line-height: 1.02;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--white); }
.hero h1 em {
  font-style: normal;
  color: var(--red);
  display: inline;
}
.hero p {
  color: rgba(255,255,255,0.88);
  max-width: 44ch;
  font-size: 0.98rem;
  margin-bottom: 28px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* HERO SLIDER */
.hero--slider {
  --es-hero-speed: 700ms;
  --es-hero-delay: 6500ms;
}
.hero--slider .hero__viewport {
  position: absolute;
  inset: 0;
}
.hero--slider .hero__track {
  position: absolute;
  inset: 0;
}
.hero--fade .hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--es-hero-speed) ease,
    visibility var(--es-hero-speed) ease;
  pointer-events: none;
}
.hero--fade .hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero--slide .hero__track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform var(--es-hero-speed) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.hero--slide .hero__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  align-items: center;
}
.hero--slider .hero__content {
  z-index: 2;
  /* Header üstte, dots/progress altta — optik orta için dengeli boşluk */
  padding-top: max(96px, 12vh);
  padding-bottom: max(88px, 10vh);
  margin-top: 2vh;
}
.hero--fade .hero__slide.is-active .hero__content > * {
  animation: es-hero-rise 0.7s ease both;
}
.hero--fade .hero__slide.is-active .hero__content > *:nth-child(2) { animation-delay: 0.08s; }
.hero--fade .hero__slide.is-active .hero__content > *:nth-child(3) { animation-delay: 0.14s; }
@keyframes es-hero-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: 72px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  padding: 0;
  transition: color .2s ease, background .25s ease;
}
.hero__arrow svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.45));
  transition: transform .2s ease;
}
.hero__arrow:hover {
  color: #fff;
}
.hero__arrow--prev:hover {
  background: linear-gradient(90deg, rgba(0,0,0,0.35), transparent);
}
.hero__arrow--next:hover {
  background: linear-gradient(270deg, rgba(0,0,0,0.35), transparent);
}
.hero__arrow--prev:hover svg { transform: translateX(-3px); }
.hero__arrow--next:hover svg { transform: translateX(3px); }
.hero__arrow--prev { left: 0; }
.hero__arrow--next { right: 0; }
@media (min-width: 1280px) {
  .hero__arrow { width: 96px; }
  .hero__arrow svg { width: 32px; height: 32px; }
}
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.hero__dot.is-active {
  background: var(--red);
  transform: scale(1.25);
}
.hero__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 3px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}
.hero__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--red);
}
@media (max-width: 1023px) {
  .hero__arrow { display: none; }
  .hero__dots { bottom: 18px; }
}

/* FEATURES / TRUST BAR */
.features {
  --es-feat-cols: 4;
  background: var(--feature);
  color: #fff;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(var(--es-feat-cols), minmax(0, 1fr));
  gap: 0;
  padding: 30px 0;
  align-items: stretch;
}
.feature {
  --es-feat-i: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  padding: 8px 12px;
  min-height: 0;
  transition: opacity .2s ease;
}
.features--inline .feature {
  flex-direction: row;
  text-align: left;
  gap: 14px;
  padding-inline: 18px;
}
.feature__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 34px;
  line-height: 1;
  width: 1.15em;
  height: 1.15em;
  transition: transform .25s ease, color .2s ease;
}
.feature__icon i,
.feature__icon svg,
.feature__icon .feature__glyph,
.feature__icon .e-font-icon-svg {
  display: block !important;
  width: 1em !important;
  height: 1em !important;
  max-width: none;
  color: inherit;
}
.feature__icon svg,
.feature__icon .e-font-icon-svg {
  fill: currentColor !important;
}
.feature__icon svg path,
.feature__icon .e-font-icon-svg path {
  fill: currentColor !important;
}
.feature__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.feature__title {
  color: #fff;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.35;
}
.feature__text {
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
  line-height: 1.4;
  max-width: 28ch;
}
.features--stack .feature__text {
  margin-inline: auto;
}
.features--dividers .feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: rgba(255,255,255,0.1);
  pointer-events: none;
}
.feature:hover .feature__icon,
.feature:focus-visible .feature__icon {
  transform: translateY(-2px);
  color: #ff4d52;
  outline: none;
}
.feature:focus-visible {
  outline: 1px solid rgba(255,255,255,0.35);
  outline-offset: 4px;
}
.features--animate .feature {
  animation: es-feat-rise 0.55s ease both;
  animation-delay: calc(var(--es-feat-i) * 60ms);
}
@keyframes es-feat-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .features--animate .feature { animation: none; }
  .feature__icon { transition: none; }
}
@media (max-width: 799px) {
  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
    padding: 26px 0;
  }
  .features--dividers .feature:not(:last-child)::after {
    display: none;
  }
  .feature {
    gap: 10px;
  }
  .features--inline .feature {
    flex-direction: column;
    text-align: center;
  }
  .feature__icon {
    font-size: 30px;
  }
  .feature__title {
    font-size: 0.64rem;
  }
}
@media (min-width: 800px) {
  .features__grid {
    grid-template-columns: repeat(var(--es-feat-cols), minmax(0, 1fr));
    padding: 26px 0;
  }
}

/* ABOUT */
.about { padding: 90px 0; background: #fff; }
.about__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.about--media-left .about__copy { order: 2; }
.about--media-left .about__media { order: 1; }
.about__copy h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  margin-bottom: 18px;
}
.about__copy p,
.about__copy .about__text {
  color: var(--muted);
  max-width: 46ch;
}
.about__copy p + p,
.about__copy .about__text + .about__text { margin-top: 12px; }
.about__copy .btn { margin-top: 28px; }
.about__media { position: relative; }
.about__media > img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}
.stats {
  --es-about-stats: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 8px;
  background: #111;
  color: #fff;
  padding: 18px 12px;
  align-items: start;
}
.stats__item,
.stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 6px;
  min-width: 0;
  padding: 0 6px;
}
.stats b {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  min-height: 1.25em;
}
.stats span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  min-height: 2.6em; /* 2 satıra kadar eşit alan — hiza bozulmasın */
  max-width: 11ch;
}
@media (min-width: 920px) {
  .about__grid { grid-template-columns: 1fr 1.05fr; gap: 56px; }
  .about--media-left .about__grid {
    grid-template-columns: 1.05fr 1fr;
  }
  .about--media-left .about__copy { order: 2; }
  .about--media-left .about__media { order: 1; }
  .stats {
    position: absolute;
    left: 16px; right: 16px; bottom: 16px;
    grid-template-columns: repeat(var(--es-about-stats), minmax(0, 1fr));
    gap: 0;
    padding: 16px 10px;
  }
  .stats__item,
  .stats > div {
    padding: 0 8px;
  }
}

/* REFS */
.refs { padding: 10px 0 80px; }
.refs__label {
  text-align: center;
  margin-bottom: 8px;
}
.refs__intro {
  text-align: center;
  color: var(--muted);
  max-width: 48ch;
  margin: -8px auto 28px;
  font-size: 0.95rem;
}
.refs__row {
  --es-refs-cols: 5;
  display: grid;
  grid-template-columns: repeat(var(--es-refs-cols, 3), minmax(0, 1fr));
  gap: 14px;
}
.refs__item {
  background: #f7f7f7;
  height: 84px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  transition: background .2s ease;
}
.refs__item:hover {
  background: #f0f0f0;
}
.refs__item img {
  max-height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: filter .2s ease, opacity .2s ease;
}
.refs--grayscale .refs__item img {
  filter: grayscale(1);
  opacity: 0.8;
}
.refs--grayscale .refs__item:hover img {
  filter: none;
  opacity: 1;
}
@media (max-width: 799px) {
  .refs__row {
    grid-template-columns: repeat(min(var(--es-refs-cols), 3), minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .refs__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 800px) {
  .refs__row {
    grid-template-columns: repeat(var(--es-refs-cols), minmax(0, 1fr));
  }
}

/* CATEGORIES — 8 yan yana */
.cats { padding: 10px 0 90px; }
.cats__wrap {
  width: min(100% - 32px, 1380px);
}
.cats__grid {
  --es-cats-cols: 8;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cat {
  background: var(--white);
  border: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.cat__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0f0f0;
}
.cat__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}
.cat:hover .cat__img img { transform: scale(1.04); }
.cat__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 88px;
  padding: 12px 8px 14px;
  text-align: center;
  background: var(--white);
}
.cat__ico {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--red);
}
.cat__ico--img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  stroke: none;
}
.cat__label {
  font-family: var(--display);
  font-size: clamp(0.56rem, 0.9vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--charcoal);
}
@media (min-width: 640px) {
  .cats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
}
@media (min-width: 1080px) {
  .cats__grid {
    grid-template-columns: repeat(var(--es-cats-cols), minmax(0, 1fr));
    gap: 8px;
  }
  .cat__meta {
    min-height: 82px;
    padding: 10px 6px 12px;
    gap: 8px;
  }
}

/* PROCESS */
.process {
  background: var(--charcoal);
  color: #fff;
  padding: 80px 0 90px;
}
.steps {
  --es-steps-cols: 5;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 36px;
}
.steps > li {
  margin: 0;
  padding: 0;
}
.steps__item {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}
a.steps__item:hover .steps__title {
  color: #fff;
}
.steps__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.steps__icon {
  display: grid;
  place-items: center;
  color: #fff;
  line-height: 0;
}
.steps__icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.steps__title {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: inherit;
}
.steps__text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  max-width: 18ch;
  margin: 0;
}
@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(var(--es-steps-cols), minmax(0, 1fr));
    gap: 10px;
  }
  .steps--connect .steps__item::before {
    content: "";
    position: absolute;
    top: 20px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 2px;
    background: var(--red);
  }
  .steps--connect > li:last-child .steps__item::before { display: none; }
  .steps--no-num.steps--connect .steps__item::before { display: none; }
}

/* GALLERY */
.gallery { padding: 90px 0; }
.gallery__grid {
  --es-gal-cols: 4;
  --es-gal-fit: cover;
  --es-gal-ratio: 4 / 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.gallery__item {
  display: block;
  margin: 0;
  overflow: hidden;
  background: #f4f4f4;
  text-decoration: none;
  color: inherit;
}
.gallery__item img {
  width: 100%;
  aspect-ratio: var(--es-gal-ratio);
  object-fit: var(--es-gal-fit);
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.gallery__item:hover img {
  transform: scale(1.03);
}
@media (min-width: 800px) {
  .gallery__grid {
    grid-template-columns: repeat(var(--es-gal-cols), minmax(0, 1fr));
    gap: 14px;
  }
}

/* CTA */
.cta { background: var(--red); color: #fff; }
.cta__inner {
  display: grid;
  gap: 22px;
  padding: 40px 0;
  align-items: center;
}
.cta__title {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  margin: 0 0 8px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cta__text {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
}
.cta__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta__wa {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #25d366;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.cta__wa:hover { transform: scale(1.06); }
.cta--stack .cta__inner,
.cta--stack_left .cta__inner {
  grid-template-columns: 1fr;
}
.cta--stack .cta__copy,
.cta--stack .cta__actions {
  text-align: center;
  justify-content: center;
}
.cta--stack_left .cta__actions {
  justify-content: flex-start;
}
@media (min-width: 800px) {
  .cta--split .cta__inner { grid-template-columns: 1fr auto; }
}

/* FOOTER */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.footer__grid {
  --es-footer-cols: 4;
  display: grid;
  gap: 36px 40px;
  padding-bottom: 48px;
}
.footer__brand {
  display: inline-block;
  line-height: 0;
}
.footer__logo {
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom-media {
  margin-left: auto;
  line-height: 0;
}
.footer__bottom-media img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.footer__bottom-media a {
  display: inline-block;
  line-height: 0;
}
.footer__tagline {
  max-width: 28ch;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}
.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer__social a,
.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.footer__social a:hover,
.footer__social-link:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
}
.footer__social-icon,
.footer__social a i,
.footer__social a svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}
.footer__heading {
  color: #fff;
  font-size: 0.72rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__list li + li {
  margin-top: 8px;
}
.footer__list a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer__list a:hover {
  color: #fff;
}
.footer__contact {
  max-width: 32ch;
}
.footer__contact-item {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.footer__copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.footer__copy a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__copy a:hover {
  color: #fff;
}
.footer__copy p {
  margin: 0;
}
@media (min-width: 700px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1000px) {
  .footer__grid {
    grid-template-columns: 1.25fr 0.85fr 1fr 1.15fr;
    gap: 32px 48px;
    align-items: start;
  }
  .footer__col--brand {
    padding-right: 12px;
  }
}

/* ========== CATALOG / PRODUCT LISTING PAGE ========== */

.header--solid {
  position: relative;
  background: var(--charcoal);
}

.page-catalog {
  background: #f4f4f4;
}

.btn--block {
  width: 100%;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 56px 0 36px;
  max-width: 720px;
}
.page-hero h1 {
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  margin-bottom: 12px;
  line-height: 1.1;
}
.page-hero p {
  color: rgba(255,255,255,0.88);
  max-width: 48ch;
  margin-bottom: 22px;
  font-size: 0.95rem;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a {
  color: rgba(255,255,255,0.85);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span {
  color: rgba(255,255,255,0.55);
}
.breadcrumb strong {
  color: var(--red);
  font-weight: 700;
  text-transform: none;
  font-family: var(--body);
  letter-spacing: 0;
}

/* Catalog layout */
.catalog {
  padding: 40px 0 64px;
}
.catalog__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 980px) {
  .catalog__grid {
    grid-template-columns: 250px 1fr;
    gap: 32px;
    align-items: start;
  }
}

/* Sidebar */
.sidebar {
  display: grid;
  gap: 18px;
}
.sidebar__block {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 22px 20px;
}
.sidebar__block h2 {
  font-size: 0.82rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ececec;
}
.cat-list li + li { margin-top: 8px; }
.cat-list a {
  font-size: 0.9rem;
  color: #555;
  display: block;
  transition: color 0.15s;
}
.cat-list a:hover,
.cat-list a.is-active {
  color: var(--red);
  font-weight: 700;
}
.cat-list__sub,
.cat-list a.cat-list__sub {
  display: block;
  padding-left: 14px;
  font-size: 0.84rem;
  color: rgba(26,26,26,0.68);
}
.cat-list__sub::before,
.cat-list a.cat-list__sub::before {
  content: "⌙ ";
  opacity: 0.65;
}

.filter-group {
  border: 0;
  margin: 0 0 20px;
  padding: 0;
}
.filter-group legend {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 0;
}
.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #444;
  margin-bottom: 8px;
  cursor: pointer;
}
.filter-group em {
  margin-left: auto;
  font-style: normal;
  color: #999;
  font-size: 0.8rem;
}
.filter-group input[type="checkbox"] {
  accent-color: var(--red);
  width: 15px;
  height: 15px;
}

.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--red);
}
.price-range__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.78rem;
  color: #777;
}

/* Catalog main */
.catalog__main {
  min-width: 0;
}
.catalog__head {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}
.catalog__head h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  margin-bottom: 6px;
}
.catalog__head p {
  color: #777;
  font-size: 0.9rem;
}
.catalog__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.catalog__count {
  font-size: 0.86rem;
  color: #666;
  font-weight: 600;
}
.sort select {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #d8d8d8;
  background: #fff;
  font-family: var(--body);
  font-size: 0.84rem;
  color: #333;
}
.view-toggle {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.view-toggle span {
  width: 28px;
  height: 28px;
  border: 1px solid #d5d5d5;
  background:
    linear-gradient(#bbb, #bbb) 7px 7px / 5px 5px no-repeat,
    linear-gradient(#bbb, #bbb) 15px 7px / 5px 5px no-repeat,
    linear-gradient(#bbb, #bbb) 7px 15px / 5px 5px no-repeat,
    linear-gradient(#bbb, #bbb) 15px 15px / 5px 5px no-repeat;
  background-color: #fff;
}
.view-toggle span:last-child {
  background:
    linear-gradient(#bbb, #bbb) 7px 8px / 14px 3px no-repeat,
    linear-gradient(#bbb, #bbb) 7px 14px / 14px 3px no-repeat,
    linear-gradient(#bbb, #bbb) 7px 20px / 14px 3px no-repeat;
  background-color: #fff;
}
.view-toggle span.is-active {
  border-color: var(--red);
}

@media (min-width: 700px) {
  .catalog__head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .view-toggle { margin-left: 0; }
}

/* Product cards */
.plist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pcard {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}
.pcard__media {
  display: block;
  background: #f3f3f3;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 14px;
}
.pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard h3 {
  font-size: 0.78rem;
  line-height: 1.3;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.pcard__price {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: #222;
}
.pcard .btn {
  align-self: center;
  min-width: 110px;
}

@media (min-width: 700px) {
  .plist { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1100px) {
  .plist { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

/* Pagination */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.pager a {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background: #fff;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #444;
}
.pager a.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.pager a.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.pager__nav { min-width: auto; }

/* Production CTA */
.prod-cta {
  background: #b5161c;
  color: #fff;
}
.prod-cta__inner {
  display: grid;
  gap: 20px;
  padding: 34px 0;
  align-items: center;
}
.prod-cta__copy {
  display: flex;
  gap: 16px;
  align-items: center;
}
.prod-cta__copy h2 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-bottom: 6px;
}
.prod-cta__copy p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}
.prod-cta__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 800px) {
  .prod-cta__inner {
    grid-template-columns: 1fr auto;
  }
}

/* ========== PRODUCT DETAIL PAGE ========== */

.page-pdp { background: #fff; }

/* Absolute header (~82px) hero üzerine biner; içeriği alta it. */
.page-hero--pdp {
  min-height: 300px;
}
.page-hero--pdp .page-hero__content {
  padding-top: 110px;
  padding-bottom: 32px;
  max-width: none;
  width: 100%;
}
.page-hero--pdp h1 {
  max-width: 100%;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  line-height: 1.15;
}

.pdp-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 18px 0 8px;
  font-size: 0.8rem;
  color: #888;
  position: relative;
  z-index: 1;
}
.pdp-crumb a:hover { color: var(--black); }
.pdp-crumb strong {
  color: #555;
  font-weight: 600;
  font-family: var(--body);
  text-transform: none;
  letter-spacing: 0;
}

.pdp { padding: 12px 0 40px; }
.pdp__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 960px) {
  .pdp__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start;
  }
}

/* Gallery */
.thumbs {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  position: relative;
}
.thumbs > input { position: absolute; opacity: 0; pointer-events: none; }
.thumbs > label {
  grid-column: 1;
  border: 1px solid #e5e5e5;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
}
.thumbs > label img {
  width: 100%; height: 100%; object-fit: cover;
}
.thumbs > label:hover { border-color: #bbb; }

#img1:checked ~ label[for="img1"],
#img2:checked ~ label[for="img2"],
#img3:checked ~ label[for="img3"],
#img4:checked ~ label[for="img4"],
#img5:checked ~ label[for="img5"] {
  border-color: var(--red);
}

.stage {
  grid-column: 2;
  grid-row: 1 / span 5;
  position: relative;
  background: #f3f3f3;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  color: inherit;
  font: inherit;
  text-align: left;
}
.stage img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
#img1:checked ~ .stage .stage__1,
#img2:checked ~ .stage .stage__2,
#img3:checked ~ .stage .stage__3,
#img4:checked ~ .stage .stage__4,
#img5:checked ~ .stage .stage__5 { opacity: 1; }

.stage__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(15, 15, 15, 0.72);
  color: #fff;
  pointer-events: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.stage:hover .stage__zoom {
  background: var(--red);
  transform: scale(1.04);
}

.badge-new {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: #fff;
  color: var(--red);
  border: 1px solid var(--red);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  pointer-events: none;
}

.gallery-note {
  margin-top: 10px;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  background: #f5f5f5;
  padding: 8px;
}

@media (max-width: 700px) {
  .thumbs {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .thumbs > label { grid-column: auto; }
  .stage {
    grid-column: 1 / -1;
    grid-row: 1;
    order: -1;
    margin-bottom: 4px;
  }
}

/* Buy box */
.buybox__cat {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.buybox__heading {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: 0;
  color: var(--black);
}
.buybox__sku {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 14px;
  font-size: 0.86rem;
  color: #777;
}
.buybox__sku span {
  font-weight: 500;
}
.buybox__sku strong {
  font-weight: 700;
  color: #333;
  letter-spacing: 0.02em;
}
.buybox__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 18px;
}
.buybox__price-value,
.buybox__price-value .woocommerce-Price-amount,
.buybox__price-value .amount,
.buybox__price-value bdi {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--red);
  margin: 0;
}
.buybox__price-value .woocommerce-Price-currencySymbol {
  font-weight: inherit;
}
.buybox__price-note {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888;
}
.buybox__lead {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 46ch;
}

.opt { margin-bottom: 20px; }
.opt__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.opt__head a {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--red);
  border-bottom: 1px solid currentColor;
}

.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  position: relative;
  width: 32px; height: 32px;
  cursor: pointer;
}
.swatch input { position: absolute; opacity: 0; }
.swatch i {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ccc;
}
.swatch input:checked + i {
  box-shadow: 0 0 0 2px var(--red);
}
.is-red i { background: #c62828; }
.is-navy i { background: #1a237e; }
.is-black i { background: #212121; }
.is-grey i { background: #9e9e9e; }
.is-mint i { background: #80cbc4; }

.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.sizes label { cursor: pointer; }
.sizes input { position: absolute; opacity: 0; pointer-events: none; }
.sizes span {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border: 1px solid #ddd;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  background: #fff;
}
.sizes input:checked + span {
  border-color: var(--red);
  color: var(--red);
}

.qty input {
  width: 88px;
  height: 44px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--body);
}

.buybox__actions {
  display: grid;
  gap: 10px;
  margin: 8px 0 20px;
}
.btn--cart { gap: 10px; }

.pay-safe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.pay-safe__iyzico {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.pay-safe__iyzico img {
  display: block;
  width: auto;
  height: 36px;
  max-width: 200px;
}

/* Trust bar */
.trust-bar {
  background: #f5f5f5;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 28px 0;
}
.trust-bar__grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  color: var(--red);
}
.trust-bar__grid span {
  color: #333;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (min-width: 800px) {
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Info */
.pdp-info { padding: 56px 0; }
.pdp-info__grid {
  display: grid;
  gap: 40px;
}
/* İki blok varsa yan yana; tek blok (sadece özellikler) tam genişlik */
@media (min-width: 900px) {
  .pdp-info__grid:has(> :nth-child(2)) {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.pdp-info__grid .specs {
  width: 100%;
  max-width: none;
}
.desc h2, .related h2 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.desc p { color: #555; margin-bottom: 16px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #444;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 14px; height: 14px;
  background: var(--red);
  clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 18%, 82% 0, 38% 62%);
}

.specs { position: relative; }
.specs > input { position: absolute; opacity: 0; pointer-events: none; }
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 18px;
}
.tabs label {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
#tab1:checked ~ .tabs label[for="tab1"],
#tab2:checked ~ .tabs label[for="tab2"],
#tab3:checked ~ .tabs label[for="tab3"],
#tab4:checked ~ .tabs label[for="tab4"],
#tab5:checked ~ .tabs label[for="tab5"],
#tab6:checked ~ .tabs label[for="tab6"],
#tab7:checked ~ .tabs label[for="tab7"],
#tab8:checked ~ .tabs label[for="tab8"] {
  color: var(--red);
  border-bottom-color: var(--red);
}
.panel { display: none; color: #555; font-size: 0.92rem; }
#tab1:checked ~ .tab-panels .panel-1,
#tab2:checked ~ .tab-panels .panel-2,
#tab3:checked ~ .tab-panels .panel-3,
#tab4:checked ~ .tab-panels .panel-4,
#tab5:checked ~ .tab-panels .panel-5,
#tab6:checked ~ .tab-panels .panel-6,
#tab7:checked ~ .tab-panels .panel-7,
#tab8:checked ~ .tab-panels .panel-8 { display: block; }

.panel__rich p { margin-bottom: 12px; }
.panel__rich p:last-child { margin-bottom: 0; }
.panel__rich ul,
.panel__rich ol {
  margin: 0 0 12px;
  padding-left: 1.2em;
}

.panel table { width: 100%; border-collapse: collapse; }
.panel th, .panel td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  font-weight: 500;
}
.panel th {
  width: 28%;
  max-width: 240px;
  color: #777;
  font-weight: 600;
  white-space: nowrap;
}
.panel tr:nth-child(even) { background: #fafafa; }

/* iyzico — ödeme + taksit (aynı sekme) */
.iyz-installments {
  display: grid;
  gap: 22px;
}
.iyz-installments__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  padding-bottom: 4px;
  width: 100%;
}
.iyz-installments__head img {
  height: 34px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
.iyz-installments__head p {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.45;
}
.iyz-installments__block {
  display: grid;
  gap: 12px;
}
.iyz-installments__title {
  margin: 0;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
}
.iyz-installments__lead {
  margin: 0;
  color: #777;
  font-size: 0.86rem;
  line-height: 1.45;
}
.iyz-installments__methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid #ececec;
}
.iyz-installments__methods li {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border-bottom: 1px solid #ececec;
}
.iyz-installments__methods li:last-child {
  border-bottom: 0;
}
.iyz-installments__methods strong {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.01em;
}
.iyz-installments__methods span {
  font-size: 0.86rem;
  color: #666;
  line-height: 1.4;
}
.iyz-installments__families {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.iyz-installments__families li {
  border: 1px solid #e5e5e5;
  background: #fafafa;
  padding: 7px 12px;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
}
.iyz-installments__table-wrap {
  overflow-x: auto;
  border: 1px solid #e8e8e8;
}
.iyz-installments__table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
}
.iyz-installments__table th,
.iyz-installments__table td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}
.iyz-installments__table th {
  background: #f7f7f7;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #666;
}
.iyz-installments__table tbody tr:nth-child(even) {
  background: #fafafa;
}
.iyz-installments__table tbody tr:last-child td {
  border-bottom: 0;
}
.iyz-installments__table td:nth-child(2),
.iyz-installments__table td:nth-child(3),
.iyz-installments__table th:nth-child(2),
.iyz-installments__table th:nth-child(3) {
  text-align: right;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}
.iyz-installments__table .woocommerce-Price-amount {
  font-weight: 700;
  color: inherit;
}
.iyz-installments__note {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  line-height: 1.45;
}

/* Product reviews */
@font-face {
  font-family: star;
  src:
    url("../fonts/star.woff") format("woff"),
    url("../fonts/star.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.pdp-reviews {
  padding: 28px 0 64px;
  border-top: 1px solid #eee;
  background:
    linear-gradient(180deg, #f7f7f7 0%, #fff 140px);
}
.pdp-reviews .woocommerce-Reviews {
  display: grid;
  gap: 28px;
}
.pdp-reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e8e8;
}
.pdp-reviews__eyebrow {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.pdp-reviews .woocommerce-Reviews-title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  margin: 0;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #111;
}
.pdp-reviews .woocommerce-Reviews-title span {
  font-weight: 700;
  color: #555;
}
.pdp-reviews__summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 160px;
}
.pdp-reviews__score {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #111;
  letter-spacing: -0.04em;
}
.pdp-reviews__summary-meta {
  display: grid;
  gap: 4px;
}
.pdp-reviews__count {
  font-size: 0.82rem;
  color: #777;
  font-weight: 600;
}
.pdp-reviews__layout {
  display: grid;
  gap: 28px;
}
.pdp-reviews__list {
  min-width: 0;
  width: 100%;
}
@media (min-width: 960px) {
  .pdp-reviews__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 40px;
    align-items: start;
  }
}
.pdp-reviews .commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.pdp-reviews .commentlist > li {
  padding: 22px 0;
  border-bottom: 1px solid #ececec;
  background: transparent;
}
.pdp-reviews .commentlist > li:first-child {
  padding-top: 4px;
}
.pdp-reviews .commentlist > li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.pdp-reviews .comment_container {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  width: 100%;
  position: relative;
}
/* WC avatar’ı absolute yapıyor → metin 48px sütuna düşüyordu */
.pdp-reviews #reviews #comments ol.commentlist li img.avatar,
.pdp-reviews .comment_container > img.avatar,
.pdp-reviews .comment_container .avatar {
  position: static !important;
  float: none !important;
  top: auto !important;
  left: auto !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 50%;
  object-fit: cover;
  background: #e8e8e8 !important;
  box-shadow: none !important;
  grid-column: 1;
}
.pdp-reviews #reviews #comments ol.commentlist li .comment-text,
.pdp-reviews .comment-text {
  min-width: 0 !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  float: none !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  grid-column: 2;
}
/* WooCommerce star-rating float’ı metni dar sütuna sıkıştırıyordu */
.pdp-reviews .star-rating,
.pdp-reviews__summary .star-rating {
  float: none !important;
  display: block;
  position: relative;
  overflow: hidden;
  height: 1em;
  line-height: 1;
  font-size: 0.95rem;
  width: 5.2em;
  max-width: 100%;
  margin: 0;
  color: var(--red);
  font-family: star;
  flex: 0 0 auto;
}
.pdp-reviews .star-rating::before,
.pdp-reviews__summary .star-rating::before {
  content: "sssss";
  color: #ddd;
  position: absolute;
  top: 0;
  left: 0;
  letter-spacing: 0.05em;
  float: none;
}
.pdp-reviews .star-rating span,
.pdp-reviews__summary .star-rating span {
  position: absolute !important;
  top: 0;
  left: 0;
  height: 1em;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  white-space: nowrap;
}
.pdp-reviews .star-rating span::before,
.pdp-reviews__summary .star-rating span::before {
  content: "SSSSS";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: star;
  color: var(--red);
}
.pdp-reviews .meta {
  margin: 0;
  font-size: 0.84rem;
  color: #888;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  width: 100%;
}
.pdp-reviews .woocommerce-review__author {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #111;
  letter-spacing: -0.01em;
}
.pdp-reviews .woocommerce-review__dash {
  display: none;
}
.pdp-reviews .woocommerce-review__published-date {
  color: #999;
  font-weight: 500;
}
.pdp-reviews .woocommerce-review__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: #f3f3f3;
  color: #444;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pdp-reviews .description {
  clear: both;
  float: none;
  width: 100%;
  max-width: 100%;
  margin: 2px 0 0;
}
.pdp-reviews .description p {
  margin: 0 0 8px;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 62ch;
}
.pdp-reviews .description p:last-child { margin-bottom: 0; }
.pdp-reviews .woocommerce-noreviews {
  color: #777;
  margin: 8px 0 0;
  font-size: 0.95rem;
}
.pdp-reviews #review_form_wrapper,
.pdp-reviews__form {
  background: #111;
  color: #fff;
  padding: 26px 24px 16px;
  position: sticky;
  top: 88px;
}
.pdp-reviews .comment-reply-title {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.pdp-reviews #review_form_wrapper::before {
  content: "Deneyimini paylaş";
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.pdp-reviews .comment-form {
  display: grid;
  gap: 14px;
}
.pdp-reviews .comment-form-rating label,
.pdp-reviews .comment-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 7px;
}
.pdp-reviews .comment-form .required {
  color: var(--red);
}
.pdp-reviews .comment-form input[type="text"],
.pdp-reviews .comment-form input[type="email"],
.pdp-reviews .comment-form textarea,
.pdp-reviews .comment-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 11px 13px;
  font: inherit;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.pdp-reviews .comment-form input::placeholder,
.pdp-reviews .comment-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.pdp-reviews .comment-form input:focus,
.pdp-reviews .comment-form textarea:focus,
.pdp-reviews .comment-form select:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.1);
}
.pdp-reviews .comment-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.pdp-reviews .comment-form select option {
  color: #111;
  background: #fff;
}
.pdp-reviews .comment-form textarea {
  min-height: 130px;
  resize: vertical;
}
.pdp-reviews .comment-form .form-submit {
  margin: 4px 0 10px;
}
.pdp-reviews .comment-form .submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: 0;
  min-height: 50px;
  padding: 0 22px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.pdp-reviews .comment-form .submit:hover {
  background: var(--red-dark, #c00a0e);
}
.pdp-reviews .comment-form .submit:active {
  transform: translateY(1px);
}
.pdp-reviews .must-log-in,
.pdp-reviews .woocommerce-verification-required {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.pdp-reviews .must-log-in a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 959px) {
  .pdp-reviews #review_form_wrapper,
  .pdp-reviews__form {
    position: static;
  }
}

/* Related */
.related { padding: 10px 0 64px; }
.related__track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.rcard {
  position: relative;
  border: 1px solid #e8e8e8;
  padding: 12px 12px 16px;
  text-align: center;
  background: #fff;
}
.rcard img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f3f3f3;
  margin-bottom: 12px;
}
.rcard h3 {
  font-size: 0.72rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
.rcard p {
  font-weight: 700;
  margin-bottom: 12px;
}
.badge-mini {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 1;
  background: var(--red);
  color: #fff;
  font-size: 0.58rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 7px;
}
@media (min-width: 700px) {
  .related__track { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .related__track { grid-template-columns: repeat(5, 1fr); }
}

/* ========== CUSTOM PRODUCTION FORM ========== */

.page-form { background: #f4f4f4; }
.page-form .btn--red { background: #df0c11; }
.page-form .btn--red:hover { background: #c00a0e; }
.page-form .preview__toggle label {
  border-radius: 4px 0 0 4px;
}
.page-form .preview__toggle label[for="view-arka"] {
  border-radius: 0 4px 4px 0;
}
#view-on:checked ~ label[for="view-on"],
#view-arka:checked ~ label[for="view-arka"] {
  background: #df0c11;
  color: #fff;
}

.field > span i {
  color: #df0c11;
  font-style: normal;
  margin-left: 2px;
}
.field input,
.field select,
.field textarea {
  border-radius: 6px;
}

.preview__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.preview__pair img,
.preview__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f3f3f3;
  border-radius: 6px;
  display: block;
  transition: filter 0.25s ease, transform 0.25s ease, clip-path 0.25s ease;
}
.preview__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.preview__stage {
  margin-bottom: 18px;
  position: relative;
  background: #f3f3f3;
  padding: 14px;
  border-radius: 8px;
  overflow: visible;
  aspect-ratio: auto;
}
.preview__stage .preview__pair {
  position: relative;
  z-index: 1;
}
.preview__stage .preview__pair img,
.preview__stage .preview__item img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  opacity: 1;
}
.preview__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}
.preview__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  background: #f0f0f0;
  color: #444;
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.preview__stage[data-view="back"] .preview__badges [data-badge-view] {
  background: #111;
  color: #fff;
}
.preview__stage[data-sleeve="long"] .preview__item img {
  transform: scale(1.04);
  object-position: center 35%;
}
.preview__stage[data-sleeve="sleeveless"] .preview__item img {
  clip-path: inset(0 10% 0 10%);
  transform: scale(1.08);
}
.preview__stage[data-sleeve="long"] .preview__item::before,
.preview__stage[data-sleeve="sleeveless"] .preview__item::before,
.preview__stage[data-view="back"] .preview__item::before {
  content: attr(data-note);
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 3;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  pointer-events: none;
}
.preview__stage[data-sleeve="long"] .preview__item::before {
  content: "Uzun kol";
}
.preview__stage[data-sleeve="sleeveless"] .preview__item::before {
  content: "Kolsuz";
}
.preview__stage[data-view="back"][data-sleeve="short"] .preview__item::before {
  content: "Arka yüz";
}
.preview__stage[data-view="back"][data-sleeve="long"] .preview__item::before {
  content: "Arka · Uzun kol";
}
.preview__stage[data-view="back"][data-sleeve="sleeveless"] .preview__item::before {
  content: "Arka · Kolsuz";
}
.preview__stage[data-collar="crew"] .preview__item::after,
.preview__stage[data-collar="polo"] .preview__item::after,
.preview__stage[data-collar="v"] .preview__item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 14%;
  width: 18%;
  height: 8%;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 40% 40% 20% 20%;
  pointer-events: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.preview__stage[data-collar="v"] .preview__item::after {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border-radius: 0;
  height: 10%;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
}
.preview__stage[data-collar="polo"] .preview__item::after {
  border-radius: 4px 4px 0 0;
  height: 7%;
  width: 22%;
}
.field-row--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .field-row--3 { grid-template-columns: repeat(3, 1fr); }
}

.is-yellow i { background: #f1c40f; }
.is-purple i { background: #7e57c2; }

.page-form .swatch input:checked + i {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1a1a1a;
}
.pattern input:checked + span {
  border-color: #df0c11;
  box-shadow: 0 0 0 1px #df0c11;
}
.swatch-add {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px dashed #bbb;
  background: #fff;
  color: #666;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.swatch-add:hover {
  border-color: #df0c11;
  color: #df0c11;
}

.wizard__form,
.preview {
  border-radius: 8px;
}
.wizard__form .btn--block {
  border-radius: 6px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.preview__head {
  align-items: flex-start;
}
.preview__head .wizard__hint {
  margin: 4px 0 0;
}

.form-hero {
  position: relative;
  min-height: 260px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.form-hero__bg { position: absolute; inset: 0; }
.form-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}
.form-hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.4) 100%);
}
.form-hero__content {
  position: relative;
  z-index: 1;
  padding: 56px 0;
}
.form-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}
.form-hero p {
  color: var(--red);
  font-size: 1rem;
  font-weight: 600;
}

.wizard {
  padding: 28px 0 56px;
}

/* Mockup stepper: red active circle, grey idle + black nums, line through centers, red underline */
.wizard__steps {
  --step-red: #df0c11;
  --step-line: #d2d2d2;
  --step-idle: #ededed;
  --step-text: #1c1c1c;
  --step-size: 38px;
  list-style: none;
  margin: 0 0 24px;
  padding: 32px 16px 20px;
  background: #fff;
  border: 1px solid #ececec;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

/* Connecting line through circle centers */
.wizard__steps::before {
  content: "";
  position: absolute;
  top: calc(32px + (var(--step-size) / 2) - 1px);
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--step-line);
  z-index: 0;
}

.wizard__steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  padding: 0 4px 12px;
}

.wizard__num {
  width: var(--step-size);
  height: var(--step-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  background: var(--step-idle);
  color: var(--step-text);
  position: relative;
  z-index: 1;
}

.wizard__label {
  font-style: normal;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--step-text);
  white-space: nowrap;
}

.wizard__steps .is-active .wizard__num {
  background: var(--step-red);
  color: #fff;
  font-weight: 800;
}

.wizard__steps .is-active .wizard__label {
  font-weight: 800;
  color: var(--step-text);
}

/* Red underline under active step label */
.wizard__steps .is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 11.5rem);
  bottom: 0;
  height: 3px;
  background: var(--step-red);
}

@media (max-width: 800px) {
  .wizard__steps {
    --step-size: 30px;
    padding: 24px 6px 16px;
  }
  .wizard__steps::before {
    top: calc(24px + 15px - 1px);
    left: 5%;
    right: 5%;
  }
  .wizard__num { font-size: 0.78rem; }
  .wizard__label {
    font-size: 0.5rem;
    letter-spacing: 0.01em;
    white-space: normal;
    max-width: 8.5ch;
  }
  .wizard__steps .is-active::after {
    width: 85%;
  }
}

@media (min-width: 900px) {
  .wizard__steps {
    --step-size: 40px;
    padding: 36px 48px 22px;
  }
  .wizard__steps::before {
    top: calc(36px + 20px - 1px);
    left: 8%;
    right: 8%;
  }
  .wizard__num { font-size: 1rem; }
  .wizard__label { font-size: 0.74rem; }
}

.wizard__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 960px) {
  .wizard__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: start;
  }
}

.wizard__form,
.preview {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 28px 24px;
}
.wizard__form h2,
.preview h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.wizard__hint {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}
.field > span,
.upload__label {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: var(--body);
  font-size: 0.92rem;
  color: #222;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.field-row {
  display: grid;
  gap: 12px;
}
@media (min-width: 600px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.preview__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.preview__toggle {
  display: inline-flex;
  border: 1px solid #ddd;
  position: relative;
}
.preview__toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.preview__toggle label {
  min-width: 56px;
  height: 34px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  color: #777;
  background: #f5f5f5;
}
#view-on:checked ~ label[for="view-on"],
#view-arka:checked ~ label[for="view-arka"] {
  background: var(--red);
  color: #fff;
}

/* Legacy stacked front/back layers (kept for older markup) */
.preview__on,
.preview__arka {
  opacity: 1;
}
.preview:has(#view-arka:checked) .preview__on:not(.preview__item img) {
  opacity: 0;
}
.preview:has(#view-arka:checked) .preview__arka {
  opacity: 1;
}

.patterns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pattern {
  position: relative;
  width: 44px; height: 44px;
  cursor: pointer;
}
.pattern input { position: absolute; opacity: 0; }
.pattern span {
  display: block;
  width: 100%; height: 100%;
  border: 1px solid #ddd;
  background:
    repeating-linear-gradient(-45deg, #eee, #eee 4px, #fafafa 4px, #fafafa 8px);
}
.pattern:nth-child(2) span {
  background:
    radial-gradient(circle at 30% 30%, #ddd 2px, transparent 2.5px) 0 0 / 10px 10px,
    #f7f7f7;
}
.pattern:nth-child(3) span {
  background: linear-gradient(135deg, #e0e0e0, #fafafa);
}
.pattern:nth-child(4) span {
  background:
    repeating-linear-gradient(90deg, #e8e8e8, #e8e8e8 3px, #fff 3px, #fff 8px);
}
.pattern input:checked + span {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.upload { margin-top: 8px; }
.upload__label { display: block; margin-bottom: 8px; }
.upload__box {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 120px;
  border: 1.5px dashed #ccc;
  background: #fafafa;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.upload__box:hover { border-color: var(--red); }
.upload__box input { display: none; }
.upload__box strong {
  font-size: 0.88rem;
  color: #444;
}
.upload__box em {
  font-style: normal;
  font-size: 0.78rem;
  color: #999;
}

.form-benefits {
  background: #fff;
  border-top: 1px solid #ececec;
}
.form-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 36px 0;
}
.form-benefits__grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  color: var(--red);
}
.form-benefits__grid span {
  color: #333;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-benefits__grid p {
  margin: 0;
  color: #777;
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 22ch;
}
@media (min-width: 800px) {
  .form-benefits__grid { grid-template-columns: repeat(4, 1fr); }
}

.quote-msg.is-ok { color: #0a7a32; }
.quote-msg.is-err { color: var(--red); }

/* PDP lightbox */
.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pdp-lightbox.is-open {
  display: flex;
}
.pdp-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  border: 0;
  padding: 0;
  cursor: zoom-out;
}
.pdp-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  max-height: min(88vh, 960px);
  display: grid;
  place-items: center;
}
.pdp-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(88vh, 960px);
  width: auto;
  height: auto;
  object-fit: contain;
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.pdp-lightbox__close,
.pdp-lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.pdp-lightbox__close:hover,
.pdp-lightbox__nav:hover {
  background: var(--red);
  color: #fff;
}
.pdp-lightbox__close {
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  z-index: 2;
}
.pdp-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  z-index: 2;
}
.pdp-lightbox__nav--prev { left: 12px; }
.pdp-lightbox__nav--next { right: 12px; }
.pdp-lightbox__nav[hidden] { display: none; }
.pdp-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
}
body.is-pdp-lightbox-open { overflow: hidden; }

@media (max-width: 700px) {
  .pdp-lightbox { padding: 12px; }
  .pdp-lightbox__nav--prev { left: 4px; }
  .pdp-lightbox__nav--next { right: 4px; }
  .stage__zoom {
    width: 32px;
    height: 32px;
  }
}


/* ========== CONTACT PAGE ========== */
.contact-page {
  padding: 48px 0 72px;
  background: #f4f4f4;
}
.contact-page__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .contact-page__grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}
.contact-page__eyebrow {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.contact-page__info h1 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.contact-page__lead {
  margin: 0 0 24px;
  color: #666;
  line-height: 1.5;
  max-width: 36rem;
}
.contact-page__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.contact-page__list li {
  display: grid;
  gap: 4px;
}
.contact-page__list strong {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
}
.contact-page__list span,
.contact-page__list a {
  color: #222;
  text-decoration: none;
  line-height: 1.45;
}
.contact-page__list a:hover { color: var(--red); }
.contact-page__form {
  background: #fff;
  padding: 28px;
  display: grid;
  gap: 14px;
}
.contact-page__form .field { margin: 0; }
.esenspor-quote-only {
  margin: 12px 0 8px;
  display: grid;
  gap: 12px;
}
.esenspor-quote-only__note {
  margin: 0;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.45;
}


/* ========== ABOUT PAGE ========== */
.about-page__hero {
  padding: 56px 0 40px;
  background: #111;
  color: #fff;
}
.about-page__hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-page__hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}
.about-page__eyebrow {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.about-page__hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: #fff;
}
.about-page__lead {
  margin: 0 0 12px;
  font-size: 1.1rem;
}
.about-page__hero-copy p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 40rem;
}
.about-page__hero-copy .btn { margin-top: 8px; }
.about-page__hero-media {
  margin: 0;
  overflow: hidden;
}
.about-page__hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.about-page__section {
  padding: 48px 0;
  background: #fff;
}
.about-page__section--alt {
  background: #f4f4f4;
}
.about-page__prose {
  max-width: 48rem;
}
.about-page__prose h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}
.about-page__prose p {
  margin: 0 0 14px;
  color: #444;
  line-height: 1.65;
}
.about-page__bullets {
  margin: 0 0 14px;
  padding: 0 0 0 1.1rem;
  color: #333;
  line-height: 1.7;
}
.contact-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-page__map {
  margin-top: 36px;
}
.contact-page__map iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  border: 0;
  background: #e8e8e8;
}


/* Düz içerik sayfaları (gizlilik, iade vb.) */
.page-hero--simple {
  min-height: 0;
  align-items: center;
  background: #111;
  color: #fff;
}
.page-hero--simple .page-hero__content {
  max-width: none;
  padding: 28px 0 32px;
}
.page-hero--simple .breadcrumb strong {
  color: #fff;
}
.page-hero--simple h1 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.page-simple .site-main {
  background: #f4f4f4;
}
.page-simple .page-article {
  padding: 0 0 64px;
}
.page-simple .entry-content--prose {
  padding-top: 28px;
}
.page-prose {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: clamp(24px, 4vw, 40px);
}
.page-prose > *:first-child { margin-top: 0; }
.page-prose > *:last-child { margin-bottom: 0; }
.page-prose p {
  margin: 0 0 1em;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}
.page-prose strong { color: #111; }
.page-prose a {
  color: var(--red, #df0c11);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-prose ul,
.page-prose ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
  color: #333;
  line-height: 1.7;
}
