/* ============================================================
   RESET & ROOT
============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* renkler */
  --bg-white: #FFFFFF;
  --text-main: #171717;
  --text-secondary: #5E5A54;
  --text-muted: #9A948B;
  --brand-gold: #C89A45;
  --brand-red: #C52B32;
  --brand-red-dark: #991B22;
  --text-inverse: #FFF;
  --brand-silver: #A9ACA7;
  --brand-green: #3F6F2A;
  --green-dark: #324220;
  --border-light: #E8DED1;
  --border-soft: #F0E8DC;
  --top-bar-bg: #FCF9F7;
  --bg-soft-grey: #FCF9F7;
  --shadow: 0 4px 12px 0 rgba(216, 199, 178, 0.40);
}

html {
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  color: var(--text-main);
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

/* ortak metin stilleri */
.s1 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
.s2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

/* ============================================================
   SLIDER
============================================================ */
.slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: #f3e7d4;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slide-inner {
  width: min(640px, 50%);
  margin-left: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  color: var(--brand-red);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15px;
  margin-bottom: 16px;
}

.hero-title {
  color: var(--text-main);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 98px;
  font-weight: 600;
  line-height: 98px;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-title .red {
  color: var(--brand-red);
}

.hero-desc {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15px;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  height: 44px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-red);
  color: #fff;
}
.btn-light {
  background: var(--bg-white);
  color: var(--brand-red);
}

/* ---- yan navigasyon ---- */
.slider-nav {
  position: absolute;
  left: 36px;
  z-index: 5;
  width: 44px;
  height: 44px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.80);
  color: var(--text-secondary);
}
.slider-nav.prev {
  top: calc(50% - 50px);
}
.slider-nav.next {
  top: calc(50% + 6px);
}
.slider-nav.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ---- alt gösterge ---- */
.slider-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}
.ind-current {
  color: var(--text-main);
  font-size: 24px;
  font-weight: 700;
}
.ind-total {
  color: var(--brand-silver);
  font-size: 24px;
  font-weight: 700;
}
.ind-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ind-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-silver);
  cursor: pointer;
  transition: all 0.3s ease;
}
.ind-dot.is-active {
  width: 12px;
  height: 12px;
  background: var(--brand-red);
}

/* ============================================================
   HEADER (dış kutu)
============================================================ */
.header {
  position: fixed; /* sayfa kaysa da header sabit kalır */
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;

  width: min(1520px, calc(100% - 400px));  /* 1920px'de soldan/sağdan 200px boşluk */

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 6px 6px 8px 6px;
  border-radius: 30px;
  background: var(--bg-white);
  box-shadow: var(--shadow);
}

/* üst+alt bar grubu — açılır menüden bağımsız sabit boşluk */
.header-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================================
   AÇILIR MENÜ (kategoriler + hızlı erişim)
============================================================ */
.header-menu {
  width: 100%;
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, margin-top 0.35s ease, opacity 0.25s ease;
}
.header.is-menu-open .header-menu {
  grid-template-rows: 1fr;
  margin-top: 18px;
  opacity: 1;
}
.header-menu-inner {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.header-menu-divider {
  width: 100%;
  height: 1px;
  align-self: stretch;
  background: var(--border-light);
}
.header-menu-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 0 24px;
}
.header-menu-link {
  color: var(--text-main);
  font-feature-settings: 'liga' off;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header-menu-link:hover {
  color: var(--brand-red);
}
.header-menu-cta {
  display: flex;
  height: 54px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 15px;
  background: var(--brand-red);
  color: var(--text-inverse);
  font-feature-settings: 'liga' off;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  white-space: nowrap;
}

/* mobil menü içeriği masaüstünde gizli (.search-box'ı ezmek için özgüllük yüksek) */
.header-menu .hm-mobile {
  display: none;
}

/* ============================================================
   ÜST BAR (info)
============================================================ */
.header-top {
  width: 100%;                 /* dış kutuda üst/sol/sağ 6px boşluk (padding ile) */
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-radius: 24px 24px 0 0;
  background: var(--top-bar-bg);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
.info-item .icon {
  color: var(--brand-gold);
}

/* ============================================================
   ALT BAR (nav)
============================================================ */
.header-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}

/* ---- sol grup ---- */
.header-left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

/* menü butonu */
.menu-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--brand-gold);
  background: var(--bg-white);
  box-shadow: var(--shadow);
  color: var(--text-secondary);
}
.menu-btn .menu-icon-close {
  display: none;
}
.menu-btn.is-active .menu-icon-open {
  display: none;
}
.menu-btn.is-active .menu-icon-close {
  display: block;
}

/* logo */
.logo {
  flex-shrink: 0;
  margin-left: 24px;
  display: flex;
  align-items: center;
}
.logo img {
  width: 152px;
  height: 80px;
  aspect-ratio: 19 / 10;
  object-fit: contain;
  display: block;
}

/* arama kutusu */
.search-box {
  width: 600px;
  height: 54px;
  flex-shrink: 1;
  margin-left: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 60px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: var(--shadow);
}
.search-box .search-icon {
  flex-shrink: 0;
  color: var(--text-muted);
}
.search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
.search-input::placeholder {
  color: var(--text-muted);
}
.search-submit {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
}

/* ---- sağ grup ---- */
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

/* dil kutusu */
.lang-box {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 15px;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
}
.lang-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.15px;
}
.lang-box .icon {
  color: var(--text-secondary);
}

/* hesabım */
.account {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}
.account-icon {
  color: var(--text-secondary);
}
.account-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.account-text strong {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--text-main);
}
.account-text small {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: var(--text-muted);
}

/* ayraç çizgi */
.divider {
  width: 1px;
  height: 70px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* favoriler / sepet */
.icon-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
.icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-action .icon {
  color: var(--text-secondary);
}

/* ---- mini sepet popup ---- */
.mini-cart-wrap {
  position: relative;
}
.mini-cart {
  position: absolute;
  top: calc(100% + 18px);
  right: -12px;
  width: 360px;
  padding: 20px;
  border-radius: 15px;
  background: var(--bg-white);
  box-shadow: 0 12px 32px 0 rgba(23, 23, 23, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.mini-cart-wrap.is-open .mini-cart {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mini-cart-arrow {
  position: absolute;
  top: -7px;
  right: 24px;
  width: 14px;
  height: 14px;
  background: var(--bg-white);
  transform: rotate(45deg);
  box-shadow: -3px -3px 6px 0 rgba(23, 23, 23, 0.04);
}
.mini-cart-items {
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mini-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.mini-cart-item:hover {
  background: var(--bg-soft-grey);
}
.mini-cart-item-img-link {
  flex-shrink: 0;
}
.mini-cart-item-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--border-soft);
  flex-shrink: 0;
}
.mini-cart-item-info {
  flex: 1;
  min-width: 0;
}
.mini-cart-item-name {
  display: block;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-cart-item-meta {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 11px;
}
.mini-cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}
.mini-cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 26px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
}
.mini-cart-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1;
  transition: color 0.15s ease;
}
.mini-cart-qty-btn:hover {
  color: var(--brand-red);
}
.mini-cart-qty-value {
  min-width: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
}
.mini-cart-item-price {
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.mini-cart-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  color: var(--text-muted);
  transition: color 0.15s ease, background 0.15s ease;
}
.mini-cart-remove:hover {
  color: #fff;
  background: var(--brand-red);
}
.mini-cart-empty {
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
.mini-cart-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.mini-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
}
.mini-cart-total strong {
  color: var(--brand-red);
  font-size: 18px;
  font-weight: 800;
}
.mini-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.mini-cart-btn:hover {
  background: var(--brand-red-dark);
}
.badge {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid var(--brand-red);
  background: var(--brand-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* ============================================================
   CATEGORIES
============================================================ */
.categories {
  width: min(1520px, calc(100% - 400px));
  margin: 36px auto 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: 491fr 362fr 362fr 233fr;
  grid-template-rows: 190px 190px;
  gap: 24px;
}

.cat-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--brand-gold);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--text-main);
}
.cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cat-box:hover .cat-img {
  transform: scale(1.08);
}
.cat-box > .cat-title,
.cat-box > .cat-btn,
.cat-box > .cat-icon {
  position: relative;
  z-index: 1;
}

.cat-big  { grid-column: 1; grid-row: 1 / 3; }
.cat-s1   { grid-column: 2; grid-row: 1; }
.cat-s2   { grid-column: 3; grid-row: 1; }
.cat-s3   { grid-column: 2; grid-row: 2; }
.cat-s4   { grid-column: 3; grid-row: 2; }
.cat-tall { grid-column: 4; grid-row: 1 / 3; }

.cat-small,
.cat-tall {
  padding: 20px;
}

.cat-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1;
}
.cat-title-lg { font-size: 49px; }
.cat-title-sm { font-size: 24px; }

