/* ================ DESIGN TOKENS ================ */
:root {
  /* Brand — single sky blue family */
  --primary:        #1AA4E8;
  --primary-hover:  #1591D0;
  --primary-soft:   #EAF4FB;
  --primary-tint:   #F5F9FC;

  /* Text — navy hierarchy */
  --text:           #0D1F3D;
  --text-muted:     #4A5E80;
  --text-subtle:    #6B8AAF;

  /* Surface */
  --surface:        #FFFFFF;
  --surface-soft:   #F5F9FC;
  --border:         #E4ECF4;
  --border-strong:  #C8D8EE;

  /* Type scale (friendly consumer rhythm) */
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-32: 2rem;
  --fs-44: 2.75rem;
  --fs-56: 3.5rem;

  /* Spacing scale (4-base) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* Radius scale */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadow scale */
  --shadow-sm: 0 2px 8px rgba(20,60,120,0.06);
  --shadow-md: 0 8px 24px rgba(20,60,120,0.10);
  --shadow-lg: 0 18px 40px rgba(20,60,120,0.14);

  /* Type families */
  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: var(--fs-16);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 700;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e8eef6;
  height: 68px;
}

.nav-inner {
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 48px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  height: 100%;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-i {
  font-style: italic;
}

.logo-plus {
  color: #2196f3;
  font-size: 1rem;
  vertical-align: super;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  color: #4a5568;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  font-weight: 600;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #4a5568;
  padding: 7px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.icon-btn:hover {
  color: var(--text);
  background: var(--primary-soft);
}

/* Currency switcher */
.cur-switcher {
  position: relative;
}

.cur-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
}

.cur-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cur-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 6px;
  box-shadow: 0 8px 24px rgba(20,60,120,0.10);
  display: none;
  min-width: 110px;
  z-index: 200;
}

.cur-switcher.open .cur-menu {
  display: block;
}

.cur-option {
  display: block;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.cur-option:hover {
  background: #f0f7fc;
  color: var(--primary);
}

.cart-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  background: var(--text);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 68px);
  overflow: hidden;
  padding: 60px 72px 60px 160px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 5% 50%;
  z-index: 0;
}

/* Frosted glass kart */
.hero-glass {
  position: relative;
  z-index: 2;
  width: 560px;
  max-width: 100%;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: var(--r-lg);
  padding: 40px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}

.hero-divider {
  height: 1px;
  background: rgba(26,58,107,0.18);
  margin: 6px 0 2px;
}

.badge-dot {
  color: var(--primary);
  font-weight: 700;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-56);
  font-weight: 700;
  line-height: 1.02;
  color: var(--text);
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--fs-14);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1.5px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(26,164,232,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

/* Badge satırı */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: nowrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.badge-sep {
  width: 1px;
  height: 22px;
  background: var(--border-strong);
}

/* Sağ: fotoğraf tam yükseklik */
.hero-photo {
  position: relative;
  flex: 1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Sol kenarda beyazdan fotoğrafa geçiş */
.hero-bottom-fade { display: none; }

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255,255,255,0.5) 18%,
    transparent 45%
  );
  pointer-events: none;
}

/* ── FEATURE CARD (overlap) ── */
.feature-card {
  max-width: 1280px;
  margin: -220px auto 60px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 10px 40px rgba(20,60,120,0.10);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 32px 24px;
  gap: 8px;
  position: relative;
  z-index: 10;
}

.fc-item {
  text-align: center;
  padding: 0 16px;
}

.fc-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.fc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.fc-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.fc-sep {
  width: 1px;
  height: 90px;
  background: var(--border);
}

/* ── POOL SIZE SECTION ── */
.pool-size {
  background: #fff;
  padding: 130px 48px 0;
  position: relative;
}

.pool-size-products {
  background: #fff;
  padding: 16px 48px 24px;
}

/* HOW IT WORKS */
.hiw {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  min-height: 440px;
}

.hiw-img {
  overflow: hidden;
  position: relative;
}

.hiw-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Üst kısma kaydır: el+ürün+su görünsün, alttaki tesisat kırpılsın */
  object-position: 50% 18%;
  display: block;
}

