/* ============================================================
   ASSANONZA — Tekstil E-Ticaret
   Genel site stilleri
   ============================================================ */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #241b35;
  --ink-soft: #6e6480;
  --line: #ece5f0;
  --accent: #ff3f6c;
  --accent-dark: #e62e5c;
  --accent-soft: #fff0f4;
  --violet: #7b2ff7;
  --sun: #ffb703;
  --grad: linear-gradient(120deg, #ff6a3d 0%, #ff3f6c 52%, #b23df0 100%);
  --green: #14a05a;
  --red: #e02b45;
  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(36, 27, 53, 0.07);
  --shadow: 0 12px 32px rgba(36, 27, 53, 0.1), 0 2px 8px rgba(36, 27, 53, 0.05);
  --shadow-lg: 0 24px 56px rgba(178, 61, 240, 0.14), 0 8px 20px rgba(255, 63, 108, 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-head: "Archivo", "Inter", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

img { max-width: 100%; display: block; }

/* ---------- SVG ikonlar ---------- */
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border: 1px solid transparent;
  background: var(--grad);
  background-size: 150% 150%;
  background-position: 0% 50%;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-position 0.35s var(--ease), filter 0.25s var(--ease),
              color 0.25s var(--ease), transform 0.15s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  background-position: 100% 50%;
  filter: saturate(1.1);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 63, 108, 0.35);
}
.btn:active { transform: translateY(0) scale(0.98); box-shadow: none; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 12px; letter-spacing: 0.08em; }

/* ---------- Duyuru şeridi ---------- */
.topbar {
  background: var(--grad);
  background-size: 220% 220%;
  animation: asnz-grad-shift 9s ease infinite;
  color: #fff;
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 9px 12px;
  text-shadow: 0 1px 2px rgba(36, 27, 53, 0.18);
}

@keyframes asnz-grad-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---------- Header ---------- */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(16, 16, 16, 0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.logo {
  font-family: var(--font-head);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: opacity 0.2s;
}
.logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo:hover { opacity: 0.78; }

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.main-nav a:hover,
.main-nav a.active { color: var(--ink); }

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

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

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(255, 63, 108, 0.35);
}

.cart-link { transition: opacity 0.2s; }
.cart-link:hover { opacity: 0.72; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 12px;
  cursor: pointer;
  color: var(--ink);
  line-height: 0;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }
.nav-toggle .icon { width: 20px; height: 20px; }

.cart-remove .icon { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, #f6f6f6 0%, #ffffff 55%, #efefef 100%);
  padding: 90px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(20, 20, 20, 0.92), rgba(45, 45, 45, 0.95)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.05) 14px 28px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 24px;
}

.hero-visual .hv-inner {
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.hero-visual .hv-inner small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 10px;
}

