/* ============================================================
   temizlikshop.com — NUMAX Online Mağaza
   Premium e-ticaret arayüzü · sadece NUMAX
   ============================================================ */

:root {
  --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ff-head: 'Sora', 'Inter', sans-serif;

  --red: #e3262e;
  --red-dark: #b81e25;
  --navy: #0b2540;
  --navy-2: #143456;
  --ink: #16243a;
  --muted: #5b6b80;
  --line: #e7ecf2;
  --bg: #f4f6f9;
  --bg-soft: #fafbfd;
  --cyan: #19c3e6;
  --green: #16b85a;
  --amber: #f59e0b;

  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 8px 24px rgba(11, 37, 64, .08);
  --shadow-lg: 0 22px 48px rgba(11, 37, 64, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 100px;
  transition: .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(227, 38, 46, .28); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(227, 38, 46, .35); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-lg { font-size: 16px; padding: 16px 30px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Announce bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #eaf2ff;
  font-size: 13.5px;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: .2px;
}
.announce strong { color: #fff; }
.announce i { color: var(--cyan); }

/* ---------- Header ---------- */
.shop-header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: #fff;
  box-shadow: 0 2px 14px rgba(11, 37, 64, .06);
}
.header-main {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 15px 0;
}
.menu-btn { display: none; font-size: 26px; color: var(--navy); }

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; color: var(--navy); flex-shrink: 0; }
.logo-img { height: 46px; width: auto; display: block; }
.shop-footer .logo-img { height: 54px; }
.logo-mark { height: 38px; width: auto; }
.logo-word {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 25px;
  line-height: .82;
  letter-spacing: -.02em;
  color: currentColor;
  display: flex;
  flex-direction: column;
}
.logo-word small {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 7.5px;
  letter-spacing: .26em;
  margin-top: 4px;
  opacity: .9;
  white-space: nowrap;
}

/* Search */
.search {
  flex: 1;
  display: flex;
  max-width: 560px;
  border: 1.6px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
  transition: .25s var(--ease);
}
.search:focus-within { border-color: var(--red); box-shadow: 0 0 0 4px rgba(227, 38, 46, .1); }
.search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14.5px;
  padding: 12px 20px;
  background: transparent;
}
.search button {
  background: var(--navy);
  color: #fff;
  padding: 0 22px;
  font-size: 18px;
  transition: .25s;
}
.search button:hover { background: var(--red); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--ink);
  transition: .2s;
}
.icon-btn:hover { background: var(--bg); }
.icon-btn > i { font-size: 23px; color: var(--navy); }
.icon-btn .lbl { display: flex; flex-direction: column; line-height: 1.15; font-size: 13.5px; font-weight: 700; }
.icon-btn .lbl small { font-size: 11px; font-weight: 500; color: var(--muted); }
.cart-count {
  position: absolute;
  top: 3px; left: 26px;
  min-width: 19px; height: 19px;
  padding: 0 5px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 100px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

/* Category nav */
.cat-nav { border-top: 1px solid var(--line); background: var(--bg-soft); }
.cat-nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-inner a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 13px 15px;
  white-space: nowrap;
  position: relative;
  transition: .2s;
  cursor: pointer;
}
.cat-nav-inner a:hover { color: var(--red); }
.cat-nav-inner a.active { color: var(--red); }
.cat-nav-inner a.active::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px; bottom: 0;
  height: 3px;
  background: var(--red);
  border-radius: 3px 3px 0 0;
}
.cat-nav-inner a.all { color: var(--red); font-weight: 700; }
.cat-nav-inner a.hot i { color: var(--amber); }