.hiw-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-7) var(--s-8);
  gap: var(--s-3);
  max-width: 620px;
}

.hiw-tag {
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary);
  text-transform: uppercase;
}

.hiw-title {
  font-family: var(--font-display);
  font-size: var(--fs-44);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hiw-title span {
  color: var(--primary);
}

.hiw-desc {
  color: var(--text-muted);
  line-height: 1.55;
  font-size: var(--fs-18);
  max-width: 480px;
}

/* 3 adım listesi */
.hiw-steps {
  list-style: none;
  padding: 0;
  margin: var(--s-3) 0 var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.hiw-steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-3);
  align-items: start;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.hiw-steps li:first-child {
  border-top: none;
  padding-top: 0;
}

.hiw-step-num {
  font-family: var(--font-display);
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hiw-step-title {
  font-family: var(--font-display);
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.hiw-step-desc {
  color: var(--text-muted);
  font-size: var(--fs-14);
  line-height: 1.55;
}

.hiw-body .btn {
  align-self: flex-start;
  margin-top: var(--s-2);
}

/* ============ BEFORE / AFTER SHOWCASE ============ */
.ba {
  background: #fff;
  padding: var(--s-9) var(--s-7) var(--s-8);
  position: relative;
}

.ba-wave-top { display: none; }

.ba-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* 2-column top: text + slider */
.ba-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--s-8);
  align-items: center;
  margin-bottom: var(--s-6);
}

.ba-head {
  text-align: left;
  margin-bottom: 0;
}

.ba-ctas {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-5);
  flex-wrap: wrap;
}

.ba-tag {
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.ba-title {
  font-family: var(--font-display);
  font-size: var(--fs-44);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: var(--s-3);
}

.ba-title span {
  color: var(--primary);
}

.ba-desc {
  color: var(--text-muted);
  font-size: var(--fs-16);
  line-height: 1.55;
  max-width: 420px;
}

.ba-slider {
  margin-bottom: 0 !important;
}

/* Interactive Before/After slider */
.ba-slider {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--s-7);
  user-select: none;
  cursor: ew-resize;
  /* 16:9 daha geniş — görselin transparan kenarları kırpılır */
  aspect-ratio: 16/9;
  background: #fff;
}

/* Katman: clip-path slider koordinatlarında, scale içerdeki image'da */
.ba-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-layer-before {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--split)) 0 0);
  z-index: 1;
}

.ba-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Hafif zoom — transparan PNG kenarlarını gizler */
  transform: scale(1.04);
  display: block;
}

/* Dikey çizgi + tutamak */
.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  z-index: 2;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  cursor: ew-resize;
  pointer-events: auto;
}

.ba-handle:hover {
  background: var(--primary-soft);
}

/* Corner chips */
.ba-chip {
  position: absolute;
  bottom: var(--s-4);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  pointer-events: none;
  z-index: 3;
}

.ba-chip-before,
.ba-chip-after {
  background: var(--text);
}

/* BEFORE chip: sol köşede kalır, slider line yaklaşınca sola itilir
   Sol pozisyon = min(24px köşe, slider_line - margin - chipWidth)
   126px = chip width (~110) + margin (16) */
.ba-chip-before {
  left: min(24px, calc(var(--split) - 126px));
}

/* AFTER chip: sağ köşede kalır, slider line yaklaşınca sağa itilir
   Sağ pozisyon = min(24px köşe, kalan_genişlik - margin - chipWidth)
   201px = chip width (~185) + margin (16) */
.ba-chip-after {
  right: min(24px, calc(100% - var(--split) - 201px));
}

/* Stats card (icon + col, 4 sütun) */
.ba-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-7);
  box-shadow: var(--shadow-sm);
  max-width: 1080px;
  margin: 0 auto;
}

.ba-stat {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-2) 0;
}

