:root {
  --bg: #f8f4ee;
  --cream: #f0e6d8;
  --ink: #2b1a1f;
  --ink-soft: #5c3540;
  --muted: #8a7268;
  --green: #6d1f36;
  --green-deep: #4a1424;
  --orange: #c8963e;
  --line: #e8dccb;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(74, 20, 36, 0.1);
  --shadow-lg: 0 20px 60px rgba(74, 20, 36, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Nunito', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }
a { color: var(--green-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Topbar ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}

/* ---- Hamburger Buton ---- */
.menu-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  border-radius: 12px;
  transition: background 0.15s;
  flex-shrink: 0;
}
.menu-btn:hover { background: var(--cream); }
.menu-btn-bar {
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.menu-btn.open .menu-btn-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-btn.open .menu-btn-bar:nth-child(2) { opacity: 0; }
.menu-btn.open .menu-btn-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Yan Menü (Side Menu) ---- */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  max-width: 88%;
  height: 100%;
  background: var(--white);
  z-index: 110;
  box-shadow: var(--shadow-lg);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.side-menu.open { transform: translateX(0); }
.side-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.side-menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}
.side-menu-brand .brand-mark { font-size: 24px; }
.side-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 18px 28px;
}
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}
.side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.side-link:hover {
  background: var(--cream);
  color: var(--green-deep);
  text-decoration: none;
}
.side-section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px 8px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.side-categories {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0 4px;
  justify-content: flex-start;
}
.side-categories .cat-btn {
  width: 100%;
  justify-content: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  background: transparent;
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
}
.side-categories .cat-btn:hover {
  background: var(--cream);
  border-color: transparent;
}
.side-categories .cat-btn.active {
  background: var(--green-deep);
  color: var(--white);
}

/* Active kategori pill */
.active-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.active-cat-pill:empty { display: none; }
.active-cat-pill .acp-label { color: var(--muted); font-weight: 500; }
.active-cat-pill .acp-val {
  background: var(--cream);
  color: var(--green-deep);
  padding: 6px 12px;
  border-radius: 999px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  font-size: 32px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: 'Nunito', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--ink);
}
.brand-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  padding: 8px 4px;
}
.nav a:hover { color: var(--green-deep); }

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.cart-btn:hover { background: var(--green-deep); }
.cart-count {
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 0 7px;
  font-weight: 700;
}

/* ---- Hero ---- */
.hero {
  padding: 70px 0 90px;
  background:
    radial-gradient(ellipse at top right, #f2e0bd 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, #f3dde2 0%, transparent 55%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}
.lead {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 18px 0 30px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
}

.hero-image {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
}
.hero-photo {
  position: absolute;
  inset: 0;
  /* DOLDURULACAK: gerçek bir ürün/mağaza fotoğrafı ile değiştir (background-image: url('/hero.jpg')) */
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 55%, #1f0a10 100%);
  background-size: cover;
  background-position: center;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.hero-badge-icon { font-size: 26px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 16px 30px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(74, 20, 36, 0.3);
}
.btn-primary:hover { background: #331019; box-shadow: 0 10px 28px rgba(74, 20, 36, 0.4); }
.btn-primary:disabled {
  background: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--cream); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 18px 30px; font-size: 18px; }

/* ---- Sections ---- */
section { padding: 80px 0; }
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-head p { color: var(--ink-soft); font-size: 18px; }

/* ---- Arama ---- */
.search-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto 36px;
}
.search-wrap input[type="search"] {
  width: 100%;
  padding: 20px 56px 20px 58px;
  border: 2px solid var(--line);
  border-radius: 999px;
  font-size: 1.05rem;
  font-family: 'Inter', inherit;
  font-weight: 500;
  background: var(--white);
  color: var(--ink);
  outline: none;
  box-shadow: var(--shadow);
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.search-wrap input[type="search"]::placeholder { color: var(--muted); font-weight: 400; }
.search-wrap input[type="search"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(58,125,84,.12), var(--shadow);
}
.search-wrap input[type="search"]::-webkit-search-cancel-button { display: none; }
.search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  pointer-events: none;
  opacity: .7;
}
.search-clear {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-size: .85rem;
  color: var(--muted);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
  line-height: 1;
}
.search-clear:hover { background: var(--line); color: var(--ink); }

/* ---- Filter Bar ---- */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.sort-select {
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
  white-space: nowrap;
}
.sort-select:focus { border-color: var(--green); }

/* ---- Kategori Filtreleri ---- */
.categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.18s;
}
.cat-btn:hover { border-color: var(--green); color: var(--green-deep); }
.cat-btn.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

/* ---- Products ---- */
.products { background: var(--white); }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* Kart */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.has-sale {
  border-color: rgba(224, 122, 56, 0.35);
}
.has-sale:hover {
  border-color: rgba(224, 122, 56, 0.6);
}

/* Fotoğraf sarmalayıcı */
.card-photo-wrap {
  position: relative;
}
.card-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f0e9e2;
  display: block;
}