.cat-btn {
  align-self: flex-start;
  display: inline-flex;
  height: 44px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  background: var(--brand-red);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}

.cat-icon {
  align-self: flex-start;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
  background: var(--bg-white);
  color: var(--text-main);
}

/* ============================================================
   PRODUCTS
============================================================ */
.products {
  width: min(1520px, calc(100% - 400px));
  margin: 80px auto 0;
}

.products-head {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}
.ph-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ph-eyebrow {
  color: var(--brand-red);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15px;
}
.ph-main {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 49px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-main);
}
.ph-main .red {
  color: var(--brand-red);
}
.ph-line {
  width: 1px;
  height: 42px;
  background: var(--border-light);
  flex-shrink: 0;
}
.ph-desc {
  width: 268px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.4;
}
.ph-all {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  white-space: nowrap;
}
.ph-all-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid var(--border-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 362px));
  justify-content: center;
  gap: 24px;
}

.product-card {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: var(--shadow);
}

.pc-media {
  position: relative;
  width: calc(100% - 24px);
  aspect-ratio: 1 / 1;
  border-radius: 15px;
  overflow: hidden;
}
.pc-img {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.pc-media:hover .pc-img {
  transform: scale(1.08);
}

.pc-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
.pc-label-discount {
  padding: 0 12px;
  border-radius: 60px;
  background: var(--brand-red);
}
.pc-label-gold {
  padding: 0 12px;
  border-radius: 30px;
  border: 2px solid #FAD269;
  background: linear-gradient(90deg, #EBA213 0%, #FAD269 100%);
}
.pc-label-soldout {
  padding: 0 12px;
  border-radius: 60px;
  background: var(--text-muted);
}

.pc-fav {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--bg-white);
  box-shadow: var(--shadow);
}

.pc-body {
  width: calc(100% - 24px);
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pc-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 52px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15px;
  color: var(--text-main);
}
.pc-desc {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--text-secondary);
}
.pc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.pc-rating .star {
  display: block;
  color: var(--brand-red);
}
.pc-rating strong {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 1;
  color: var(--text-main);
}
.pc-rating span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1;
  color: var(--text-muted);
}
.pc-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-price-new {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-red);
}
.pc-price-old {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.pc-gram {
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: var(--text-muted);
}
.pc-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.pc-buy {
  flex: 1 0 0;
  height: 44px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 2px solid var(--brand-red);
  background: transparent;
  color: var(--brand-red);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  transition: background 0.25s ease, color 0.25s ease;
}
.pc-buy:hover {
  background: var(--brand-red);
  color: #fff;
}
.pc-buy:disabled {
  flex: 1 0 100%;
  border-color: var(--border-light);
  color: var(--text-muted);
  background: transparent;
  cursor: not-allowed;
}
.pc-buy:disabled:hover {
  background: transparent;
  color: var(--text-muted);
}
.pc-cart {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--brand-red);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.pc-cart:hover {
  transform: scale(1.08);
  filter: brightness(0.92);
}

/* ============================================================
   PROMO
============================================================ */
.promo {
  width: min(1520px, calc(100% - 400px));
  margin: 80px auto 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 748fr 362fr 362fr;
  gap: 24px;
}

.promo-card {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #D9D9D9;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.promo-cargo {
  background-color: var(--brand-red);
}

.promo-eyebrow {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
.promo-mid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
}
.promo-title-lg {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 49px;
  font-weight: 600;
  line-height: 49px;
}
.promo-title-md {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.25px;
}
.promo-title-md.green { color: var(--brand-green); }
.promo-title-md.white { color: #fff; }

.promo-sub {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
.promo-sub.light { color: #fff; }
.promo-sub.muted { color: var(--text-secondary); max-width: 240px; }

.promo-btn {
  display: inline-flex;
  height: 44px;
  padding: 10px 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 15px;
  background: var(--green-dark);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  transition: filter 0.2s ease;
}
.promo-wide .promo-btn {
  padding: 10px 12px;
}
.promo-btn:hover {
  filter: brightness(1.15);
}

.promo-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #fff;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.promo-icon:hover {
  background: #fff;
  color: var(--brand-red);
}

/* ============================================================
   WHY
============================================================ */
.why {
  width: min(1520px, calc(100% - 400px));
  margin: 80px auto 0;
}

.why-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 233px));
  justify-content: center;
  gap: 24px;
}

.why-box {
  height: 100px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 15px;
  border: 1px solid var(--border-light);
}
.why-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
}
.why-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15px;
  color: var(--text-main);
}
.why-desc {
  width: 140px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--text-muted);
  line-height: 1.25;
}

/* ============================================================
   BLOG
============================================================ */
.blog {
  width: min(1520px, calc(100% - 400px));
  margin: 80px auto 0;
}
.blog-head {
  margin-bottom: 36px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 491px));
  justify-content: center;
  gap: 24px;
}

.blog-card {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #D9D9D9;
}
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.00) 67.82%);
}
.blog-card > * {
  position: relative;
  z-index: 1;
}

.blog-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1;
}

.blog-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.blog-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15px;
  line-height: 1.3;
  max-width: 280px;
}
.blog-btn {
  display: inline-flex;
  height: 44px;
  padding: 10px 12px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 15px;
  background: var(--brand-gold);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  transition: filter 0.2s ease;
}
.blog-btn:hover {
  filter: brightness(1.08);
}

/* ============================================================
   BLOG DETAY
============================================================ */
.blog-detail {
  width: min(1520px, calc(100% - 400px));
  margin: 48px auto 0;
}
.blog-detail-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.blog-detail-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
}
.blog-detail-title {
  color: var(--text-main);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
}
.blog-detail-date {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.blog-detail-cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 32px;
}
.blog-article {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}
.blog-article p {
  margin-bottom: 18px;
}
.blog-article h2,
.blog-article h3 {
  color: var(--text-main);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  margin: 28px 0 12px;
}
.blog-article h2 { font-size: 32px; }
.blog-article h3 { font-size: 25px; }
.blog-article ul,
.blog-article ol {
  margin: 0 0 18px;
  padding-left: 26px;
}
.blog-article li {
  margin-bottom: 8px;
}
.blog-article blockquote {
  margin: 24px 0;
  padding: 16px 22px;
  border-left: 4px solid var(--brand-gold);
  border-radius: 0 12px 12px 0;
  background: var(--bg-soft-grey);
  color: var(--text-main);
  font-weight: 500;
}
.blog-article a {
  color: var(--brand-red);
  text-decoration: underline;
}
.blog-article img {
  max-width: 100%;
  border-radius: 15px;
  margin: 8px 0 18px;
}
.blog-article strong {
  color: var(--text-main);
}

/* ============================================================
   İLETİŞİM
============================================================ */
.contact-section {
  margin-bottom: 96px;
}
.contact-form-card {
  margin-bottom: 40px;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
}
.contact-form-head {
  margin-bottom: 24px;
}
.contact-form-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-main);
}
.contact-form-desc {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .auth-submit {
  width: auto;
  align-self: flex-start;
  padding: 0 32px;
}
.contact-alert {
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
}
.contact-alert.is-success {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
}
.contact-alert.is-error {
  background: rgba(198, 40, 40, 0.1);
  color: var(--brand-red);
}
@media (max-width: 600px) {
  .contact-form-card {
    padding: 24px;
  }
  .contact-form .auth-submit {
    width: 100%;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 15px;
  border: 1px solid var(--border-light);
  color: var(--text-main);
}
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--brand-red);
  color: #fff;
}
.contact-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
}
.contact-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
}
.contact-desc a {
  color: var(--brand-red);
}