/* ---------- Özellik şeridi ---------- */
.features {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  border: 1px solid #f8d3de;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature:nth-child(2) .feature-icon { color: var(--violet); background: #f5edff; border-color: #e3d2fb; }
.feature:nth-child(3) .feature-icon { color: #e08a00; background: #fff6e3; border-color: #fbe3ae; }
.feature:nth-child(4) .feature-icon { color: var(--green); background: #e9f8f0; border-color: #c4ecd7; }
.feature-icon .icon { width: 20px; height: 20px; stroke-width: 1.8; }

.feature h3 { font-size: 15px; margin-bottom: 2px; }
.feature p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Bölüm başlıkları ---------- */
.section { padding: 70px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 3px;
  background: var(--grad);
  margin-top: 10px;
}

.section-head p { color: var(--ink-soft); }

/* ---------- Ürün kartları ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 26px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #f4c3d3;
  transform: translateY(-4px);
}

.product-media {
  aspect-ratio: 1 / 1;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media .placeholder {
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--accent);
  opacity: 0.6;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--grad);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 2px;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(255, 63, 108, 0.3);
}

.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  transition: opacity 0.2s;
}
.product-name:hover { opacity: 0.65; }

.product-price {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin-top: auto;
}

.product-price .old {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: line-through;
  margin-right: 8px;
}

.product-body .btn { margin-top: 12px; }

/* ---------- Ürünler sayfası: filtre ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.filter-bar select,
.filter-bar input[type="search"] {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.filter-bar select:focus,
.filter-bar input[type="search"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 63, 108, 0.12);
}

.filter-bar input[type="search"] { flex: 1; min-width: 200px; }

.chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active { background: var(--grad); border-color: transparent; color: #fff; }

.empty-note {
  padding: 60px 20px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 16px;
}

/* ---------- Ürün detay ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.pd-media {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: var(--accent-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}

.pd-media img { width: 100%; height: 100%; object-fit: cover; }
.pd-media .placeholder { font-family: var(--font-head); font-size: 90px; color: var(--accent); opacity: 0.55; }

.pd-info h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 12px;
}

.pd-cat {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.pd-price {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin: 18px 0;
}
.pd-price .old {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: line-through;
  margin-right: 12px;
}

.pd-desc { color: var(--ink-soft); margin-bottom: 24px; }

.pd-meta {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  display: grid;
  gap: 10px;
}
.pd-meta span { display: flex; align-items: center; gap: 10px; }
.pd-meta .icon { width: 16px; height: 16px; color: var(--green); }

.size-row { margin-bottom: 22px; }
.size-row .size-label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.size-options { display: flex; gap: 10px; flex-wrap: wrap; }

.size-btn {
  min-width: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--ink);
}
.size-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.size-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.qty-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.qty-box button {
  width: 42px;
  height: 46px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink);
}
.qty-box button:hover { background: var(--accent-soft); }

.qty-box input {
  width: 52px;
  height: 46px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  background: transparent;
  color: var(--ink);
}
.qty-box input:focus { outline: none; }

.stock-note { font-size: 14px; font-weight: 600; }
.stock-note.in { color: var(--green); }
.stock-note.out { color: var(--red); }

/* ---------- Sepet ---------- */
.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.cart-items { display: grid; gap: 16px; }

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.cart-item-media {
  width: 92px;
  height: 92px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-media .placeholder { font-family: var(--font-head); font-size: 30px; color: var(--accent); opacity: 0.6; }

.cart-item-name { font-weight: 600; }
.cart-item-unit { font-size: 13.5px; color: var(--ink-soft); }

.cart-item-total { font-weight: 700; color: var(--accent); white-space: nowrap; }

.cart-remove {
  background: none;
  border: none;
  color: var(--red);
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}
.cart-remove:hover { opacity: 0.7; }

.summary-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: 96px;
}

.summary-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 8px 0;
  color: var(--ink-soft);
}

.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 16px;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}

.summary-card .btn { margin-top: 18px; }

.free-ship-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--green);
  text-align: center;
}

/* ---------- Ödeme ---------- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.form-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { display: grid; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 63, 108, 0.12);
}

.form-field textarea { resize: vertical; min-height: 90px; }

.form-error {
  color: var(--red);
  font-size: 13.5px;
  margin-top: 12px;
  display: none;
}
.form-error.show { display: block; }

#paytr-frame-wrap {
  margin-top: 26px;
  display: none;
}
#paytr-frame-wrap.show { display: block; }
#paytriframe { width: 100%; min-height: 620px; border: none; border-radius: var(--radius); background: #fff; }

.secure-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-soft);
}
.secure-badges .icon { width: 15px; height: 15px; }
.secure-badges span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Sonuç sayfaları ---------- */
.result-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 56px 40px;
}