/* Kategori etiketi */
.cat-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 1;
}

/* İndirim rozeti */
.sale-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 11px;
  border-radius: 999px;
  z-index: 5;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(224, 122, 56, 0.45);
  animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 4px 14px rgba(224,122,56,0.45); }
  50%       { transform: scale(1.07); box-shadow: 0 6px 20px rgba(224,122,56,0.65); }
}

/* Kart gövdesi */
.card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  line-height: 1.3;
}
.skt-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 16px;
  flex: 1;
  line-height: 1.6;
}
.card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

/* ---- Yıldız & Yorum ---- */
.card-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0 10px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--ink-soft);
}
.card-rating:hover .card-rating-avg { text-decoration: underline; }
.star { font-size: 1rem; color: #ccc; }
.star-on { color: #f5a623; }
.card-rating-avg { font-weight: 700; color: var(--ink); margin-left: 2px; }
.card-rating-count { color: var(--muted); font-size: .82rem; }

/* ---- Sepete Eklendi Toast ---- */
.cart-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  transform: translateX(0) translateY(16px) scale(.96);
  opacity: 0;
  pointer-events: none;
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  box-shadow: 0 16px 48px rgba(74,20,36,.18), 0 2px 8px rgba(74,20,36,.08);
  z-index: 400;
  transition: opacity .3s cubic-bezier(.22,.68,0,1.2), transform .3s cubic-bezier(.22,.68,0,1.2);
  width: 340px;
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  border: 1px solid var(--line);
  overflow: hidden;
}
.cart-toast-show {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  pointer-events: auto;
}
.ct-photo {
  width: 80px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
}
.ct-body {
  flex: 1;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ct-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.ct-check {
  width: 20px; height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .04em;
  flex: 1;
}
.ct-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted);
  padding: 2px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: color .15s;
}
.ct-close:hover { color: var(--ink); }
.ct-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ct-meta {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 2px;
}
.ct-actions {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.ct-btn {
  border: none; cursor: pointer;
  border-radius: 10px;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 700;
  padding: 7px 12px;
  white-space: nowrap;
  transition: opacity .15s, transform .1s;
  display: flex; align-items: center; gap: 5px;
}
.ct-btn:hover { opacity: .85; }
.ct-btn:active { transform: scale(.97); }
.ct-btn-primary { background: var(--green); color: #fff; flex: 1; justify-content: center; }
.ct-btn-ghost { background: var(--cream); color: var(--ink-soft); }
@media (max-width: 480px) {
  .cart-toast { right: 12px; bottom: 16px; width: calc(100vw - 24px); }
}

/* ---- Ürün Detay Sayfası ---- */
.product-page {
  background: var(--bg);
  min-height: 100vh;
}
.product-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.product-page-back {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  cursor: pointer;
  padding: 0;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-page-back:hover { text-decoration: underline; }

.pd-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}
.pd-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--white);
  box-shadow: var(--shadow);
}
.pd-info { display: flex; flex-direction: column; gap: 16px; }
.pd-title { font-size: clamp(1.4rem, 3vw, 2rem); margin: 4px 0 0; }
.pd-desc { color: var(--ink-soft); font-size: 1rem; margin: 0; }
.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-rating .review-stars-big .star { font-size: 1.2rem; }
.pd-rating-avg { font-weight: 800; font-size: 1.1rem; }
.pd-rating-count { color: var(--muted); font-size: .9rem; }
.pd-add-btn { margin-top: 8px; width: 100%; padding: 18px; font-size: 1.1rem; }

.pd-reviews { border-top: 2px solid var(--line); padding-top: 48px; }
.pd-reviews h2 { margin-bottom: 28px; }