.ba-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ba-stat-small {
  font-size: var(--fs-12);
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.ba-stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-32);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ba-stat-label {
  font-size: var(--fs-14);
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Footer note */
.ba-note {
  text-align: center;
  font-size: var(--fs-14);
  color: var(--text-subtle);
  margin: var(--s-5) 0 0;
}

.btn-on-light {
  background: #fff;
}

/* CTA varyantı — title case + chevron */
.btn-cta {
  text-transform: none;
  letter-spacing: 0.005em;
  font-size: var(--fs-16);
  font-weight: 600;
  padding: 14px 26px;
}

/* ============ FIND POOL SIZE (contained card) ============ */
.fps {
  background: #fff;
  padding: var(--s-7) var(--s-7);
}

.fps-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--s-6);
  align-items: center;
  background: var(--primary-soft);
  border-radius: var(--r-lg);
  padding: var(--s-7);
}

.fps-left {
  padding-right: var(--s-3);
}

.fps-step {
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.fps-left {
  padding-right: var(--s-3);
}

.fps-title {
  font-family: var(--font-display);
  font-size: var(--fs-32);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--s-3);
}

.fps-title span { color: var(--primary); }

.fps-desc {
  color: var(--text-muted);
  line-height: 1.55;
  font-size: var(--fs-14);
  margin-bottom: var(--s-4);
}

.fps-cta {
  display: inline-flex;
}

/* Calculator card */
.fps-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
}

.fps-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
  flex-wrap: wrap;
}

.fps-card-title {
  font-family: var(--font-display);
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.fps-help {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.fps-help:hover { text-decoration: underline; text-underline-offset: 2px; }

/* Fields — 3 sütun (sağda havuz olduğu için biraz daraltıldı) */
.fps-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  padding-right: 230px;
}

.fps-field label {
  display: block;
  font-size: var(--fs-14);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.fps-field input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-16);
  font-weight: 600;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fps-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,164,232,0.15);
}

/* Result row — volume + recommended */
.fps-result {
  display: grid;
  grid-template-columns: auto auto;
  gap: var(--s-6);
  align-items: center;
  padding-top: var(--s-3);
  padding-right: 230px;
}

.fps-result-label {
  font-size: var(--fs-14);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.fps-result-num {
  font-family: var(--font-display);
  font-size: var(--fs-32);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Recommended pill */
.fps-rec-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 22px;
  background: #fff;
  border: 1.5px solid var(--primary);
  border-radius: var(--r-sm);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-18);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s, color 0.2s;
}

.fps-rec-pill:hover {
  background: var(--primary);
  color: #fff;
}

.fps-rec-pill .fps-rec-range {
  font-family: var(--font-body);
  font-size: var(--fs-14);
  font-weight: 500;
  opacity: 0.85;
}

/* Pool illustration — kartın üst-sağına yarı taşar */
.fps-pool {
  position: absolute;
  top: 78px;
  right: -6px;
  width: 230px;
  pointer-events: none;
  z-index: 2;
}

.fps-pool img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom note */
.fps-note-bottom {
  font-size: var(--fs-14);
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

/* Recommended product card — light, soft */
.fps-rec {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--s-5);
  align-items: center;
  padding: var(--s-5) var(--s-6);
  background:
    radial-gradient(circle at 12% 50%, rgba(26,164,232,0.10) 0%, transparent 50%),
    var(--primary-soft);
  border: 1px solid rgba(26,164,232,0.18);
  border-radius: var(--r-md);
  color: var(--text);
  /* Smooth fade hazırlığı */
  transition: opacity 0.25s ease;
}

.fps-rec.is-updating {
  opacity: 0.4;
}

.fps-rec-img {
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.fps-rec-img::before {
  /* Ürünün arkasında soft glow */
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 18px;
  background: radial-gradient(ellipse, rgba(13,31,61,0.18) 0%, transparent 70%);
  filter: blur(4px);
  z-index: 0;
}

.fps-rec-img img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: opacity 0.25s ease;
  /* Beyaz PNG arka planını light bg ile bağdaştır */
  mix-blend-mode: multiply;
}

.fps-rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(26,164,232,0.25);
  padding: 5px 12px 5px 4px;
  border-radius: var(--r-pill);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 10px;
}

.fps-rec-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
}

.fps-rec-title {
  font-family: var(--font-display);
  font-size: var(--fs-20);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}

.fps-rec-range {
  color: var(--text-muted);
  font-size: var(--fs-14);
  margin-bottom: 6px;
}