/* ============================================================
   GALERİ
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-cream);
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
}

/* ============================================================
   ÜYELİK (giriş / üye ol)
============================================================ */
.auth-shell {
  width: min(1006px, calc(100% - 48px));
  margin: 56px auto 96px;
}
/* dış panel: fotoğraf panelin TAMAMININ arkaplanı, beyaz kart üzerinde yüzer */
.auth-panel {
  position: relative;
  width: 100%;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--brand-red-dark);
  background-size: cover;
  background-position: center;
  display: flex;
}
/* kutu absolute değil, normal akışta — içerik (üye ol formu) uzayınca panel de büyür, scroll olmaz */
.auth-form-side {
  margin: 24px;
  width: 467px;
  max-width: calc(100% - 48px);
  display: flex;
  padding: 48px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
  border-radius: 15px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
}
.auth-title {
  color: var(--text-main);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 600;
}
.auth-subtitle {
  margin-top: -16px;
  color: var(--text-muted);
  font-size: 14px;
}
.auth-tabs {
  display: flex;
  width: 100%;
}
.auth-tab {
  display: flex;
  height: 36px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.auth-tab:first-child {
  border-radius: 15px 0 0 15px;
  border-right: none;
}
.auth-tab:last-child {
  border-radius: 0 15px 15px 0;
  border-left: none;
}
.auth-tab.is-active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.auth-form {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 16px;
}
.auth-form.is-active {
  display: flex;
}
.auth-field {
  position: relative;
  width: 100%;
}
.auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.auth-input {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 16px;
  border-radius: 15px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.15s ease;
}
.auth-input::placeholder {
  color: var(--text-muted);
}
.auth-input:focus {
  border-color: var(--brand-gold);
}
textarea.auth-input {
  height: auto;
  min-height: 130px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.5;
}
.auth-field-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  background: none;
  border: none;
  cursor: default;
}
button.auth-field-icon {
  cursor: pointer;
}
.auth-hint {
  color: var(--brand-gold);
  font-size: 12px;
}
.auth-hint strong {
  color: var(--brand-gold);
  font-weight: 700;
}
.auth-forgot {
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 600;
}
.auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 44px;
  border-radius: 15px;
  background: var(--brand-red);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.auth-submit:hover {
  background: var(--brand-red-dark);
}
.auth-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 96px;
  height: 96px;
  z-index: 2;
}
.auth-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 720px) {
  .auth-panel {
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  .auth-form-side {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .auth-field-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PROFİLİM
============================================================ */
.profile-shell {
  width: min(1206px, calc(100% - 48px));
  min-height: 618px;
  margin: 40px auto 96px;
  display: flex;
  padding: 24px;
  align-items: center;
  gap: 48px;
  border-radius: 15px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: var(--shadow);
}
.profile-side {
  position: relative;
  width: 362px;
  flex-shrink: 0;
  display: flex;
  padding: 48px 24px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 15px;
  background: url('../img/profil-cay-bardagi.png') center/cover no-repeat, var(--brand-red-dark);
  align-self: stretch;
  color: #fff;
  overflow: hidden;
}
.profile-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(153, 27, 34, 0.55) 0%, rgba(153, 27, 34, 0.75) 100%);
  z-index: 0;
}
.profile-side > * {
  position: relative;
  z-index: 1;
}
/* avatar/isim/puan tek küme olarak sıkı, divider+nav'dan ayrı boşluklu */
.profile-header-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.profile-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 4px;
  border-radius: 50%;
  border: 2px solid var(--brand-gold);
}
.profile-welcome {
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
}
.profile-name {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.profile-points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  margin-top: 4px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
}
.profile-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.profile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.profile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease;
  border: 1px solid transparent;
}
.profile-nav-link svg {
  flex-shrink: 0;
}
.profile-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}
.profile-nav-link.is-active {
  border-color: var(--brand-gold);
  color: #fff;
}
.profile-main {
  flex: 1;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.profile-title {
  color: var(--text-main);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 600;
}
.profile-subtitle {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
}
/* sekmeler — üyelik (giriş/üye ol) sayfasındaki auth-tab ile birebir aynı */
.profile-tabs {
  display: flex;
  width: 100%;
  max-width: 419px;
  margin-top: 24px;
}
.profile-tab {
  display: flex;
  height: 36px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.profile-tab:first-child {
  border-radius: 15px 0 0 15px;
  border-right: none;
}
.profile-tab:last-child {
  border-radius: 0 15px 15px 0;
  border-left: none;
}
.profile-tab.is-active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.profile-form {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.profile-form.is-active {
  display: flex;
}
.profile-field-row {
  display: flex;
  gap: 16px;
}
.profile-field {
  position: relative;
  display: flex;
  width: 100%;
  height: 44px;
  padding: 0 12px;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-radius: 15px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  transition: border-color 0.15s ease;
}
.profile-field:focus-within {
  border-color: var(--brand-gold);
}
.profile-field-row .profile-field {
  flex: 1 0 0;
  width: auto;
}
.profile-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0;
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  outline: none;
}
.profile-input:disabled {
  cursor: not-allowed;
}
.profile-field-icon {
  position: static;
  transform: none;
  width: 24px;
  height: 24px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  color: var(--text-muted);
  display: flex;
  pointer-events: none;
}
.profile-hint {
  color: var(--brand-gold);
  font-size: 12px;
}
.profile-submit {
  display: flex;
  width: 240px;
  height: 44px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  background: var(--brand-red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.profile-submit:hover {
  background: var(--brand-red-dark);
}
.profile-placeholder {
  padding: 48px 0;
  text-align: center;
  color: var(--text-muted);
}

/* Adreslerim / Siparişlerim / Puanlarım — ortak liste/kart stilleri */
.profile-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.profile-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
}
.profile-card-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-card-title {
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
}
.profile-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--brand-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.profile-card-text {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}
.profile-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.profile-card-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  transition: color 0.15s ease, background 0.15s ease;
}
.profile-card-icon-btn:hover {
  color: var(--brand-red);
}
.profile-card-icon-btn.is-danger:hover {
  background: var(--brand-red);
  color: #fff;
}
.profile-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  height: 40px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--brand-red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.profile-add-btn:hover {
  background: var(--brand-red-dark);
}
.profile-empty {
  margin-top: 32px;
  padding: 48px 24px;
  text-align: center;
  color: var(--text-muted);
  border: 1px dashed var(--border-light);
  border-radius: 12px;
}
.profile-points-balance {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--bg-soft-grey);
}
.profile-points-balance strong {
  color: var(--brand-red);
  font-size: 28px;
  font-weight: 800;
}
.order-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.order-status-new { background: rgba(200, 154, 69, 0.18); color: var(--brand-gold); }
.order-status-approved { background: rgba(63, 111, 42, 0.18); color: var(--brand-green); }
.order-status-preparing { background: rgba(200, 154, 69, 0.18); color: var(--brand-gold); }
.order-status-shipped { background: rgba(38, 92, 173, 0.15); color: #265CAD; }
.order-status-delivered { background: rgba(63, 111, 42, 0.25); color: var(--green-dark); }
.order-status-cancelled { background: rgba(197, 43, 50, 0.15); color: var(--brand-red); }
.order-status-refunded { background: var(--border-soft); color: var(--text-secondary); }

@media (max-width: 1000px) {
  .profile-shell {
    flex-direction: column;
    align-items: stretch;
  }
  .profile-side {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .profile-shell {
    padding: 16px;
    gap: 24px;
  }
  /* input satırları flex; mobilde alt alta istifle (taşmayı önler) */
  .profile-field-row {
    flex-direction: column;
    gap: 16px;
  }
  /* dikey istifte flex:1 0 0 yüksekliği çökertiyordu; yüksekliği koru */
  .profile-field-row .profile-field {
    flex: 0 0 auto;
    width: 100%;
    height: 44px;
  }
  .profile-card {
    flex-direction: column;
  }
}

/* ============================================================
   SEPET
============================================================ */
.cart-head {
  position: relative;
  width: min(1520px, calc(100% - 48px));
  margin: 40px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.cart-head .cart-steps {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.cart-title {
  color: var(--text-main);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 49px;
  font-weight: 600;
  line-height: 1.1;
}
.cart-title .red {
  color: var(--brand-red);
}
.cart-steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 0;
}
.cart-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cart-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-main);
  font-size: 16px;
  font-weight: 600;
}
.cart-step.is-active .cart-step-num {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.cart-step.is-done .cart-step-num {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.cart-step.is-done .cart-step-label {
  color: var(--text-main);
}
.cart-step-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.cart-step.is-active .cart-step-label {
  color: var(--text-main);
}
.cart-step-line {
  width: 150px;
  height: 2px;
  margin-top: 21px;
  border-radius: 2px;
  background: var(--border-light);
  flex-shrink: 0;
}
.cart-step-line.is-passed {
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--border-light) 100%);
}
.cart-head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cart-breadcrumb-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.cart-layout {
  width: min(1520px, calc(100% - 48px));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 491px;
  gap: 24px;
  align-items: start;
}
.cart-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cart-item {
  display: flex;
  gap: 24px;
  padding: 26px 24px;
  border-radius: 15px;
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
}
.cart-item-media {
  width: 233px;
  height: 233px;
  border-radius: 10px;
  background: var(--bg-soft-grey);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.cart-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.cart-item-title {
  display: block;
  color: var(--text-main);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.15px;
}
.cart-item-sub {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.cart-item-weight {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}
.cart-item-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}
.cart-item-rating strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}
.cart-item-rating span {
  font-size: 12px;
  color: var(--text-muted);
}
.cart-item-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.cart-item-price-new {
  color: var(--brand-red);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.25px;
}
.cart-item-price-old {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: line-through;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}
.cart-qty {
  display: flex;
  height: 44px;
  padding: 0 12px;
  align-items: center;
  gap: 24px;
  border-radius: 15px;
  background: var(--bg-white);
  box-shadow: var(--shadow);
}
.cart-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: color 0.15s ease;
}
.cart-qty-btn:hover {
  color: var(--brand-red);
}
.cart-qty-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}
.cart-item-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-icon-btn {
  display: flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 15px;
  background: var(--bg-white);
  box-shadow: var(--shadow);
  color: var(--text-secondary);
  transition: color 0.15s ease, background 0.15s ease;
}
.cart-icon-btn:hover {
  color: var(--brand-red);
}
.cart-icon-btn.is-danger:hover {
  background: var(--brand-red);
  color: #fff;
}