/* Yorum modali */
.review-modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.review-modal-card .modal-close {
  position: sticky;
  float: right;
  top: 0;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.review-modal-title { margin-bottom: 20px; font-size: 1.2rem; padding-right: 40px; }
.review-summary {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.review-big-score { text-align: center; min-width: 90px; }
.review-score-num { font-size: 2.8rem; font-weight: 800; color: var(--ink); line-height: 1; }
.review-stars-big { margin: 4px 0 2px; }
.review-stars-big .star { font-size: 1.1rem; }
.review-score-sub { font-size: .8rem; color: var(--muted); }
.review-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.rb-row { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); }
.rb-label { min-width: 22px; text-align: right; }
.rb-bar { flex:1; height: 7px; background: var(--line); border-radius: 99px; overflow: hidden; }
.rb-fill { height: 100%; background: #f5a623; border-radius: 99px; transition: width .4s; }
.rb-count { min-width: 18px; }
.review-list { display: flex; flex-direction: column; gap: 18px; }
.review-item { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.review-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-item-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .9rem; display: block; }
.review-stars-sm .star { font-size: .85rem; }
.review-date { margin-left: auto; font-size: .78rem; color: var(--muted); white-space: nowrap; }
.review-text { margin: 0; font-size: .92rem; color: var(--ink-soft); line-height: 1.6; }

/* Fiyat alanı */
.price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green-deep);
  font-family: 'Nunito', 'Inter', sans-serif;
  line-height: 1;
}
.price-original {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.price-sale {
  color: var(--orange) !important;
  animation: priceGlow 2.6s ease-in-out infinite;
}
@keyframes priceGlow {
  0%, 100% { color: var(--orange); text-shadow: none; }
  50%       { color: #a97829;      text-shadow: 0 0 12px rgba(200,150,62,0.35); }
}
.sale-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  animation: labelFlash 2.2s ease-in-out infinite;
}
@keyframes labelFlash {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

/* Sepete ekle butonu */
.add-btn {
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.add-btn:hover { background: var(--green-deep); }
.add-btn.added { background: var(--green); }

/* ---- How ---- */
.how { background: var(--cream); }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.steps li {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
  font-family: 'Nunito', 'Inter', sans-serif;
}
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--ink-soft); margin: 0; font-size: 16px; }

/* ---- Brands Strip ---- */
.brands {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.brands-inner::-webkit-scrollbar { display: none; }
.brands-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-chip {
  background: var(--cream);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Contact ---- */
.contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
}
.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.contact-list strong { color: var(--ink); margin-right: 10px; }
.contact-card {
  background: linear-gradient(135deg, #f7ece5 0%, #f0dcd0 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  border: 1px solid #e3c2ae;
}
.contact-card h3 { color: var(--green-deep); }

/* ---- Footer ---- */
.footer {
  background: var(--ink);
  color: #b8cab8;
  padding: 30px 0;
  text-align: center;
}
.footer p { margin: 4px 0; font-size: 15px; }
.footer .small { color: var(--muted); font-size: 13px; }
.footer a { color: #b8cab8; }

/* ---- Drawer (cart) ---- */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 100;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 { margin: 0; font-size: 1.6rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.drawer-foot {
  padding: 20px 24px 26px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

/* ---- Minimum Sipariş Bildirimi ---- */
.cart-min-notice {
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 13px;
  margin-bottom: 12px;
}
.cart-min-notice--info {
  background: #f0f6ff;
  border: 1.5px solid #bdd3fe;
  color: #2d4db5;
}
.cart-min-notice--warn {
  background: linear-gradient(135deg, #fff8ed 0%, #fffcf5 100%);
  border: 1.5px solid #f59e0b;
  color: #7c3a00;
}
.cart-min-notice--ok {
  background: linear-gradient(135deg, #f0fdf5 0%, #ecfdf5 100%);
  border: 1.5px solid #22c55e;
  color: #14532d;
}
.cart-min-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}
.cart-min-title svg { flex-shrink: 0; }
.cart-min-bar-track {
  height: 7px;
  border-radius: 99px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
  margin: 9px 0 6px;
}
.cart-min-bar-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(.4,0,.2,1);
}
.cart-min-bar-fill--warn {
  background: linear-gradient(90deg, #f59e0b 0%, #ef4444 100%);
}
.cart-min-bar-fill--ok {
  background: linear-gradient(90deg, #22c55e 0%, #059669 100%);
}
.cart-min-sub {
  font-size: 11.5px;
  opacity: 0.75;
  font-weight: 500;
}

/* ---- Toast min notu ---- */
.ct-min-note {
  display: none;
  font-size: 11.5px;
  font-weight: 600;
  color: #d97706;
  margin-top: 3px;
}

/* ---- Sayfa bilgi chipi ---- */
.min-info-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #fff8ed, #fffcf5);
  border: 1.5px solid #f59e0b;
  color: #7c3a00;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 99px;
  margin-top: 28px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.15);
}
.icon-btn {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--ink-soft);
}
.icon-btn:hover { background: var(--cream); }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item-photo {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  background-color: #f0e9e2;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-item-info .price { font-size: 15px; }
.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.qty button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
.qty button:hover { background: var(--cream); }
.qty span { min-width: 24px; text-align: center; font-weight: 600; }
.remove-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  margin-top: 4px;
  padding: 0;
  text-decoration: underline;
}
.remove-btn:hover { color: var(--green-deep); }

.empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
  font-size: 16px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  font-size: 18px;
}
.total-row strong {
  font-weight: 800;
  font-size: 28px;
  color: var(--green-deep);
  font-family: 'Nunito', 'Inter', sans-serif;
}
.total-row.big strong { font-size: 32px; }

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 10, 0.45);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.backdrop.show { opacity: 1; pointer-events: auto; }

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  background: rgba(10, 20, 10, 0.55);
}
.modal.open { display: flex; }
.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 540px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: auto;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}
.lead-sm { color: var(--ink-soft); font-size: 16px; margin-bottom: 24px; }
.modal-card h2 { margin-bottom: 8px; }

form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15.5px;
}
form input,
form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 14px 16px;
  font-size: 17px;
  font-family: inherit;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s;
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
form textarea { resize: vertical; }