.fps-rec-why {
  color: var(--primary);
  font-size: var(--fs-14);
  font-weight: 600;
  margin-bottom: var(--s-3);
}

.fps-rec-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.fps-rec-price {
  font-family: var(--font-display);
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ============ CTA STRIP (footer öncesi) ============ */
.cta-strip {
  position: relative;
  background:
    linear-gradient(135deg, rgba(26,164,232,0.78) 0%, rgba(21,145,208,0.85) 60%, rgba(14,120,181,0.92) 100%),
    url('background1.png') center/cover no-repeat;
  background-color: var(--primary);
  color: #fff;
  padding: var(--s-5) var(--s-7);
  overflow: hidden;
}

/* Animated shimmer overlay — su yansıması hissi */
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 20% 30%, rgba(255,255,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 20% at 80% 70%, rgba(255,255,255,0.14) 0%, transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: ctaShimmer 12s ease-in-out infinite alternate;
}

@keyframes ctaShimmer {
  0%   { transform: translate3d(0,0,0); opacity: 0.9; }
  100% { transform: translate3d(40px,-12px,0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-strip::before { animation: none; }
}

.cta-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  width: 100%;
  display: block;
  pointer-events: none;
  transform: scaleY(-1);
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-6);
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: var(--fs-32);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.cta-title span {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.cta-desc {
  color: rgba(255,255,255,0.78);
  font-size: var(--fs-16);
  line-height: 1.5;
  max-width: 540px;
}

.cta-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid #fff;
}

.cta-btn-primary:hover {
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.cta-btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* ============ REVIEWS / EDITORIAL ============ */
.rv {
  background: #fff;
  padding: var(--s-9) var(--s-7);
  position: relative;
}

.fps-wave { display: none; }


.rv-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* Reviews head */
.rv-head {
  text-align: center;
  margin-bottom: var(--s-6);
}

.rv-tag {
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.rv-h {
  font-family: var(--font-display);
  font-size: var(--fs-44);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.rv-meta-sep {
  color: var(--text-subtle);
  margin: 0 4px;
}

.rv-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-subtle);
}

/* Üst güven pill - beyaz card içinde */
.rv-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: var(--s-3) var(--s-5);
  margin: 0 auto var(--s-7);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.rv-trust-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--primary);
}

.rv-trust-stars svg {
  width: 18px;
  height: 18px;
}

.rv-trust-text {
  font-size: var(--fs-14);
  color: var(--text-muted);
  font-weight: 500;
}

.rv-trust-text strong {
  color: var(--text);
  font-weight: 700;
  font-size: var(--fs-16);
}

.rv-trust-sub {
  color: var(--text-muted);
}

/* Featured editorial quote - sola yaslı */
.rv-featured {
  position: relative;
  max-width: 900px;
  margin: 0 auto var(--s-8);
  padding: var(--s-3) var(--s-3) var(--s-6) 70px;
}

.rv-mark {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  color: var(--primary);
  pointer-events: none;
}

.rv-quote {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: var(--s-5);
}

.rv-quote .hl {
  color: var(--primary);
}

.rv-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.rv-meta-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-12);
  color: var(--text-subtle);
}

.rv-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 600;
}

.rv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-14);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.rv-meta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.rv-meta-text strong {
  color: var(--text);
  font-weight: 700;
  font-size: var(--fs-14);
}

.rv-meta-text span {
  color: var(--text-subtle);
  font-size: var(--fs-12);
}

/* 3-up supporting cards */
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-9);
}

.rv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.rv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Card photo */
.rv-card-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.rv-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rv-card-mark {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.rv-card-mark svg {
  width: 22px;
  height: 22px;
}

.rv-card > .rv-stars,
.rv-card > blockquote,
.rv-card > figcaption {
  padding-left: var(--s-5);
  padding-right: var(--s-5);
}

.rv-card > .rv-stars {
  padding-top: var(--s-5);
  justify-content: center;
}

.rv-card > blockquote {
  padding-top: var(--s-3);
  padding-bottom: var(--s-4);
  text-align: center;
}

.rv-card > figcaption {
  padding-top: var(--s-4);
  padding-bottom: var(--s-5);
}

.rv-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--primary);
}