.result-box .result-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-box .result-icon .icon { width: 34px; height: 34px; }
.result-box .result-icon.ok { background: #e8f4ec; color: var(--green); }
.result-box .result-icon.fail { background: #f9e9e7; color: var(--red); }
.result-box h1 { font-family: var(--font-head); font-size: 30px; margin-bottom: 12px; }
.result-box p { color: var(--ink-soft); margin-bottom: 28px; }

/* ---------- Hakkımızda / İletişim ---------- */
.page-head {
  background: linear-gradient(120deg, #fff1ec 0%, #fff0f5 45%, #f6ecff 100%);
  border-bottom: 1px solid var(--line);
  padding: 58px 0;
  text-align: center;
}

.page-head h1 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.page-head h1::after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 3px;
  background: var(--grad);
  margin: 12px auto 0;
}

.page-head p { color: var(--ink-soft); margin-top: 10px; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--font-head); font-size: 26px; margin: 34px 0 12px; }
.prose p { color: var(--ink-soft); margin-bottom: 16px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: grid; gap: 22px; }
.contact-info .ci-item h3 {
  font-size: 16px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info .ci-item h3 .icon { width: 18px; height: 18px; stroke-width: 1.8; }
.contact-info .ci-item p { color: var(--ink-soft); font-size: 15px; padding-left: 28px; }

/* ---------- Ekip ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  gap: 26px;
  justify-content: center;
  margin-top: 36px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.team-avatar {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.team-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.team-role {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 14px;
  min-height: 44px;
}

.team-phone .icon { width: 15px; height: 15px; }

.team-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  transition: all 0.15s;
}

.team-phone:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

/* ---------- Bildirim (toast) ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(120deg, #ff6a3d, #ff3f6c);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 500;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  z-index: 999;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ---------- Footer ---------- */
.site-footer {
  background: #241b35;
  color: #b3a9c4;
  margin-top: 88px;
  padding: 64px 0 0;
  border-top: 4px solid transparent;
  border-image: var(--grad) 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-grid .logo { color: #fff; margin-bottom: 14px; display: inline-block; }
.footer-grid p { font-size: 14px; line-height: 1.75; }

.footer-grid h4 {
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.16em;
}

.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid ul a {
  font-size: 14px;
  color: #b3a9c4;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.footer-grid ul a:hover { color: #ff8fab; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: #ff8fab; }

/* ============================================================
   Responsive — mobil tam uyum
   ============================================================ */

/* ---------- Tablet (≤ 960px) ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail { gap: 28px; }
  .summary-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Mobil (≤ 720px) ---------- */
@media (max-width: 720px) {
  body { font-size: 15px; }
  .container { width: 94%; }
  .section { padding: 32px 0; }

  .topbar { font-size: 11px; letter-spacing: 0.04em; padding: 7px 10px; }

  /* Header + mobil menü */
  .header-inner { padding: 12px 0; gap: 12px; }
  .logo { font-size: 19px; letter-spacing: 0.12em; }
  .header-actions { gap: 10px; }
  .cart-link { font-size: 14px; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 6%;
    border-bottom: 1px solid var(--line);
    font-size: 15.5px;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a.active { border-color: var(--line); background: var(--accent-soft); }

  /* Sayfa başlıkları */
  .page-head { padding: 30px 0; }
  .section-head { flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

  /* Ürün ızgarası: telefonda 2 sütun */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-body { padding: 12px; gap: 5px; }
  .product-name { font-size: 13.5px; }
  .product-price { font-size: 15px; }
  .product-price .old { font-size: 12px; margin-right: 5px; }
  .product-badge { font-size: 10px; padding: 4px 8px; top: 8px; left: 8px; }
  .product-body .btn { padding: 9px 10px; font-size: 13px; }

  /* Filtre çubuğu */
  .filter-bar { gap: 10px; margin-bottom: 20px; }
  .filter-bar input[type="search"] { min-width: 100%; }
  .filter-bar select { flex: 1; }

  /* Ürün detay */
  .pd-info h1 { font-size: 24px; }
  .pd-price { font-size: 24px; margin: 12px 0; }
  .qty-row { flex-wrap: wrap; }

  /* Sepet satırları */
  .cart-item {
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px 14px;
    padding: 12px;
    position: relative;
  }
  .cart-item-media { width: 72px; height: 72px; grid-row: span 2; }
  .cart-item .qty-box { grid-column: 2; justify-self: start; }
  .cart-item .qty-box button { width: 36px; height: 38px; }
  .cart-item .qty-box input { width: 40px; height: 38px; font-size: 14px; }
  .cart-item-total { grid-column: 3; grid-row: 2; align-self: center; }
  .cart-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 8px;
  }
  .summary-card { padding: 20px; }

  /* Ödeme formu: tek sütun */
  .form-card { padding: 20px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  #paytriframe { min-height: 700px; }
  .secure-badges { flex-wrap: wrap; }

  /* Sonuç kutusu */
  .result-box { padding: 36px 20px; }
  .result-box .btn { margin-bottom: 10px; }

  /* Ekip + iletişim */
  .team-grid { grid-template-columns: 1fr; }
  .contact-info .ci-item p { padding-left: 0; }

  /* Bildirim */
  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }

  /* Footer — mobilde kompakt: marka metni gizlenir, bağlantılar 3 sütun */
  .site-footer { margin-top: 36px; padding-top: 26px; }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 10px;
    padding-bottom: 16px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-grid > div:first-child p { display: none; }
  .footer-grid .logo { margin-bottom: 2px; font-size: 18px; }
  .footer-grid h4 { font-size: 10.5px; letter-spacing: 0.12em; margin-bottom: 8px; }
  .footer-grid ul { gap: 6px; }
  .footer-grid ul a { font-size: 12.5px; }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    padding: 12px 0;
    font-size: 11.5px;
    gap: 6px;
  }
}

/* ---------- Küçük telefonlar (≤ 380px) ---------- */
@media (max-width: 380px) {
  .logo { font-size: 17px; letter-spacing: 0.08em; }
  .product-grid { gap: 10px; }
  .btn { padding: 11px 18px; font-size: 12px; }
  .size-btn { min-width: 42px; padding: 9px 10px; }
  .footer-grid { gap: 12px 8px; }
  .footer-grid ul a { font-size: 12px; }
}

/* ============================================================
   EK: Hesap bağlantısı, ürün galerisi, üyelik sayfaları
   ============================================================ */

/* ---------- Header hesap bağlantısı ---------- */
.account-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.account-link .icon { width: 19px; height: 19px; }
.account-link:hover { color: var(--accent); }

/* ---------- Ürün kartı: iki görselli efektli geçiş ---------- */
.product-media { position: relative; }
.product-media img {
  transition: opacity 0.5s var(--ease), transform 0.9s var(--ease);
}
.product-media .pm-second {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-media.has-hover:hover .pm-second { opacity: 1; transform: scale(1.04); }
.product-media.has-hover:hover .pm-first { opacity: 0; }
.product-card:hover .product-media img.pm-first { transform: scale(1.06); }

.product-badge.soldout { background: var(--red); }
.product-card.is-soldout .product-media img { filter: grayscale(0.7); opacity: 0.75; }

/* ---------- Ürün detay galerisi ---------- */
.pd-gallery { display: grid; gap: 12px; }

.pd-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--accent-soft);
}

.pd-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.5s ease, transform 0.6s ease;
  pointer-events: none;
}
.pd-stage img.active {
  opacity: 1;
  transform: scale(1);
}

.pd-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  z-index: 2;
}
.pd-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.pd-nav.prev { left: 12px; }
.pd-nav.next { right: 12px; }
.pd-nav .icon { width: 20px; height: 20px; }

.pd-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.pd-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 20, 20, 0.25);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.pd-dot.active { background: var(--accent); transform: scale(1.25); }

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 10px;
}
.pd-thumb {
  aspect-ratio: 1 / 1;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--accent-soft);
  transition: border-color 0.15s;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb:hover { border-color: #f4a9c0; }
.pd-thumb.active { border-color: var(--accent); }

/* ---------- Tekstil özellikleri ---------- */
.pd-specs {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pd-spec {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.pd-spec:last-child { border-bottom: none; }
.pd-spec:nth-child(odd) { background: #fdf9fc; }
.pd-spec-key {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pd-spec-val { color: var(--ink); }

.size-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ---------- Üyelik sayfaları ---------- */
.auth-wrap {
  max-width: 440px;
  margin: 0 auto;
}
.auth-wrap .form-card { padding: 34px 30px; }
.auth-wrap .form-grid { grid-template-columns: 1fr; }
.auth-links {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}
.auth-links a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.auth-links a:hover { color: var(--accent); }

.auth-done {
  display: none;
  text-align: center;
  padding: 10px 0;
}
.auth-done .result-icon { margin-bottom: 16px; }

/* ---------- Hesabım ---------- */
.account-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

.account-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.account-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.account-card .acc-row { padding: 8px 0; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.account-card .acc-row:last-of-type { border-bottom: none; }
.account-card .acc-row small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.account-card .btn { margin-top: 18px; }

.order-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.order-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.order-head small { display: block; color: var(--ink-soft); }

.order-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.order-badge.s-pending { background: #fdf3e0; color: #8a6116; }
.order-badge.s-paid { background: #e8f4ec; color: var(--green); }
.order-badge.s-shipped { background: #e7eefb; color: #2b5eb8; }
.order-badge.s-done { background: #e8f4ec; color: var(--green); }
.order-badge.s-cancel { background: #f9e9e7; color: var(--red); }

.order-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 5px 0;
}
.order-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 12px;
  font-size: 15.5px;
}

.toast.error { background: var(--red); }

/* ---------- Responsive (mobil tam uyum — ek bileşenler) ---------- */
@media (max-width: 960px) {
  .account-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .account-link span { display: none; }
  .account-link .icon { width: 22px; height: 22px; }

  .pd-nav { width: 36px; height: 36px; }
  .pd-nav.prev { left: 8px; }
  .pd-nav.next { right: 8px; }
  .pd-thumbs { grid-template-columns: repeat(auto-fill, minmax(52px, 1fr)); gap: 8px; }
  .pd-spec { grid-template-columns: 92px 1fr; padding: 10px 12px; font-size: 13.5px; }

  .auth-wrap .form-card { padding: 24px 18px; }
  .order-card { padding: 16px 14px; }
}

/* ---------- Hesabım: kargo bilgisi ---------- */
.order-cargo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f2f6ff;
  border: 1px solid #d9e4f8;
  border-radius: var(--radius);
  padding: 12px 14px;
  margin: 12px 0 4px;
  font-size: 14px;
  color: #2b5eb8;
}
.order-cargo .icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.order-cargo small { display: block; color: #6a83ad; margin-top: 2px; }

@media (max-width: 720px) {
  .order-cargo { font-size: 13px; padding: 10px 12px; }
}

/* ============================================================
   MASTER POLISH — iskelet yükleme, giriş animasyonları,
   hareket azaltma ve mobil ince ayarlar
   ============================================================ */

/* ---------- İskelet (skeleton) yükleme ---------- */
.sk-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.sk-media { aspect-ratio: 1 / 1; }
.sk-body { padding: 18px; display: grid; gap: 10px; }
.sk-line { height: 12px; border-radius: 3px; }
.sk-media, .sk-line {
  background: linear-gradient(100deg, #f6eef3 40%, #fdf8fb 50%, #f6eef3 60%);
  background-size: 200% 100%;
  animation: asnz-shimmer 1.4s linear infinite;
}
@keyframes asnz-shimmer { to { background-position: -200% 0; } }

/* ---------- Ürün kartı giriş animasyonu ---------- */
@keyframes asnz-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-grid .product-card { animation: asnz-rise 0.5s var(--ease) backwards; }
.product-grid .product-card:nth-child(1) { animation-delay: 0.02s; }
.product-grid .product-card:nth-child(2) { animation-delay: 0.06s; }
.product-grid .product-card:nth-child(3) { animation-delay: 0.1s; }
.product-grid .product-card:nth-child(4) { animation-delay: 0.14s; }
.product-grid .product-card:nth-child(5) { animation-delay: 0.18s; }
.product-grid .product-card:nth-child(6) { animation-delay: 0.22s; }
.product-grid .product-card:nth-child(7) { animation-delay: 0.26s; }
.product-grid .product-card:nth-child(8) { animation-delay: 0.3s; }

/* ---------- Hareket azaltma tercihi ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Mobil ince ayarlar (≤ 720px) ---------- */
@media (max-width: 720px) {
  .main-nav a::after { display: none; }
  .main-nav a { font-size: 13.5px; letter-spacing: 0.1em; }
  .section-head h2::after { width: 26px; height: 2px; margin-top: 8px; }
  .page-head { padding: 34px 0; }
  .page-head h1::after { margin-top: 10px; }
  .btn { padding: 12px 22px; }
  .sk-body { padding: 12px; }
  .topbar { font-size: 10px; letter-spacing: 0.12em; }
}

/* ============================================================
   MARKA KİTİ — logotip, monogram, rozet
   ============================================================ */

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

/* Koyu zeminlerde logotip beyaza çevrilir */
.site-footer .logo img { filter: brightness(0) invert(1); height: 44px; }

/* Üyelik kartlarının tepesinde monogram */
.auth-wrap .form-card::before {
  content: "";
  display: block;
  height: 56px;
  background: url("../img/brand/monogram.png") center / contain no-repeat;
  margin-bottom: 18px;
  opacity: 0.92;
}

/* Sayfa başlıklarında silik rozet filigranı */
.page-head { position: relative; overflow: hidden; }
.page-head::before {
  content: "";
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  background: url("../img/brand/badge.png") center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.page-head .container { position: relative; }

@media (max-width: 720px) {
  .logo img { height: 36px; }
  .site-footer .logo img { height: 30px; margin: 0 auto; }
  .auth-wrap .form-card::before { height: 44px; margin-bottom: 12px; }
  .page-head::before { width: 130px; height: 130px; right: -28px; opacity: 0.06; }
}

@media (max-width: 380px) {
  .logo img { height: 30px; }
}

/* ============================================================
   SAYFALAYICI — ürünler sayfaya sığmadığında otomatik görünür
   ============================================================ */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.pager:empty { margin-top: 0; }

.pg-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
}
.pg-btn:hover:not(:disabled):not(.active) {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.pg-btn.active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  cursor: default;
}
.pg-btn:disabled { opacity: 0.35; cursor: default; }

.pg-dots { color: var(--ink-soft); padding: 0 2px; user-select: none; }

@media (max-width: 720px) {
  .pager { gap: 6px; margin-top: 20px; }
  .pg-btn { min-width: 36px; height: 36px; padding: 0 10px; font-size: 13px; }
}

/* ============================================================
   KAYAN YAZI (ticker) — şerit yerinde durur, yazı akar
   ============================================================ */
.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.tk-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: tk-scroll 30s linear infinite;
}
.ticker:hover .tk-track { animation-play-state: paused; }

@keyframes tk-scroll {
  to { transform: translateX(-50%); }
}

.tk-half { display: inline-flex; align-items: center; }
.tk-item { display: inline-block; padding: 0 20px; }
.tk-sep { opacity: 0.55; }

/* Üst duyuru şeridi: sabit yazı + arada bir geçen ışık parıltısı */
.topbar {
  position: relative;
  overflow: hidden;
}
.topbar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  left: -140px;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.65) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: topbar-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes topbar-shine {
  0%   { left: -140px; }
  38%  { left: calc(100% + 60px); }
  100% { left: calc(100% + 60px); }
}

/* Header altı slogan/bilgi bandı */
#promo-ticker {
  background: linear-gradient(90deg, #fff1ec, #fff0f5 50%, #f6ecff);
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
#promo-ticker .tk-sep { color: var(--accent); opacity: 1; }

@media (max-width: 720px) {
  .tk-item { padding: 0 14px; }
  #promo-ticker { padding: 9px 0; font-size: 10.5px; letter-spacing: 0.1em; }
}