.iban-box {
  background: linear-gradient(135deg, #fff 0%, #f7f0e0 100%);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px 0 24px;
}
.iban-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.iban-row:last-of-type { border-bottom: none; }
.iban-label { color: var(--muted); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.iban-val { color: var(--ink); font-weight: 600; text-align: right; }
.iban-num {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.06em;
  font-size: 15px;
  word-break: break-all;
}
.copied {
  text-align: center;
  color: var(--green);
  font-weight: 600;
  margin: 10px 0 0;
}

.order-summary {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 22px;
}
.order-summary h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.summary-line + .total-row { border-top: 1px solid var(--line); padding-top: 12px; margin-top: 8px; margin-bottom: 0; }

.success { text-align: center; padding: 16px 8px; }
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin: 0 auto 18px;
}

/* ============================================================
   MOBİL
   ============================================================ */
@media (max-width: 860px) {
  .pd-hero { grid-template-columns: 1fr; gap: 28px; }
  .pd-photo { aspect-ratio: 4/3; }
  body { font-size: 17px; line-height: 1.7; }

  .container { padding: 0 22px; }

  .topbar-inner { padding: 16px 20px; }
  .nav { display: none; }
  .cart-label { display: none; }
  .cart-btn { padding: 12px 16px; }

  .hero { padding: 36px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image {
    order: -1;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }
  .hero-badge { bottom: 14px; left: 14px; padding: 12px 16px; font-size: 14px; }
  .eyebrow { font-size: 12px; letter-spacing: 0.22em; margin-bottom: 14px; }
  .hero-text h1 { font-size: 2.1rem; line-height: 1.1; }
  .lead { font-size: 17px; line-height: 1.65; margin: 20px 0 28px; }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }
  .hero-actions .btn { width: 100%; padding: 18px 24px; font-size: 17px; }
  .trust { flex-direction: column; gap: 12px; font-size: 15.5px; }

  section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 1.9rem; line-height: 1.2; }
  .section-head p { font-size: 16.5px; line-height: 1.65; }

  .nav { display: none; }
  .side-menu { width: 320px; }
  .menu-btn { width: 40px; height: 40px; }

  .grid { grid-template-columns: 1fr; gap: 20px; }
  .card { border-radius: 20px; }
  .card-photo { aspect-ratio: 5 / 3.5; }
  .card-body { padding: 22px 22px 26px; }
  .card h3 { font-size: 1.2rem; margin-bottom: 8px; }
  .card p { font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
  .card-foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .price { font-size: 1.8rem; }
  .add-btn { width: 100%; padding: 15px 22px; font-size: 16px; }
  .sale-badge { top: 10px; right: 10px; font-size: 11.5px; padding: 4px 10px; }
  .cat-tag { font-size: 11px; padding: 3px 10px; }

  .brands { padding: 28px 0; }
  .brands-inner { gap: 10px; }
  .brand-chip { padding: 9px 18px; font-size: 14px; }

  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps li {
    padding: 28px 24px;
    border-radius: 20px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
    row-gap: 4px;
    align-items: start;
  }
  .step-num { grid-row: span 2; width: 50px; height: 50px; margin: 0; font-size: 22px; }
  .steps h3 { margin: 0; font-size: 1.25rem; align-self: center; }
  .steps p { font-size: 15px; line-height: 1.6; grid-column: 2; }

  .contact-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-list { font-size: 17px; }
  .contact-list li { padding: 16px 0; }
  .contact-card { padding: 30px 24px; border-radius: 20px; }

  .drawer {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 88vh;
    height: auto;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -8px 40px rgba(74,20,36,.18);
  }
  .drawer::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--line);
    border-radius: 99px;
    margin: 14px auto 0;
    flex-shrink: 0;
  }
  .drawer.open { transform: translateY(0); }
  .drawer-head { padding: 16px 22px 20px; }
  .drawer-body { padding: 22px; }
  .drawer-foot { padding: 22px 22px max(26px, env(safe-area-inset-bottom, 26px)); }

  .modal { padding: 0; align-items: stretch; }
  .modal-card {
    padding: 28px 24px 32px;
    border-radius: 0;
    min-height: 100vh;
    margin: 0;
    max-width: none;
  }
  .modal-card h2 { font-size: 1.8rem; }
  .modal-close { top: 16px; right: 16px; font-size: 24px; }

  form label { font-size: 15px; margin-bottom: 18px; }
  form input, form textarea { padding: 16px; font-size: 17px; border-radius: 14px; }

  .iban-box { padding: 20px 18px; margin: 20px 0 24px; border-radius: 16px; }
  .iban-row { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 0; }
  .iban-val { text-align: left; }
  .iban-num { font-size: 14px; line-height: 1.5; }
  .order-summary { padding: 20px 18px; border-radius: 16px; }
  .total-row { font-size: 17px; }
  .total-row strong { font-size: 26px; }
  .total-row.big strong { font-size: 30px; }

  .btn { padding: 18px 26px; font-size: 17px; }
  .btn-lg { padding: 20px 26px; font-size: 18px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .topbar-inner { padding: 14px 18px; }
  .brand-name { font-size: 20px; }
  .brand-sub { font-size: 10px; }
  .brand-mark { font-size: 26px; }
  .brand { gap: 10px; }

  .hero { padding: 28px 0 48px; }
  .hero-text h1 { font-size: 1.9rem; }
  .lead { font-size: 16.5px; }
  .section-head h2 { font-size: 1.7rem; }
  section { padding: 52px 0; }
  .card-body { padding: 20px 18px 22px; }

  .steps li { grid-template-columns: 1fr; text-align: center; padding: 26px 20px; }
  .step-num { grid-row: auto; margin: 0 auto 12px; }
  .steps h3 { text-align: center; }
  .steps p { grid-column: auto; text-align: center; }

  .contact-card { padding: 26px 20px; }
}