.rv-stars svg {
  width: 14px;
  height: 14px;
}

.rv-card blockquote {
  font-family: var(--font-body);
  font-size: var(--fs-16);
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
  flex: 1;
}

.rv-card figcaption {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
  margin-top: var(--s-2);
}

.rv-card figcaption div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.rv-card figcaption strong {
  color: var(--text);
  font-weight: 700;
  font-size: var(--fs-14);
}

.rv-card figcaption span {
  color: var(--text-subtle);
  font-size: var(--fs-12);
}

/* Press strip - beyaz card */
.rv-press {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-7);
  flex-wrap: wrap;
}

.rv-press-label {
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary);
}

.rv-press-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
}

.rv-press-logo {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Logo varyantları — gerçek dergi tipografi hissi */
.rv-logo-ad {
  font-family: var(--font-display);
  font-size: var(--fs-18);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.rv-logo-psn {
  font-family: var(--font-body);
  font-size: var(--fs-14);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.rv-logo-psn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.rv-logo-dwell {
  font-family: var(--font-display);
  font-size: var(--fs-24);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.rv-logo-robb {
  font-family: var(--font-display);
  font-size: var(--fs-18);
  font-weight: 500;
  font-style: italic;
}

.rv-logo-wp {
  font-family: var(--font-display);
  font-size: var(--fs-20);
  font-weight: 700;
  letter-spacing: -0.02em;
}


.ps-header {
  text-align: center;
  margin-bottom: 44px;
}

.ps-title {
  font-family: var(--font-display);
  font-size: var(--fs-44);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.ps-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.ps-brand {
  color: var(--primary);
  font-weight: 700;
}

.ps-divider {
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 18px auto 0;
}

.ps-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1400px;
  margin: 0 auto;
}

.ps-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 22px 22px 22px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(20,60,120,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ps-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  padding: 6px 14px 6px 6px;
  border-radius: var(--r-lg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
}

.ps-badge-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.ps-product {
  width: 100%;
  height: 180px;
  margin: 6px 0 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ps-product img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.ps-brand-line {
  margin-top: 6px;
  display: flex;
  justify-content: center;
}

.ps-brand-line img {
  height: 26px;
  width: auto;
}

.ps-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.ps-range {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 2px;
}

.ps-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.ps-stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  margin: 6px 0 10px;
}

.ps-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: left;
}

.ps-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ps-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.ps-stat-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.ps-btn {
  width: 100%;
  padding: 13px;
  margin-top: auto;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.ps-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(26,164,232,0.35);
}

/* Card-wide clickable overlay link */
.ps-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.ps-card {
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.ps-card:hover {
  box-shadow:
    0 0 0 1px rgba(26,164,232,0.25),
    0 12px 30px -8px rgba(26,164,232,0.28),
    0 4px 14px rgba(20,60,120,0.06);
  transform: translateY(-3px);
}

/* "View details ↗" hint under button */
.ps-view-details {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 10px;
  position: relative;
  z-index: 2;
  text-decoration: none;
}

.ps-card:hover .ps-view-details { color: var(--primary); }

/* Feature bar */
.ps-features {
  margin: 36px auto 0;
  max-width: 1400px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 22px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: 0 4px 20px rgba(20,60,120,0.06);
}

.ps-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ps-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ps-feat-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.ps-feat-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============ CART DRAWER ============ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,31,61,0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 900;
  backdrop-filter: blur(2px);
}

.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: #fff;
  box-shadow: -20px 0 60px -20px rgba(20,60,120,0.25);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 950;
  display: flex;
  flex-direction: column;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cd-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}

.cd-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
}

.cd-count {
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 6px;
  font-size: 1rem;
}

.cd-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--surface-soft);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cd-close:hover { background: var(--primary-soft); color: var(--primary); }

.cd-promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
}

.cd-promo-bar strong { font-weight: 700; }

.cd-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cd-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cd-item:last-child { border-bottom: none; }