/* kargo ilerleme bandı */
.cart-shipping-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-radius: 15px;
  border: 1px solid var(--brand-red);
  background: var(--bg-white);
}
.cart-shipping-icon {
  flex-shrink: 0;
  display: flex;
}
.cart-shipping-title {
  color: var(--brand-red);
  font-size: 16px;
  font-weight: 700;
}
.cart-shipping-sub {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}
.cart-shipping-progress {
  flex: 1;
  margin-left: 24px;
  min-width: 0;
}
.cart-shipping-amounts {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-shipping-current {
  color: var(--brand-red);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.25px;
}
.cart-shipping-target {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.cart-shipping-track {
  margin-top: 8px;
  height: 6px;
  max-width: 362px;
  border-radius: 6px;
  background: var(--border-soft);
  overflow: hidden;
}
.cart-shipping-fill {
  height: 100%;
  width: 0;
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(197, 43, 50, 0.20) 0%, #C52B32 100%);
  transition: width 0.3s ease;
}

/* güven rozetleri */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 15px;
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  display: flex;
  color: var(--brand-red);
  flex-shrink: 0;
}
.trust-title {
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
}
.trust-desc {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  max-width: 150px;
}
.trust-divider {
  width: 1px;
  height: 76px;
  background: var(--border-soft);
  flex-shrink: 0;
}

/* sipariş özeti */
.cart-summary {
  position: sticky;
  top: 24px;
  padding: 24px;
  border-radius: 15px;
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
}
.cart-summary-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(197, 43, 50, 0.35);
  margin-bottom: 24px;
}
.cart-summary-title {
  color: var(--brand-red);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}
.cart-summary-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 12px;
  background: var(--brand-red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.cart-summary-label {
  color: var(--text-main);
  font-size: 16px;
  font-weight: 500;
}
.cart-summary-value {
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
}
.cart-summary-value.is-free {
  color: #e8862b;
}
.cart-summary-value.is-discount {
  color: var(--brand-red);
}
.cart-summary-note {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}
.cart-coupon-code {
  color: var(--brand-red);
  font-weight: 700;
}
.cart-summary-divider {
  display: block;
  height: 1px;
  background: var(--border-soft);
  margin-bottom: 24px;
}
.cart-coupon {
  display: flex;
  margin-bottom: 24px;
}
.cart-coupon-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border-light);
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
}
.cart-coupon-input::placeholder {
  color: var(--text-muted);
}
.cart-coupon-input:focus {
  border-color: var(--brand-gold);
}
.cart-coupon-btn {
  width: 100px;
  height: 44px;
  border-radius: 0 10px 10px 0;
  background: var(--brand-red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.cart-coupon-btn:hover {
  background: var(--brand-red-dark);
}
.cart-coupon.is-applied {
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 12px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  background: var(--bg-soft-grey);
}
.cart-coupon-applied-code {
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.cart-coupon-btn.is-remove {
  border-radius: 0 10px 10px 0;
}
.cart-points {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.cart-points-chip {
  display: flex;
  height: 36px;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  border: 1.5px solid var(--brand-red);
  background: #FFB8BA;
  color: var(--brand-red);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.15px;
}
.cart-points-btn {
  margin-left: auto;
  width: 100px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--brand-red);
  background: var(--bg-white);
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 600;
}
.cart-points-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.cart-points-input {
  flex: 1;
  min-width: 0;
  height: 36px;
  padding: 0 16px;
  border-radius: 60px;
  border: 1.5px solid var(--brand-red);
  background: #FFB8BA;
  color: var(--brand-red);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}
.cart-points-input::placeholder {
  color: rgba(197, 43, 50, 0.6);
}
.cart-points-input:read-only {
  cursor: default;
}
.cart-points-action-btn {
  flex-shrink: 0;
  height: 36px;
  padding: 0 20px;
  border-radius: 60px;
  background: var(--brand-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.15s ease;
}
.cart-points-action-btn:hover {
  background: var(--brand-red-dark);
}
.cart-summary-row.is-total {
  margin-bottom: 24px;
}
.cart-summary-total-label {
  color: var(--text-main);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15px;
}
.cart-summary-total {
  color: var(--brand-red);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.25px;
}
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-red);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s ease;
  margin-bottom: 24px;
}
.cart-checkout-btn:hover {
  background: var(--brand-red-dark);
}
.cart-payment-logos {
  display: flex;
  justify-content: center;
}
.cart-payment-logos img {
  max-width: 100%;
  max-height: 26px;
}

/* boş sepet */
.cart-empty {
  width: min(1520px, calc(100% - 48px));
  margin: 80px auto;
  padding: 64px 24px;
  border-radius: 15px;
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cart-empty-title {
  color: var(--text-main);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 600;
}
.cart-empty-desc {
  color: var(--text-secondary);
  font-size: 16px;
}
.cart-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  margin-top: 8px;
  border-radius: 12px;
  background: var(--brand-red);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.cart-empty-btn:hover {
  background: var(--brand-red-dark);
}

/* bildirim balonu */
/* ============================================================
   TESLİMAT / ÖDEME (checkout)
============================================================ */
.checkout-card {
  padding: 24px;
  border-radius: 15px;
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
  margin-bottom: 24px;
}
.checkout-card-title {
  color: var(--text-main);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.checkout-address-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkout-address-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.checkout-address-card:hover {
  border-color: var(--brand-gold);
}
.checkout-address-card.is-selected {
  border-color: var(--brand-red);
  background: rgba(197, 43, 50, 0.04);
}
.checkout-address-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkout-address-radio {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  transition: border-color 0.15s ease;
}
.checkout-address-card.is-selected .checkout-address-radio {
  border-color: var(--brand-red);
  border-width: 6px;
}
.checkout-address-body {
  flex: 1;
  min-width: 0;
}
.checkout-address-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 15px;
}
.checkout-address-text {
  display: block;
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}
.checkout-add-new-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  height: 40px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.checkout-add-new-btn:hover {
  background: var(--brand-red);
  color: #fff;
}

/* ödeme yöntemi sekmeleri — auth-tab ile aynı görsel dil */
.payment-tabs {
  display: flex;
  width: 100%;
  margin-bottom: 24px;
}
.payment-tab {
  display: flex;
  height: 44px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.payment-tab:first-child {
  border-radius: 15px 0 0 15px;
  border-right: none;
}
.payment-tab:last-child {
  border-radius: 0 15px 15px 0;
  border-left: none;
}
.payment-tab:not(:first-child):not(:last-child) {
  border-left: none;
  border-right: none;
}
.payment-tab.is-active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.payment-panel {
  display: none;
}
.payment-panel.is-active {
  display: block;
}
.payment-card-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.payment-card-icons img {
  height: 20px;
}
.payment-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-radio-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.payment-radio-card:hover {
  border-color: var(--brand-gold);
}
.payment-radio-card.is-selected {
  border-color: var(--brand-red);
  background: rgba(197, 43, 50, 0.04);
}
.payment-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.payment-radio-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  transition: border-color 0.15s ease;
}
.payment-radio-card.is-selected .payment-radio-icon {
  border-color: var(--brand-red);
  border-width: 6px;
}
.payment-radio-label {
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
}
.payment-radio-desc {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 13px;
}
.bank-info-card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  margin-bottom: 12px;
}
.bank-info-name {
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
}
.bank-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.bank-info-row strong {
  color: var(--text-main);
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.5px;
}
.bank-copy-btn {
  flex-shrink: 0;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 600;
}

/* ============================================================
   FATURA GÖRÜNÜMÜ (sipariş onay / detay / admin popup ortak)
============================================================ */
.invoice {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.invoice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
}
.invoice-order-no {
  color: var(--text-main);
  font-size: 15px;
}
.invoice-table-wrap {
  overflow-x: auto;
}
.invoice-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.invoice-table th {
  padding: 12px 16px;
  background: var(--bg-soft-grey);
  color: var(--text-main);
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.invoice-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-secondary);
}
.invoice-table tbody tr:nth-child(odd) {
  background: rgba(63, 111, 42, 0.06);
}
.invoice-table tfoot td {
  background: rgba(63, 111, 42, 0.06);
  font-weight: 600;
  color: var(--text-main);
}
.invoice-total-row td {
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-red);
}
.invoice-item-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--border-soft);
  display: block;
}
.invoice-meta-table {
  margin-top: 1px;
}
.invoice-meta-table td {
  width: 50%;
}
.invoice-address-block {
  padding: 16px 20px;
  border-top: 1px solid var(--border-soft);
}
.invoice-address-block h4 {
  color: var(--text-main);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.invoice-address-block p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}