/* ---- Kurumsal Sayfası ---- */
.corp-page {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--bg);
  overflow-y: auto;
}
.corp-page-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 24px 80px;
}
.corp-back {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 18px;
  font-family: inherit;
}
.corp-back:hover { opacity: 0.7; }

.corp-hero {
  text-align: center;
  padding: 40px 0 50px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.corp-eyebrow {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}
.corp-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin: 0 0 18px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--green-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.corp-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.corp-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.corp-section:last-of-type { border-bottom: none; }
.corp-section h2 {
  font-size: 1.7rem;
  margin: 0 0 18px;
  color: var(--green-deep);
}
.corp-section p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.corp-section p strong { color: var(--ink); font-weight: 700; }

.corp-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 0;
}
.corp-stat {
  text-align: center;
  padding: 22px 12px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.corp-stat-num {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 6px;
}
.corp-stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.corp-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.corp-value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
}
.corp-value-icon {
  display: inline-block;
  font-size: 30px;
  margin-bottom: 10px;
}
.corp-value h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.corp-value p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-soft);
}

.corp-promise {
  background: linear-gradient(135deg, #f9f1e0 0%, #f5e8d0 100%);
  border-radius: var(--radius-lg);
  padding: 36px 30px !important;
  margin-top: 24px;
  border: 1px solid #e3c2ae;
  text-align: center;
}
.corp-promise h2 { color: var(--green-deep); }
.corp-sign {
  margin-top: 18px !important;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--ink) !important;
  font-size: 18px !important;
}