.cd-item-img {
  background: var(--surface-soft);
  border-radius: 8px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.cd-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cd-item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cd-item-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.cd-item-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cd-item-size {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cd-item-remove {
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  color: var(--text-subtle);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.cd-item-remove:hover { background: #fce8e8; color: #c33; }

.cd-item-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cd-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.cd-qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
  font-size: 0.95rem;
}

.cd-qty-btn:hover { background: var(--primary-soft); color: var(--primary); }

.cd-qty-val {
  min-width: 26px;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  font-size: 0.85rem;
}

.cd-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.cd-foot {
  padding: 18px 24px 22px;
  border-top: 1px solid var(--border);
  background: var(--surface-soft);
}

.cd-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.cd-subtotal span:first-child {
  font-weight: 600;
  color: var(--text);
}

.cd-subtotal-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.cd-shipping-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.cd-checkout {
  width: 100%;
  padding: 14px;
  margin-bottom: 10px;
}

.cd-view-cart {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 0;
}

.cd-view-cart:hover { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* Size dots used by cart drawer (paylaşılan) */
.ct-size-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ct-dot-s  { background: #f39d2a; }
.ct-dot-m  { background: #e63b2a; }
.ct-dot-l  { background: #1a4cd6; }
.ct-dot-xl { background: #7a2db8; }

/* ============ CART DRAWER v2 (Mobile/Premium style) ============ */
.cart-drawer {
  width: 380px;
  background: #fff;
}

.cd-head {
  padding: 22px 22px 18px;
  border-bottom: none;
}

.cd-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.cd-close {
  background: transparent;
  width: 30px;
  height: 30px;
}

.cd-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 22px;
}

.cd-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.cd-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.cd-item-img {
  background: transparent;
  border-radius: 0;
  height: 86px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-item-img img {
  mix-blend-mode: multiply;
}

.cd-item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cd-item-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.cd-item-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.cd-item-remove {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--text-subtle);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-item-remove:hover { background: #fce8e8; color: #c33; }

.cd-size-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  align-self: flex-start;
  background: var(--primary-soft);
  color: var(--primary);
}

.cd-tag-s  { background: #FEF1E1; color: #B85B00; }
.cd-tag-m  { background: #FCE6E2; color: #BA1F0E; }
.cd-tag-l  { background: #E6EDFB; color: #1A4CD6; }
.cd-tag-xl { background: #EFE3F7; color: #6B25A1; }

.cd-item-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.cd-item-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.cd-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.cd-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.cd-qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
  font-size: 0.95rem;
}

.cd-qty-btn:hover { background: var(--primary-soft); color: var(--primary); }

.cd-qty-val {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  font-size: 0.85rem;
}

/* Order Summary card */
.cd-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  margin: 18px 0 12px;
}

.cd-summary-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.cd-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text);
}

.cd-summary-row span:first-child { color: var(--text-muted); }
.cd-row-val { font-weight: 600; color: var(--text); }

.cd-total-row {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 8px;
  font-size: 1rem;
}
.cd-total-row span:first-child { color: var(--text); font-weight: 700; }
.cd-total-row .cd-row-val { font-weight: 700; font-size: 1.05rem; }

/* Promo */
.cd-promo {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 6px 6px 14px;
  margin-bottom: 18px;
}

.cd-promo-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.cd-promo input {
  border: none;
  outline: none;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  background: transparent;
}

.cd-promo input::placeholder { color: var(--text-subtle); }

.cd-promo-apply {
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cd-promo-apply:hover { background: var(--primary); color: #fff; }

/* Footer buttons */
.cd-foot {
  padding: 16px 22px 22px;
  border-top: 1px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cd-checkout {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  font-family: var(--font-body);
  transition: background 0.2s;
  text-transform: none;
  border: none;
}

.cd-checkout:hover { background: var(--primary-hover); }

.cd-view-cart-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  padding: 13px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--primary);
  text-transform: none;
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
}

.cd-view-cart-btn:hover { background: var(--primary-soft); }

.cd-continue {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 4px;
}

.cd-continue:hover { color: var(--primary); }

/* Cart drawer empty state */
.cd-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}
.cd-empty svg { color: var(--text-subtle); margin-bottom: 14px; }
.cd-empty h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cd-empty p {
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.cd-empty-cta {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* Cart toast notification */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--text);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
  pointer-events: none;
}
.cart-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.cart-toast svg { color: #4ade80; }