.invoice-contact {
  color: #C87A2B;
}

.nc-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--text-main);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nc-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.nc-toast.is-error {
  background: var(--brand-red);
}

@media (max-width: 1400px) {
  .cart-step-line {
    width: 70px;
  }
  .cart-layout {
    grid-template-columns: minmax(0, 1fr) 400px;
  }
}
@media (max-width: 1100px) {
  .cart-head {
    flex-wrap: wrap;
  }
  .cart-head .cart-steps {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  /* mobilde sıra: ürünler > sipariş özeti > kargo bandı > güven rozetleri */
  .cart-main {
    display: contents;
  }
  .cart-items {
    order: 1;
  }
  .cart-summary {
    order: 2;
    position: static;
  }
  .cart-shipping-bar {
    order: 3;
    flex-wrap: wrap;
  }
  .trust-bar {
    order: 4;
  }
  .cart-shipping-progress {
    margin-left: 0;
    flex-basis: 100%;
  }
  .trust-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .trust-divider {
    display: none;
  }
  .trust-item {
    flex-basis: calc(50% - 16px);
  }
}
@media (max-width: 640px) {
  /* sepet satırı: foto solda kare, isim ortada, adet/sil sağda */
  .cart-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px;
  }
  .cart-item-media {
    width: 84px;
    height: 84px;
  }
  .cart-item-body {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .cart-item-info {
    flex: 1;
    min-width: 0;
  }
  /* mobilde sadeleştir */
  .cart-item-sub,
  .cart-item-weight,
  .cart-item-rating {
    display: none;
  }
  .cart-item-title {
    font-size: 14px;
  }
  .cart-item-price {
    margin-top: 6px;
  }
  .cart-item-price-new {
    font-size: 17px;
  }
  .cart-item-price-old {
    font-size: 12px;
  }
  .cart-item-controls {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-top: 0;
    flex-shrink: 0;
  }
  /* favori (yakında) mobilde gizli; sadece sil kalsın */
  .cart-item-icons .cart-icon-btn:not(.is-danger) {
    display: none;
  }
  .cart-icon-btn {
    width: 34px;
    height: 34px;
  }
  .cart-qty {
    height: 34px;
    gap: 10px;
    padding: 0 8px;
    box-shadow: none;
    border: 1px solid var(--border-light);
  }
  .cart-qty-btn svg {
    width: 18px;
    height: 18px;
  }
  .cart-qty-value {
    font-size: 16px;
  }
  .cart-steps {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .trust-item {
    flex-basis: 100%;
  }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  width: min(1872px, calc(100% - 48px));
  margin: 80px auto 40px;
}
.footer-card {
  border-radius: 15px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: var(--shadow);
  padding: 48px 176px;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

/* ---- marka ---- */
.f-brand {
  width: 233px;
  flex-shrink: 0;
}
.f-logo {
  width: 233px;
  height: 123px;
  aspect-ratio: 233 / 123;
  object-fit: contain;
  display: block;
}
.f-title {
  margin-top: 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0.25px;
  line-height: 1.1;
  color: var(--text-main);
}
.f-title .red {
  color: var(--brand-red);
}
.f-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.f-social-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--brand-red);
  transition: background 0.2s ease, color 0.2s ease;
}
.f-social-box:hover {
  background: var(--brand-red);
  color: #fff;
}

/* ---- menü kolonları ---- */
.f-col {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.f-col-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
}
.f-col-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--text-main);
}
.f-link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.f-link:hover {
  color: var(--brand-red);
}

.f-vline {
  width: 1px;
  align-self: stretch;
  flex-shrink: 0;
  background: var(--border-light);
}

/* ---- iletişim ---- */
.f-contact {
  flex-shrink: 0;
}
.f-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
}
.f-icon-box {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--brand-red);
}
.f-contact-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--text-main);
  line-height: 1.3;
}

/* ---- alt şerit ---- */
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.fb-pay img {
  max-height: 30px;
  width: auto;
  display: block;
}
.fb-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--text-main);
}
.fb-copy img {
  max-height: 22px;
  width: auto;
  display: block;
}

/* ============================================================
   HEADER — SAYFA VARYASYONU
   (anasayfadakiyle aynı kart: genişlik/padding/radius/shadow korunur,
   sadece slider üzerinde "absolute" değil, normal akışta yer alır)
============================================================ */
.header.header--page {
  position: sticky; /* alt sayfalarda akışta kalır, scroll'da yukarı yapışır */
  top: 12px;
  left: auto;
  transform: none;
  margin: 36px auto 0;
}

/* ============================================================
   SAYFA BAŞLIĞI (başlık + breadcrumb/paylaş)
   Not: bu blok tüm alt sayfalarda aynı şekilde kullanılacak
============================================================ */
.page-head {
  width: min(1520px, calc(100% - 400px));
  margin: 40px auto 0;
}
.page-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.page-title {
  color: var(--brand-red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 49px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.page-head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.breadcrumb-box {
  display: flex;
  height: 44px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  border: 2px solid var(--border-light);
  white-space: nowrap;
}
.breadcrumb-link {
  color: var(--text-main);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
.breadcrumb-arrow {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}
.breadcrumb-current {
  display: flex;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: var(--brand-red);
  color: var(--bg-white);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
.share-box {
  display: flex;
  width: 44px;
  height: 44px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1 / 1;
  border-radius: 15px;
  border: 2px solid var(--border-light);
  color: var(--text-main);
}
.share-box svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

/* ============================================================
   ÜRÜNLER SAYFASI — LAYOUT (filtre + ürün listesi)
============================================================ */
.urunler-layout {
  width: min(1520px, calc(100% - 400px));
  margin: 20px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.urunler-content {
  flex: 1;
  min-width: 0;
}

/* ---- ürün listesi üst bar ---- */
.urunler-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.urunler-content-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.urunler-heading {
  color: var(--text-main);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.urunler-count-badge {
  display: flex;
  padding: 6px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: var(--brand-gold);
  color: var(--text-inverse);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.1px;
  white-space: nowrap;
}
.sort-box {
  position: relative;
  display: flex;
  height: 44px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  cursor: pointer;
  outline: none;
}
.sort-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  min-width: 220px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 2px;
}
.sort-box.is-open .sort-menu {
  display: flex;
}
.sort-box.is-open .sort-icon {
  transform: rotate(180deg);
}
.sort-menu-item {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.sort-menu-item:hover {
  background: var(--bg-soft-grey);
  color: var(--text-main);
}
.sort-menu-item.is-active {
  background: var(--brand-red);
  color: #fff;
}
.sort-label {
  color: var(--text-muted);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.15px;
  white-space: nowrap;
}
.sort-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-light);
}
.sort-value {
  color: var(--text-secondary);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.15px;
  white-space: nowrap;
}
.sort-icon {
  width: 24px;
  height: 24px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
/* sıralama + filtre butonları */
.urunler-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* filtre butonu masaüstünde gizli (sidebar zaten görünür) */
.filter-toggle {
  display: none;
}

/* ---- ürün listesi grid ---- */
.urunler-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 362px));
  gap: 24px;
}

/* ---- filtre kutusu ---- */
.filter-box {
  display: flex;
  width: 362px;
  flex-shrink: 0;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 15px;
  background: var(--brand-red-dark);
}

.filter-title {
  color: var(--bg-white);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15px;
}

.filter-divider {
  width: 100%;
  height: 1px;
  align-self: stretch;
  background: var(--border-light);
}

/* arama kutusu */
.filter-search {
  display: flex;
  height: 50px;
  width: 100%;
  padding: 12px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 15px;
  background: var(--bg-white);
}
.filter-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-muted);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
.filter-search-input::placeholder {
  color: var(--text-muted);
}
.filter-search-icon {
  flex-shrink: 0;
  color: var(--text-muted);
}

/* kategori listesi */
.filter-cats {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 6px;
  list-style: none;
}
.filter-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 6px;
  border-radius: 15px;
  border: 2px solid transparent;
  cursor: pointer;
}
.filter-cat.is-active {
  border-color: var(--brand-gold);
}
.filter-cat-radio {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 30px;
  border: 2px solid var(--border-light);
  color: var(--bg-white);
}
.filter-cat.is-active .filter-cat-radio {
  border: none;
  background: var(--brand-gold);
  color: var(--bg-white);
}
.filter-cat-radio svg {
  display: none;
}
.filter-cat.is-active .filter-cat-radio svg {
  display: block;
}
.filter-cat-name {
  flex: 1;
  min-width: 0;
  color: var(--bg-white);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15px;
}
.filter-cat-count {
  display: flex;
  width: 44px;
  height: 36px;
  padding: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 30px;
  background: var(--brand-gold);
  color: var(--text-inverse);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* fiyat aralığı */
.price-slider-wrap {
  width: 100%;
}
.price-track {
  position: relative;
  width: 100%;
  max-width: 314px;
  height: 4px;
  border-radius: 30px;
  background: var(--border-light);
  margin: 14px 0;
}
.price-fill {
  position: absolute;
  top: 0;
  height: 4px;
  border-radius: 30px;
  background: var(--brand-gold);
}
.price-handle {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  border: 2px solid var(--brand-gold);
  background: var(--bg-white);
  box-shadow: 0 6px 12px 0 var(--brand-red-dark);
  cursor: pointer;
  padding: 0;
}
.price-bounds {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
}
.price-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  width: 100%;
}
.filter-apply-btn {
  display: flex;
  width: 100%;
  height: 44px;
  margin-top: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--brand-red);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.filter-apply-btn:hover {
  background: var(--brand-red-dark);
}
.price-box {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-box-label {
  color: var(--bg-white);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
}
.price-box-field {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 15px;
  border: 2px solid var(--brand-gold);
}
.price-box-value {
  width: 100%;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--bg-white);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.15px;
}