.corp-cta {
  margin-top: 40px;
  font-size: 17px;
  padding: 18px 28px;
}

@media (max-width: 720px) {
  .corp-page-inner { padding: 22px 18px 60px; }
  .corp-hero { padding: 26px 0 36px; margin-bottom: 18px; }
  .corp-hero h1 { font-size: 2rem; }
  .corp-lead { font-size: 16.5px; }
  .corp-section { padding: 28px 0; }
  .corp-section h2 { font-size: 1.45rem; }
  .corp-section p { font-size: 16px; line-height: 1.7; }
  .corp-numbers { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .corp-stat { padding: 18px 10px; }
  .corp-stat-num { font-size: 1.7rem; }
  .corp-values-grid { grid-template-columns: 1fr; }
  .corp-promise { padding: 28px 22px !important; }
}

/* ---- Pagination ---- */
#pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 32px 0 16px;
  flex-wrap: wrap;
}
.pg-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1.5px solid var(--border, #ddd);
  border-radius: 8px;
  background: #fff;
  color: var(--text, #222);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.pg-btn:hover { background: var(--accent, #e8763a); color: #fff; border-color: var(--accent, #e8763a); }
.pg-btn.pg-active { background: var(--accent, #e8763a); color: #fff; border-color: var(--accent, #e8763a); font-weight: 700; }
.pg-dots { color: var(--muted, #999); font-size: 14px; padding: 0 4px; line-height: 38px; }

/* ---- Yetkili Satıcı Badge ---- */
.brand-auth {
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 12.5px;
  color: #b91c1c;
  line-height: 1.45;
  margin: 6px 0 10px;
}
.brand-auth svg { flex-shrink: 0; margin-top: 1px; }
.brand-auth strong { font-weight: 700; }

/* ---- Sipariş Sayfası (/siparis) ---- */
.sp-page { min-height: 100vh; background: var(--bg); }
.sp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(10px);
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  height: 64px;
  gap: 0;
}
.sp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 10px 0;
}
.sp-back:hover { opacity: 0.75; }
.sp-brand {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-left: auto;
}
.sp-body {
  max-width: 580px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.sp-body h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.sp-step { display: none; }
.sp-step.active { display: block; }
@media (max-width: 600px) {
  .sp-header { padding: 0 18px; }
  .sp-body { padding: 28px 18px 60px; }
  .sp-body h1 { font-size: 1.7rem; }
}

/* ============================================================
   SİPARİŞ ONAY SAYFASI (/siparis-onay.html)
   ============================================================ */
.so-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 20px 80px;
}

.so-loading {
  max-width: 480px;
  margin: 80px auto;
  text-align: center;
  color: var(--muted);
}
.so-spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--line);
  border-top-color: var(--green);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: so-spin 0.8s linear infinite;
}
@keyframes so-spin { to { transform: rotate(360deg); } }

.so-error {
  max-width: 480px;
  margin: 60px auto;
  text-align: center;
  padding: 32px 24px;
}
.so-error h2 { margin-bottom: 8px; }
.so-error p { color: var(--muted); }

/* Üst banner — siyah arkaplan + countdown */
.so-banner {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  text-align: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.so-banner-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.so-banner-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}
.so-banner-sub strong {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}

/* Aksiyon kartları — dekont + whatsapp */
.so-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.so-action {
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  color: var(--white);
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}
.so-action:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: var(--shadow-lg);
}
.so-action-dark   { background: var(--ink); }
.so-action-green  { background: #16a34a; }
.so-action-icon { opacity: 0.95; }
.so-action-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.so-action-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}

/* Bilgi kartı — İSİM / IBAN / BANKA */
.so-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.so-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.so-info-row:last-child { border-bottom: none; }
.so-info-label {
  font-family: 'Nunito', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.so-info-val {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: 'Nunito', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-align: right;
}
.so-iban {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: 'tnum' 1;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink);
  word-break: break-all;
}
.so-copy-btn {
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', 'Inter', sans-serif;
  letter-spacing: 0.03em;
  transition: background 0.15s, transform 0.1s;
  flex-shrink: 0;
}
.so-copy-btn:hover { background: var(--ink-soft); }
.so-copy-btn:active { transform: scale(0.96); }

/* Sipariş Özeti kartı */
.so-summary-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.so-summary-head {
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.so-summary-body { padding: 8px 20px; }
.so-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.so-summary-line:last-child { border-bottom: none; }
.so-summary-line strong { color: var(--ink); font-weight: 700; }
.so-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}
.so-summary-row strong { color: var(--ink); font-weight: 700; }
.so-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.so-summary-total span { font-size: 14px; color: var(--muted); }
.so-summary-total strong { font-size: 22px; color: var(--green-deep); }

/* Sipariş No + Link süresi */
.so-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 0 4px;
  margin-bottom: 18px;
}
.so-meta-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.so-order-id {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.so-expiry { text-align: right; }
.so-expiry-val {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--orange);
}