/* ---------- Hero ---------- */
.hero-shop { padding: 26px 0 8px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
}
.hero-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(25, 195, 230, .28), transparent 60%),
    linear-gradient(120deg, var(--navy), var(--navy-2));
  color: #fff;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero-main::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(227, 38, 46, .35), transparent 70%);
  filter: blur(10px);
}
.hero-main-content { position: relative; z-index: 2; padding: 46px; max-width: 560px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 7px 15px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-tag i { color: var(--cyan); }
.hero-main h1 {
  font-family: var(--ff-head);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.hero-main h1 span {
  background: linear-gradient(120deg, #5fe0f5, #19c3e6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-main p { font-size: 16px; color: #d4e2f3; margin-bottom: 26px; max-width: 460px; }

.hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.hero-card {
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: .35s var(--ease);
}
.hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hero-card.c1 { background: linear-gradient(135deg, #fff5f5, #ffe3e3); }
.hero-card.c2 { background: linear-gradient(135deg, #e9f9ff, #d4f1fb); }
.hc-emoji { font-size: 38px; margin-bottom: 8px; }
.hero-card small { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); }
.hero-card.c2 small { color: #0c8ba6; }
.hero-card strong { font-family: var(--ff-head); font-size: 19px; color: var(--navy); margin: 3px 0 12px; }
.hero-card a { font-size: 14px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 5px; }
.hero-card a i { transition: .25s; }
.hero-card:hover a i { transform: translateX(4px); }

/* USP strip */
.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.usp {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.usp i { font-size: 26px; color: var(--red); }
.usp strong { display: block; font-size: 14.5px; font-family: var(--ff-head); color: var(--navy); }
.usp span { font-size: 12.5px; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 46px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 26px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--ff-head);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.section-head p { color: var(--muted); font-size: 15px; margin-top: 4px; }
.section-head .link { color: var(--red); font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }

/* Category tiles */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 16px;
  text-align: center;
  transition: .3s var(--ease);
  cursor: pointer;
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-tile .ico {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  background: linear-gradient(135deg, #fff0f0, #ffe0e0);
}
.cat-tile h3 { font-family: var(--ff-head); font-size: 15.5px; color: var(--navy); }
.cat-tile span { font-size: 12.5px; color: var(--muted); }

/* ---------- Toolbar ---------- */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.cat-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-pill {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  transition: .22s var(--ease);
  cursor: pointer;
}
.cat-pill:hover { border-color: var(--navy); }
.cat-pill.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.toolbar-right { display: flex; align-items: center; gap: 10px; }
.toolbar-right .count { font-size: 13.5px; color: var(--muted); }
.toolbar-right select {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 9px 16px;
  background: #fff;
  cursor: pointer;
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .3s var(--ease);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
}
.product-fav {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: var(--muted);
  transition: .2s;
}
.product-fav:hover { color: var(--red); background: #fff; }
.product-fav.on { color: var(--red); }
.product-media {
  height: 196px;
  background: linear-gradient(160deg, #fafbfd, #eef2f7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.product-media img {
  max-height: 100%;
  max-width: 76%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: .5s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-emoji { font-size: 64px; line-height: 1; }
.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 11.5px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .05em; }
.product-name {
  font-family: var(--ff-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin: 5px 0 6px;
  line-height: 1.3;
  min-height: 40px;
}
.product-desc {
  font-size: 12.8px;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.product-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.product-meta .chip {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  border-radius: 7px;
  padding: 4px 9px;
}
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { display: flex; flex-direction: column; line-height: 1.1; }
.product-price .now { font-family: var(--ff-head); font-size: 20px; font-weight: 800; color: var(--navy); }
.product-price .ask { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.product-price small { font-size: 12px; color: var(--muted); }
.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13.5px;
  transition: .25s var(--ease);
  flex-shrink: 0;
}
.add-btn i { font-size: 18px; }
.add-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.add-btn.added { background: var(--green); }

/* Empty state */
.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.empty i { font-size: 50px; color: var(--line); display: block; margin-bottom: 14px; }

/* ---------- Banner CTA ---------- */
.cta-banner {
  border-radius: var(--radius);
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(25, 195, 230, .22), transparent 60%),
    linear-gradient(120deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-family: var(--ff-head); font-size: clamp(22px, 3vw, 32px); font-weight: 800; }
.cta-banner p { color: #ffe1e3; margin-top: 6px; max-width: 520px; }

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 64, .5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 950;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  background: #fff;
  z-index: 960;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(11, 37, 64, .2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-family: var(--ff-head); font-size: 19px; color: var(--navy); display: flex; align-items: center; gap: 9px; }
.cart-head .close { font-size: 26px; color: var(--muted); transition: .2s; }
.cart-head .close:hover { color: var(--red); }
.cart-items { flex: 1; overflow-y: auto; padding: 14px 18px; }
.cart-item {
  display: flex;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-img {
  width: 64px; height: 64px;
  border-radius: 11px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-img img { max-width: 80%; max-height: 80%; object-fit: contain; mix-blend-mode: multiply; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 14px; font-family: var(--ff-head); color: var(--navy); line-height: 1.3; }
.cart-item-info .sz { font-size: 12px; color: var(--muted); }
.cart-item-info .pr { font-size: 14px; font-weight: 800; color: var(--red); margin-top: 3px; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  margin-top: 7px;
}
.qty button { width: 28px; height: 28px; font-size: 16px; color: var(--navy); display: flex; align-items: center; justify-content: center; }
.qty span { min-width: 26px; text-align: center; font-size: 13.5px; font-weight: 700; }
.cart-item-del { color: var(--muted); font-size: 17px; align-self: flex-start; transition: .2s; }
.cart-item-del:hover { color: var(--red); }
.cart-empty { text-align: center; padding: 50px 20px; color: var(--muted); }
.cart-empty i { font-size: 54px; color: var(--line); display: block; margin-bottom: 14px; }
.cart-foot { border-top: 1px solid var(--line); padding: 18px 22px; }
.cart-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin: 6px 0 16px; }
.cart-total span { font-size: 15px; color: var(--ink); }
.cart-total strong { font-family: var(--ff-head); font-size: 24px; color: var(--navy); }
.cart-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ---------- Footer ---------- */
.shop-footer { background: var(--navy); color: #c3d3e6; padding: 52px 0 24px; margin-top: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.shop-footer .logo { color: #fff; margin-bottom: 16px; }
.footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-soc { display: flex; gap: 10px; }
.footer-soc a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  transition: .25s;
}
.footer-soc a:hover { background: var(--red); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--ff-head); font-size: 15px; color: #fff; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; transition: .2s; }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; font-size: 14px; margin-bottom: 13px; line-height: 1.5; }
.footer-contact i { color: var(--cyan); font-size: 17px; margin-top: 2px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 38px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-pay { display: flex; gap: 8px; align-items: center; }
.footer-pay i { font-size: 26px; color: #8aa3c0; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  height: 60px;
  border-radius: 100px;
  color: #fff;
  background: linear-gradient(135deg, #2bde72, #16b85a 55%, #0f9b46);
  box-shadow: 0 14px 30px rgba(15, 155, 70, .45), inset 0 1px 0 rgba(255, 255, 255, .35);
  transition: transform .35s var(--ease);
}
.wa-float::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(22, 184, 90, .55);
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .5; }
  70% { transform: scale(1.85); opacity: 0; }
  100% { opacity: 0; }
}
.wa-float i { font-size: 30px; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
.wa-float span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  font-weight: 700;
  font-family: var(--ff-head);
  font-size: 14.5px;
  transition: max-width .4s var(--ease), opacity .3s, padding .4s;
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float:hover span { max-width: 280px; opacity: 1; padding-right: 24px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: var(--navy);
  color: #fff;
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 980;
  transition: transform .4s var(--ease);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast i { color: var(--green); font-size: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .usp-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .icon-btn .lbl { display: none; }
  .search { order: 3; max-width: 100%; flex-basis: 100%; }
  .header-main { flex-wrap: wrap; }
}
@media (max-width: 760px) {
  .menu-btn { display: block; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 32px 26px; }
}
@media (max-width: 540px) {
  .hero-side { grid-template-columns: 1fr; }
  .usp-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-name { font-size: 14px; }
  .hero-main-content { padding: 32px 24px; }
  .logo-word { font-size: 22px; }
  .wa-float { height: 54px; }
  .wa-float::before { width: 54px; height: 54px; }
  .wa-float i { width: 54px; height: 54px; font-size: 27px; }
}

/* ============================================================
   Sayfa içi: breadcrumb, ürün detay, hesap, ödeme, formlar
   ============================================================ */
.page-wrap { padding: 30px 0 10px; }
.crumb { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--red); }
.crumb span { color: var(--ink); }

.page-title { font-family: var(--ff-head); font-size: clamp(24px,3vw,34px); font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin-bottom: 6px; }
.page-sub { color: var(--muted); font-size: 15px; margin-bottom: 26px; }

/* Forms */
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 14.5px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 11px; padding: 12px 14px; background: #fff; transition: .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,38,46,.1); }
.field textarea { resize: vertical; min-height: 86px; }
.field .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.form-msg { font-size: 13.5px; padding: 10px 14px; border-radius: 10px; margin-bottom: 14px; display: none; }
.form-msg.err { display: block; background: #fff0f0; color: #c0212a; border: 1px solid #ffd5d8; }
.form-msg.ok { display: block; background: #ecfdf3; color: #0a7a3d; border: 1px solid #c7f0d6; }

/* Product detail */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: start; }
.pd-media {
  background: linear-gradient(160deg,#fafbfd,#eef2f7); border: 1px solid var(--line);
  border-radius: var(--radius); min-height: 420px; display: flex; align-items: center; justify-content: center; padding: 30px; position: relative;
}
.pd-media img { max-width: 78%; max-height: 380px; object-fit: contain; mix-blend-mode: multiply; }
.pd-media .emoji { font-size: 150px; }
.pd-cat { font-size: 12.5px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .06em; }
.pd h1 { font-family: var(--ff-head); font-size: clamp(24px,3vw,34px); font-weight: 800; color: var(--navy); margin: 6px 0 12px; line-height: 1.2; }
.pd-price { display: flex; align-items: baseline; gap: 10px; margin: 14px 0; }
.pd-price .now { font-family: var(--ff-head); font-size: 32px; font-weight: 800; color: var(--navy); }
.pd-price .ask { font-family: var(--ff-head); font-size: 22px; font-weight: 800; color: var(--navy); }
.pd-price .kdv { font-size: 13px; color: var(--muted); }
.pd-desc { font-size: 15px; color: #3c4c61; line-height: 1.7; margin: 14px 0 18px; }
.pd-specs { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; margin: 18px 0; }
.pd-specs div { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; }
.pd-specs div span:first-child { color: var(--muted); }
.pd-specs div span:last-child { font-weight: 600; color: var(--navy); }
.pd-stock { font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.pd-stock.in { color: var(--green); }
.pd-stock.out { color: var(--red); }
.pd-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.qty-lg { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 100px; }
.qty-lg button { width: 44px; height: 48px; font-size: 20px; color: var(--navy); display: flex; align-items: center; justify-content: center; }
.qty-lg span { min-width: 40px; text-align: center; font-weight: 700; font-size: 16px; }
.pd-note { font-size: 13px; color: var(--muted); margin-top: 14px; display: flex; gap: 8px; align-items: flex-start; }
.pd-note i { color: var(--green); font-size: 16px; margin-top: 1px; }

/* Auth tabs */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-tabs { display: flex; background: var(--bg); border-radius: 100px; padding: 5px; margin-bottom: 22px; }
.auth-tabs button { flex: 1; padding: 11px; border-radius: 100px; font-weight: 700; font-size: 14.5px; color: var(--muted); transition: .25s; }
.auth-tabs button.active { background: #fff; color: var(--navy); box-shadow: var(--shadow); }

/* Account dashboard */
.acc-grid { display: grid; grid-template-columns: 260px 1fr; gap: 26px; align-items: start; }
.acc-side { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.acc-side .who { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.acc-side .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--red),var(--red-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--ff-head); font-size: 19px; }
.acc-side .who h4 { font-size: 15px; color: var(--navy); }
.acc-side .who span { font-size: 12.5px; color: var(--muted); }
.acc-side button.logout { width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 10px; font-weight: 600; color: var(--red); transition: .2s; }
.acc-side button.logout:hover { background: #fff0f0; border-color: #ffd5d8; }

.order-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px; box-shadow: var(--shadow); }
.order-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 12px; }
.order-top .code { font-family: var(--ff-head); font-weight: 800; color: var(--navy); }
.order-top .date { font-size: 12.5px; color: var(--muted); }
.badge-status { font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 100px; }
.st-new { background: #eef4ff; color: #2563eb; }
.st-confirmed { background: #ecfdf3; color: #0a7a3d; }
.st-shipped { background: #fff7e6; color: #b45309; }
.st-delivered { background: #ecfdf3; color: #0a7a3d; }
.st-cancelled { background: #fff0f0; color: #c0212a; }
.order-line { display: flex; justify-content: space-between; font-size: 13.5px; padding: 3px 0; color: var(--ink); }
.order-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.order-foot strong { font-family: var(--ff-head); font-size: 17px; color: var(--navy); }

/* Checkout */
.co-grid { display: grid; grid-template-columns: 1fr 380px; gap: 26px; align-items: start; }
.pay-opt { display: flex; gap: 12px; align-items: flex-start; border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; cursor: pointer; transition: .2s; }
.pay-opt:hover { border-color: var(--navy); }
.pay-opt.active { border-color: var(--red); background: #fff7f7; }
.pay-opt input { margin-top: 3px; accent-color: var(--red); }
.pay-opt .t { font-weight: 700; color: var(--navy); font-size: 14.5px; }
.pay-opt .d { font-size: 12.5px; color: var(--muted); }
.summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); position: sticky; top: 90px; }
.summary h3 { font-family: var(--ff-head); font-size: 18px; color: var(--navy); margin-bottom: 14px; }
.sum-item { display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.sum-item .q { color: var(--muted); }
.sum-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); margin-top: 10px; }
.sum-total { display: flex; justify-content: space-between; align-items: center; margin: 14px 0; padding-top: 12px; border-top: 2px solid var(--line); }
.sum-total strong { font-family: var(--ff-head); font-size: 24px; color: var(--navy); }

.center-box { max-width: 520px; margin: 40px auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 44px 30px; box-shadow: var(--shadow); }
.center-box .ic { width: 76px; height: 76px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 18px; }
.center-box .ic.ok { background: #ecfdf3; color: var(--green); }
.center-box .ic.warn { background: #fff7e6; color: #b45309; }
.center-box h1 { font-family: var(--ff-head); font-size: 26px; color: var(--navy); margin-bottom: 10px; }
.center-box p { color: var(--muted); margin-bottom: 8px; }
.center-box .code-box { font-family: var(--ff-head); font-size: 22px; font-weight: 800; color: var(--red); background: #fff7f7; border: 1px dashed #ffc9cc; border-radius: 12px; padding: 12px; margin: 16px 0; }

@media (max-width: 900px) {
  .pd { grid-template-columns: 1fr; gap: 24px; }
  .pd-media { min-height: 320px; }
  .acc-grid { grid-template-columns: 1fr; }
  .co-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
}

/* İkon renkleri (emoji yerine ikon seti) */
.cat-tile .ico i { color: var(--red); }
.product-emoji i { color: #c2ccd8; }
.hero-card.c1 .hc-emoji i { color: var(--red); }
.hero-card.c2 .hc-emoji i { color: #0c8ba6; }
.pd-media .emoji i { color: #c2ccd8; }