/* ============================================================
   ÜRÜN DETAY SAYFASI
============================================================ */
.pd-layout {
  width: min(1520px, calc(100% - 400px));
  margin: 20px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* ---- sol: ürün bilgisi ---- */
.pd-info {
  flex: 1;
  min-width: 0;
}
.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-rating-value {
  color: var(--text-main);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.15px;
}
.pd-rating-count {
  color: var(--text-muted);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.1px;
}
.pd-title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 12px;
}
.pd-title {
  color: #000;
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.25px;
}
.pd-gram {
  color: var(--text-muted);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.1px;
}
.pd-desc {
  margin-top: 12px;
  color: var(--text-muted);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15px;
}
.pd-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 16px 0;
}
.pd-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pd-price-new {
  color: var(--brand-red);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.pd-price-old {
  color: var(--text-muted);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.15px;
  text-decoration-line: line-through;
}

/* paket/gramaj seçici */
.pd-variant {
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
}
.pd-variant-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 44px;
  width: 220px;
  padding: 10px 16px;
  border-radius: 15px;
  border: 2px solid var(--brand-red);
  background: var(--bg-white);
  color: var(--brand-red);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  text-align: left;
}
.pd-variant-toggle span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pd-variant-toggle svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.pd-variant.is-open .pd-variant-toggle svg {
  transform: rotate(180deg);
}
.pd-variant-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  width: max-content;
  min-width: 220px;
  background: var(--bg-white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
}
.pd-variant.is-open .pd-variant-menu {
  display: block;
}
.pd-variant-menu-title {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pd-variant-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}
.pd-variant-option:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pd-variant-option-label {
  color: var(--text-main);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.pd-variant-option-price {
  color: var(--brand-red);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.pd-variant-option-price small {
  display: block;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 12px;
}
.pd-variant-option.is-selected .pd-variant-option-label {
  color: var(--brand-red);
}

/* adet seçim kutusu */
.pd-qty {
  display: flex;
  height: 44px;
  padding: 0 12px;
  align-items: center;
  gap: 24px;
  border-radius: 15px;
  background: var(--bg-soft-grey);
  margin-left: auto;
  flex-shrink: 0;
}
/* varyant seçici varsa: onu sağa iten margin-left:auto varyanta geçer,
   adet kutusu da varyantın hemen sağında kalır (satır gap'i 12px yeterli) */
.pd-variant + .pd-qty {
  margin-left: 0;
}
.pd-qty-btn {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-qty-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.pd-qty-value {
  min-width: 12px;
  text-align: center;
  color: var(--text-main);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15px;
}

/* satın alma butonları */
.pd-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.pd-buy {
  display: flex;
  width: 206px;
  height: 44px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 15px;
  border: 2px solid var(--brand-red);
  background: transparent;
  color: var(--brand-red);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.15px;
  transition: background 0.2s ease, color 0.2s ease;
}
.pd-buy:hover {
  background: var(--brand-red);
  color: #fff;
}
.pd-buy:disabled {
  color: var(--text-muted);
  border-color: var(--border-light);
  cursor: not-allowed;
}
.pd-buy:disabled:hover {
  background: transparent;
  color: var(--text-muted);
}
.pd-cart {
  display: flex;
  height: 44px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  background: var(--brand-red);
  color: var(--text-inverse);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.15px;
}
.pd-cart-icon {
  width: 22px;
  height: 18px;
  flex-shrink: 0;
  aspect-ratio: 11 / 9;
}

/* bilgi akordiyonu */
.pd-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  width: 100%;
}
.pd-info-item {
  width: 100%;
  border-radius: 15px;
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.pd-info-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.pd-info-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.pd-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 35px;
  flex-shrink: 0;
  aspect-ratio: 43 / 35;
}
.pd-info-icon svg {
  width: 100%;
  height: 100%;
}
.pd-info-title {
  color: var(--text-main);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15px;
  white-space: nowrap;
  text-align: left;
}
.pd-info-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 9px;
  flex-shrink: 0;
  aspect-ratio: 2 / 1;
  transition: transform 0.25s ease;
}
.pd-info-arrow svg {
  width: 100%;
  height: 100%;
}
.pd-info-item.is-open .pd-info-arrow {
  transform: rotate(180deg);
}
.pd-info-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.pd-info-item.is-open .pd-info-body {
  grid-template-rows: 1fr;
}
.pd-info-body-inner {
  overflow: hidden;
  min-height: 0;
}
.pd-info-desc {
  padding: 0 24px 16px 24px;
  color: var(--text-muted);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.15px;
}

/* ---- sağ: galeri ---- */
.pd-gallery {
  width: 619px;
  max-width: 100%;
  flex-shrink: 0;
}
.pd-gallery-main {
  position: relative;
  width: 619px;
  max-width: 100%;
  aspect-ratio: 619 / 774;
  border-radius: 15px;
  border: 1px solid var(--border-light);
  background-color: lightgray;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height:619px;
}
.pd-gallery-controls {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pd-gallery-arrow {
  display: flex;
  width: 36px;
  height: 36px;
  padding: 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 12px 0 rgba(216, 199, 178, 0.40);
  color: var(--text-secondary);
}
.pd-gallery-arrow.is-disabled {
  color: var(--border-light);
  cursor: default;
}
.pd-gallery-arrow svg {
  width: 6px;
  height: 12px;
  flex-shrink: 0;
}
.pd-gallery-dots {
  display: flex;
  padding: 12px;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  background: var(--bg-white);
  box-shadow: 0 4px 12px 0 rgba(216, 199, 178, 0.40);
}
.pd-dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border-light);
}
.pd-dot.is-active {
  background: var(--brand-red);
}