/* Müşteri bilgileri */
.so-customer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.so-customer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  gap: 16px;
}
.so-customer-row:last-child { border-bottom: none; }
.so-customer-row span { color: var(--muted); flex-shrink: 0; }
.so-customer-row strong {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}

.so-help {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

/* Kopyalandı toast */
.so-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  animation: so-toast-in 0.25s ease-out;
}
@keyframes so-toast-in {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* Mobil */
@media (max-width: 600px) {
  .so-wrap { padding: 20px 14px 70px; }
  .so-banner { padding: 18px 16px; border-radius: 16px; }
  .so-banner-title { font-size: 14px; }
  .so-banner-sub { font-size: 13px; }
  .so-actions { grid-template-columns: 1fr; gap: 10px; }
  .so-action { padding: 18px 14px; }
  .so-info-row { padding: 14px 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .so-info-val { width: 100%; justify-content: space-between; text-align: left; font-size: 15px; }
  .so-iban { font-size: 15px; letter-spacing: 0.04em; }
  .so-summary-head, .so-summary-body, .so-summary-row, .so-summary-total { padding-left: 14px; padding-right: 14px; }
  .so-summary-total strong { font-size: 19px; }
  .so-order-id { font-size: 24px; }
  .so-customer { padding: 4px 12px; }
  .so-customer-row { flex-direction: column; align-items: flex-start; gap: 2px; padding: 10px 2px; }
  .so-customer-row strong { text-align: left; }
}

/* ---- Bilgilendirme Sayfaları (SSS, KVKK, Mesafeli Satış, Kargo) ---- */
.info-page {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--bg);
  overflow-y: auto;
}
.info-page-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 24px 100px;
}
.info-back {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--green-deep);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 18px;
}
.info-back:hover { color: var(--orange); }
.info-hero {
  text-align: center;
  padding: 24px 0 36px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.info-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.info-hero h1 {
  font-size: 42px;
  margin: 0 0 14px;
  line-height: 1.15;
}
.info-lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.info-section {
  margin-bottom: 40px;
}
.info-section h2 {
  font-size: 24px;
  margin: 0 0 14px;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.info-section h3 {
  font-size: 18px;
  margin: 22px 0 10px;
  color: var(--ink-soft);
  font-weight: 700;
}
.info-section p,
.info-section li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.info-section ul, .info-section ol {
  padding-left: 22px;
  margin: 12px 0;
}
.info-section ul li, .info-section ol li {
  margin-bottom: 8px;
}
.info-section strong { color: var(--ink); }
.info-callout {
  background: #fff;
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 18px 0;
  box-shadow: var(--shadow);
}
.info-callout p { margin: 0; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info-table th, .info-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.info-table th {
  background: var(--cream);
  font-weight: 700;
  color: var(--ink);
}
.info-table tr:last-child td { border-bottom: none; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.18s;
}
.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.faq-q {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-q:hover { background: #fafaf5; }
.faq-a {
  padding: 4px 22px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-a p { margin: 0 0 10px; }
.faq-a p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .info-page-inner { padding: 22px 18px 80px; }
  .info-hero h1 { font-size: 30px; }
  .info-lead { font-size: 15px; }
  .info-section h2 { font-size: 20px; }
  .faq-q { padding: 14px 16px; font-size: 15px; }
  .faq-a { padding: 4px 16px 16px; font-size: 14px; }
}

/* ---- Büyük Footer ---- */
.footer-big {
  background: #2a0f18;
  color: #e3d6d9;
  padding: 80px 0 28px;
  margin-top: 60px;
  position: relative;
}
.footer-big::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.footer-big-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.footer-brand-block { padding-right: 20px; }
.footer-brand-title {
  font-family: 'Nunito', 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 900;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
}
.footer-brand-title .brand-mark-fb {
  display: inline-block;
  margin-right: 8px;
  font-size: 36px;
}
.footer-brand-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #c9a8ac;
  margin: 0 0 26px;
  max-width: 420px;
}
.footer-trust {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}
.footer-trust-badge {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.footer-trust-badge img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
.footer-col-title {
  font-family: 'Nunito', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}
.footer-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col-list a {
  color: #c9a8ac;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.footer-col-list a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-big-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #a3818a;
}
.footer-big-bottom .footer-tag { color: #c9a8ac; }
@media (max-width: 900px) {
  .footer-big-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
  .footer-brand-block {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .footer-big { padding: 60px 0 24px; margin-top: 40px; }
  .footer-big-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .footer-brand-title { font-size: 32px; }
  .footer-brand-desc { font-size: 14px; }
  .footer-trust-badge { width: 110px; height: 110px; padding: 10px; }
  .footer-trust { gap: 16px; justify-content: center; }
  .footer-big-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px 0;
    margin-top: 36px;
  }
}

/* Mobil Alt Navigasyon — sadece mobilde */
.bottom-nav { display: none; }
@media (max-width: 768px) {
  .bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 16px rgba(74, 20, 36, 0.06);
    z-index: 70;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px 8px;
    background: none;
    border: none;
    text-decoration: none;
    color: #2b1a1f;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.15s, background 0.15s;
  }
  .bottom-nav-item svg { width: 24px; height: 24px; display: block; }
  .bottom-nav-item:active { background: #f8f4ee; color: var(--green-deep); }
  .bottom-nav-badge {
    position: absolute;
    top: 4px;
    left: calc(50% + 6px);
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  body { padding-bottom: 68px; }
}

/* ---- Sipariş Takip Sayfası ---- */
.takip-page {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--bg);
  overflow-y: auto;
}
.takip-page-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 28px 24px 80px;
}
.takip-back {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--green-deep);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 18px;
}
.takip-back:hover { color: var(--orange); }
.takip-hero {
  text-align: center;
  margin-bottom: 28px;
}
.takip-hero h1 {
  font-size: 32px;
  margin: 0 0 8px;
}
.takip-hero p {
  color: var(--ink-soft);
  margin: 0;
}
.takip-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.takip-form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.takip-form input {
  font-family: inherit;
  font-size: 18px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.takip-form input:focus {
  outline: none;
  border-color: var(--green);
}
.takip-result { margin-top: 8px; }
.takip-loading, .takip-error {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--ink-soft);
}
.takip-error { color: #dc2626; border-color: #fecaca; background: #fef2f2; }
.takip-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.takip-status {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.takip-status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25);
  animation: takip-pulse 1.6s ease-in-out infinite;
}
@keyframes takip-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25); }
  50% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}
.takip-status-text {
  font-size: 22px;
  font-weight: 800;
  color: #92400e;
  font-family: 'Nunito', 'Inter', sans-serif;
}
.takip-info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.takip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.takip-row:last-child { border-bottom: none; }
.takip-row span { color: var(--ink-soft); }
.takip-row strong { color: var(--ink); font-weight: 700; }
.takip-items {
  padding: 0 20px 18px;
}
.takip-items-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.takip-items ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.takip-items li {
  background: var(--bg);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
}
.takip-note {
  margin: 0;
  padding: 16px 20px;
  background: #f0fdf4;
  border-top: 1px solid #bbf7d0;
  color: #14532d;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}

/* Sabit WhatsApp Butonu — her sayfada sağ altta, scroll'da kalır */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38), 0 4px 10px rgba(0, 0, 0, 0.14);
  z-index: 80;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  z-index: -1;
  animation: wa-pulse 2.2s ease-out infinite;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.05);
  background: #1ebe57;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.48), 0 6px 12px rgba(0, 0, 0, 0.18);
}
.wa-float:active { transform: scale(0.96); }
.wa-float svg { display: block; width: 32px; height: 32px; }
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (max-width: 768px) {
  .wa-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 84px;
  }
  .wa-float svg { width: 28px; height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; opacity: 0; }
}