/* ============================================================
   DEĞERLENDİRME VE YORUMLAR
============================================================ */
.reviews-section {
  width: min(1520px, calc(100% - 400px));
  margin: 48px auto 0;
}
.reviews-title {
  color: var(--text-main);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 49px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.reviews-title .red {
  color: var(--brand-red);
}

.reviews-card {
  margin-top: 24px;
  display: flex;
  padding: 24px 48px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 15px;
  border: 1px solid var(--border-light);
}

/* özet satırı: puan / yıldızlar / dağılım */
.reviews-summary {
  display: flex;
  align-items: center;
  width: 100%;
}
.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.reviews-score-value {
  color: #1C1A17;
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 61px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
}
.reviews-score-label {
  color: var(--text-muted);
  text-align: justify;
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15px;
}
.reviews-vline {
  width: 1px;
  align-self: stretch;
  background: var(--border-light);
  margin: 0 48px;
  flex-shrink: 0;
}
.reviews-stars-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}
.reviews-stars {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-stars svg {
  width: 36px;
  height: 34px;
  flex-shrink: 0;
  aspect-ratio: 18 / 17;
}
.reviews-stars-count {
  color: var(--text-muted);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.15px;
}
.reviews-distribution {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reviews-dist-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-dist-num {
  width: 10px;
  flex-shrink: 0;
  color: var(--text-main);
  font-feature-settings: 'liga' off;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.15px;
}
.reviews-dist-star {
  width: 18px;
  height: 17px;
  flex-shrink: 0;
}
.reviews-dist-bar {
  position: relative;
  flex: 1 0 0;
  height: 5px;
  border-radius: 30px;
  background: #E8DED1;
  overflow: hidden;
}
.reviews-dist-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 5px;
  border-radius: 30px;
  background: var(--brand-red);
}
.reviews-dist-count {
  width: 20px;
  flex-shrink: 0;
  text-align: right;
  color: var(--text-muted);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

/* üyelik girişi notu */
.reviews-login-note {
  color: var(--text-secondary);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.reviews-login-link {
  color: var(--brand-red);
  text-decoration: underline;
}

.reviews-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* yorum yapma formu — tek satır: yıldızlar + metin + gönder */
.review-form {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.review-form-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.review-form-star {
  color: var(--border-light);
  transition: color 0.15s ease;
  display: flex;
}
.review-form-star.is-active,
.review-form-star.is-hover {
  color: var(--brand-gold);
}
.review-form-input {
  flex: 1;
  min-width: 220px;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.15s ease;
}
.review-form-input:focus {
  border-color: var(--brand-gold);
}
.review-form-submit {
  flex-shrink: 0;
  height: 44px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--brand-red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.review-form-submit:hover {
  background: var(--brand-red-dark);
}
.review-form-error {
  margin-top: 8px;
  color: var(--brand-red);
  font-size: 13px;
}
.reviews-empty {
  color: var(--text-muted);
  font-size: 14px;
  padding: 12px 0;
}

/* tekil yorum */
.review-item {
  display: flex;
  gap: 16px;
  width: 100%;
}
.review-avatar {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.review-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-stars-mini {
  display: flex;
  align-items: center;
  gap: 2px;
}
.review-stars-mini svg {
  width: 16px;
  height: 15px;
  flex-shrink: 0;
}
.review-date {
  color: var(--text-muted);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.review-text {
  color: var(--text-secondary);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
.review-helpful {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.review-vote {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--brand-red);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* dar masaüstü / küçük laptop: 200px kenar boşluğunu daralt */
@media (max-width: 1700px) {
  .header {
    width: min(1520px, calc(100% - 48px));
  }
  .search-box {
    margin-left: 48px;
  }
  .slide-inner {
    margin-left: 120px;
  }
  .hero-title {
    font-size: 76px;
    line-height: 76px;
  }
  .categories {
    width: min(1520px, calc(100% - 48px));
  }
  .products {
    width: min(1520px, calc(100% - 48px));
  }
  .promo {
    width: min(1520px, calc(100% - 48px));
  }
  .why {
    width: min(1520px, calc(100% - 48px));
  }
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 233px));
  }
  .blog {
    width: min(1520px, calc(100% - 48px));
  }
  .footer-card {
    padding: 48px;
  }
  .page-head {
    width: min(1520px, calc(100% - 48px));
  }
  .blog-detail {
    width: min(1520px, calc(100% - 48px));
  }
  .urunler-layout {
    width: min(1520px, calc(100% - 48px));
  }
  .pd-layout {
    width: min(1520px, calc(100% - 48px));
  }
  .reviews-section {
    width: min(1520px, calc(100% - 48px));
  }
}

/* tablet yatay / küçük ekran */
@media (max-width: 1200px) {
  .search-box {
    margin-left: 24px;
  }
  .account-text,
  .icon-action span:last-child,
  .lang-text {
    /* metinleri koruyoruz ama gerekirse gizlenebilir */
  }
  .header-right {
    gap: 16px;
  }
}

/* tablet dikey */
@media (max-width: 1200px) {
  .slide-inner {
    margin-left: 64px;
    width: min(560px, 70%);
  }
  .hero-title {
    font-size: 60px;
    line-height: 60px;
  }
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 362px));
  }
  .ph-desc {
    display: none;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 32px 48px;
  }
  .f-vline {
    display: none;
  }
  .page-title {
    font-size: 40px;
  }
  .urunler-grid {
    grid-template-columns: repeat(2, minmax(0, 362px));
  }
}

@media (max-width: 992px) {
  .header {
    width: calc(100% - 32px);
    gap: 12px;
  }
  .slide-inner {
    margin-left: 32px;
    width: 80%;
  }
  .slider-nav {
    left: 16px;
  }
  .categories {
    width: calc(100% - 32px);
  }
  .cat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .cat-big  { grid-column: 1 / 3; grid-row: auto; min-height: 280px; }
  .cat-s1, .cat-s2, .cat-s3, .cat-s4 {
    grid-column: auto;
    grid-row: auto;
    min-height: 170px;
  }
  .cat-tall { grid-column: 1 / 3; grid-row: auto; min-height: 240px; }
  .products {
    width: calc(100% - 32px);
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 362px));
  }
  .products-head {
    flex-wrap: wrap;
  }
  .ph-line {
    display: none;
  }
  .ph-all {
    margin-left: auto;
  }
  .promo {
    width: calc(100% - 32px);
  }
  .promo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .promo-wide {
    grid-column: 1 / 3;
  }
  .why {
    width: calc(100% - 32px);
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog {
    width: calc(100% - 32px);
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-card:nth-child(3) {
    grid-column: 1 / 3;
  }
  .footer-card {
    padding: 32px;
  }
  .f-brand {
    width: 100%;
  }
  .f-col {
    min-width: 160px;
  }
  .header-bottom {
    flex-wrap: wrap;
    padding: 0 12px;
  }
  /* arama kutusunu alt satıra al */
  .search-box {
    order: 3;
    margin-left: 0;
    width: 100%;
    flex-basis: 100%;
  }
  .header-left {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .header-right {
    width: 100%;
    justify-content: flex-end;
  }
  /* hesap alt yazısını gizle, sadeleştir */
  .divider {
    height: 40px;
  }
  .page-head {
    width: calc(100% - 32px);
  }
  .blog-detail {
    width: calc(100% - 32px);
  }
  .page-head-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  .urunler-layout {
    width: calc(100% - 32px);
    flex-direction: column;
  }
  /* filtre varsayılan kapalı; buton görünür, tıklanınca açılır */
  .filter-box {
    width: 100%;
    display: none;
  }
  .urunler-layout.filters-open .filter-box {
    display: flex;
  }
  .filter-toggle {
    display: flex;
  }
  .pd-layout {
    width: calc(100% - 32px);
    flex-direction: column;
  }
  .pd-gallery {
    order: -1;
    width: 100%;
  }
  .pd-gallery-main {
    width: 100%;
  }
  .pd-info {
    width: 100%;
  }
  .reviews-section {
    width: calc(100% - 32px);
  }
  .reviews-card {
    padding: 24px;
  }
  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .reviews-vline {
    display: none;
  }
  .reviews-distribution {
    width: 100%;
  }
}

/* mobil */
@media (max-width: 600px) {
  /* transform kaldırıldı: tam ekran menü viewport'a göre konumlansın */
  .header {
    top: 16px;
    left: 10px;
    right: 10px;
    width: auto;
    transform: none;
    padding: 8px 8px;
  }
  /* alt sayfa header'ı da anasayfa ile aynı üst/yan boşlukta olsun */
  .header.header--page {
    top: 16px;
    margin: 16px auto 0;
    width: calc(100% - 20px);
  }
  .header-main {
    gap: 0;
  }

  /* mobilde üst bilgi çubuğu gizli */
  .header-top {
    display: none;
  }

  /* alt bar: sadece menü butonu + logo + sepet */
  .header-bottom {
    flex-wrap: nowrap;
    padding: 0 6px;
    gap: 8px;
    justify-content: space-between;
  }
  .header-left {
    flex: 0 1 auto;
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .header-bottom .search-box {
    display: none;
  }
  .logo {
    margin-left: 12px;
  }
  .logo img {
    width: 95px;
    height: 50px;
  }
  .header-right {
    width: auto;
    gap: 16px;
  }
  /* barda dil / favoriler / ayraç gizli; profil ikonu + sepet kalır */
  .header-right .lang-box,
  .header-right .divider,
  .header-right > a.icon-action {
    display: none;
  }
  .icon-action span:last-child {
    display: none;
  }
  /* profil: mobilde sadece ikon */
  .header-right .account {
    gap: 0;
  }
  .account-text {
    display: none;
  }
  .account svg {
    width: 24px;
    height: 27px;
  }

  /* ---------- TAM EKRAN MENÜ ---------- */
  body.menu-open {
    overflow: hidden;
  }
  .header-menu {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: block;
    grid-template-rows: none;
    margin-top: 0 !important;
    padding: 20px;
    background: var(--bg-white);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-24px);
    transition: opacity 0.3s ease, transform 0.35s ease, visibility 0.35s ease;
  }
  .header.is-menu-open .header-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-menu-inner {
    overflow: visible;
    gap: 22px;
  }

  .header-menu .hm-mobile {
    display: flex;
  }
  .hm-top {
    align-items: center;
    justify-content: space-between;
  }
  .hm-logo img {
    width: 110px;
    height: 58px;
    object-fit: contain;
    display: block;
  }
  .hm-close {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--brand-gold);
    background: var(--bg-white);
  }
  .hm-search {
    width: 100%;
    margin-left: 0;
    height: 52px;
    box-shadow: none;
  }

  /* menü linkleri dikey liste */
  .header-menu-divider {
    display: none;
  }
  .header-menu-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
  }
  .header-menu-link {
    padding: 16px 4px;
    border-bottom: 1px solid var(--border-light);
    font-size: 18px;
    white-space: normal;
  }
  .header-menu-cta {
    margin-top: 12px;
    width: 100%;
  }

  /* hesap / favoriler / dil — yan yana 3 kart */
  .hm-actions {
    flex-direction: row;
    gap: 8px;
  }
  .hm-action {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 6px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
  }
  .hm-action > span:last-child {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hm-action-icon {
    position: relative;
    display: flex;
  }
  .hm-action-icon .badge {
    position: absolute;
    top: -6px;
    right: -8px;
  }
  .hm-lang { gap: 7px; }
  .hm-lang .lang-text { font-size: 14px; font-weight: 700; }

  /* iletişim bilgisi — telefon büyük */
  .hm-info {
    flex-direction: column;
    gap: 6px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
  }
  .hm-info a {
    color: var(--brand-red);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.3px;
  }

  /* mobilde slider: foto altta, üstte beyaz→şeffaf gradyan (yazılar okunsun) */
  .slider {
    min-height: 84vh;
  }
  .slide {
    align-items: flex-start;
    background-position: var(--mobile-pos, 50% 55%);
    background-size: var(--mobile-size, cover);
    background-color: #fff;
  }
  .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      #ffffff 0%,
      #ffffff 30%,
      rgba(255, 255, 255, 0.75) 46%,
      rgba(255, 255, 255, 0) 64%
    );
  }
  .slide-inner {
    position: relative;
    z-index: 1;
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
    padding-top: 96px;
    padding-bottom: 40px;
  }
  .hero-eyebrow {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .hero-title {
    font-size: 44px;
    line-height: 44px;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 15px;
    margin-bottom: 22px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  /* mobilde ok butonları yok; parmakla sürüklenir */
  .slider-nav {
    display: none;
  }
  .slides {
    touch-action: pan-y;
  }
  .slider-indicator {
    bottom: 20px;
    gap: 12px;
    padding: 8px 16px;
  }
  .ind-current,
  .ind-total {
    font-size: 20px;
  }

  /* kategoriler mobilde ikişerli; daha dar yan boşluk ve az aralık */
  .categories {
    width: calc(100% - 20px);
  }
  .cat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  .cat-big, .cat-s1, .cat-s2, .cat-s3, .cat-s4, .cat-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 160px;
  }
  .cat-box,
  .cat-small,
  .cat-tall {
    padding: 14px;
  }
  .cat-title-lg { font-size: 22px; }
  .cat-title-sm { font-size: 18px; }
  /* ÜRÜNLERİ KEŞFET butonu: küçük, tek satır */
  .cat-btn {
    height: 30px;
    padding: 6px 10px;
    gap: 6px;
    font-size: 11px;
    white-space: nowrap;
  }
  .cat-btn svg {
    width: 12px;
    height: 12px;
  }
  /* beyaz ok kutuları biraz daha sola/küçük */
  .cat-icon {
    width: 26px;
    height: 26px;
  }

  .products {
    margin-top: 48px;
  }
  /* ürün kartları mobilde ikişerli; içerik dar karta göre küçültülür */
  .products {
    width: calc(100% - 20px);
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    justify-content: center;
  }
  /* "En Çok Satan" etiketi mobilde küçük */
  .pc-label {
    height: 24px;
    top: 10px;
    left: 10px;
    font-size: 10px;
  }
  .pc-label-discount,
  .pc-label-gold,
  .pc-label-soldout {
    padding: 0 8px;
  }
  .pc-fav {
    width: 34px;
    height: 34px;
    top: 10px;
    right: 10px;
  }
  .pc-body {
    gap: 8px;
  }
  .pc-title {
    font-size: 15px;
    min-height: 40px;
  }
  .pc-desc {
    font-size: 13px;
  }
  .pc-rating strong { font-size: 14px; }
  .pc-rating span { font-size: 12px; }
  .pc-price {
    flex-wrap: wrap;
    gap: 4px 6px;
  }
  .pc-price-new { font-size: 18px; }
  .pc-price-old { font-size: 13px; }
  .pc-gram { font-size: 12px; }
  .pc-actions {
    gap: 8px;
    width: 100%;
  }
  .pc-buy {
    min-width: 0;
    padding: 10px 8px;
    font-size: 14px;
  }
  .ph-main {
    font-size: 40px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }
  .promo-wide {
    grid-column: 1;
  }
  .promo-title-lg {
    font-size: 40px;
    line-height: 40px;
  }
  /* neden neşe çay: mobilde yatay kaydırmalı */
  .why-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .why-box {
    flex: 0 0 auto;
    width: 240px;
    justify-content: flex-start;
    scroll-snap-align: start;
  }
  .why-desc {
    width: auto;
  }
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .blog-card:nth-child(3) {
    grid-column: 1;
  }
  .footer {
    width: calc(100% - 20px);
    margin-top: 48px;
  }
  .footer-card {
    padding: 24px;
  }
  /* footer mobilde tamamen ortalı */
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .f-brand {
    width: auto;
  }
  .f-logo {
    margin: 0 auto;
  }
  .f-social {
    justify-content: center;
  }
  .f-vline {
    display: none;
  }
  .f-col {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .f-col-inner {
    align-items: center;
    text-align: center;
  }
  .f-contact-item {
    justify-content: center;
  }
  .f-contact-text {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .fb-copy {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .page-head {
    width: calc(100% - 20px);
    margin-top: 24px;
  }
  .blog-detail {
    width: calc(100% - 20px);
  }
  .page-title {
    font-size: 32px;
  }
  .page-head-actions {
    flex-wrap: wrap;
  }
  .urunler-layout {
    width: calc(100% - 20px);
  }
  .filter-box {
    padding: 16px;
  }
  .urunler-content-head {
    flex-wrap: wrap;
    gap: 12px;
  }
  .urunler-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  /* ürün detay: foto kare, adet taşmasın, butonlar 50/50 */
  .pd-gallery-main {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .pd-price-row {
    flex-wrap: wrap;
    row-gap: 14px;
  }
  .pd-actions {
    gap: 8px;
  }
  .pd-buy {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 6px;
    font-size: 14px;
    white-space: nowrap;
  }
  .pd-cart {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 6px;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
  }

  .reviews-section {
    width: calc(100% - 20px);
    margin-top: 32px;
  }
  .reviews-title {
    font-size: 32px;
  }
  .reviews-card {
    padding: 16px;
    gap: 16px;
  }
  .reviews-score-value {
    font-size: 44px;
  }
  .review-item {
    gap: 12px;
  }
}

/* çok küçük mobil */
@media (max-width: 400px) {
  .account-text {
    display: none;
  }
  .info-item span {
    font-size: 12px;
  }
}

/* ============================================================
   SAYFA HERO (header arkasında foto — kurumsal / blog detay)
============================================================ */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 460px;
  background-color: var(--brand-red-dark);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  margin: auto auto 0;
  width: min(1520px, calc(100% - 400px));
  padding: 170px 0 48px;
}
.page-hero-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--brand-red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.page-hero-title {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  max-width: 900px;
}
.page-hero-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}
.page-hero-crumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s ease;
}
.page-hero-crumb a:hover { color: #fff; }
.page-hero-crumb .sep { opacity: 0.6; }
.page-hero-date {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1700px) {
  .page-hero-inner { width: min(1520px, calc(100% - 48px)); }
}
@media (max-width: 992px) {
  .page-hero-inner { width: calc(100% - 32px); }
}
@media (max-width: 600px) {
  .page-hero { min-height: 360px; }
  .page-hero-inner { width: calc(100% - 20px); padding: 130px 0 32px; }
  .page-hero-title { font-size: 38px; }
}

/* ============================================================
   WHATSAPP (header üst bar + yüzen buton)
============================================================ */
.header-top-left {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}
.info-item-wa {
  color: var(--text-muted);
  white-space: nowrap;
}
.info-item-wa:hover { color: #25D366; }

.hm-info-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #128C4A !important;
}

/* sağ altta yüzen whatsapp butonu */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 400;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.6);
}

@media (max-width: 1200px) {
  .header-top-left { gap: 14px; }
  .info-item-wa span { display: none; }
}
@media (max-width: 600px) {
  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ============================================================
   ANASAYFA İSTATİSTİK BANDI
============================================================ */
.stats {
  width: min(1520px, calc(100% - 400px));
  margin: 80px auto 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 44px 32px;
  border-radius: 15px;
  background: var(--brand-red-dark);
}
.stat-box {
  text-align: center;
  color: #fff;
  position: relative;
}
.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}
.stat-value {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.5px;
}
.stat-suffix { color: var(--brand-gold); }
.stat-label {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1700px) {
  .stats { width: min(1520px, calc(100% - 48px)); }
}
@media (max-width: 992px) {
  .stats { width: calc(100% - 32px); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .stat-box:nth-child(2)::after { display: none; }
}
@media (max-width: 600px) {
  .stats { width: calc(100% - 20px); margin-top: 48px; }
  .stats-grid { padding: 28px 16px; gap: 20px; row-gap: 26px; }
  .stat-value { font-size: 36px; }
  .stat-label { font-size: 13px; }
  .stat-box::after { display: none !important; }
}
