/* 1alana1bedava.com — indirim/kampanya vitrini */

:root {
  color-scheme: light;

  --bg: #fff6f2;
  --panel: #ffffff;
  --ink: #1b1410;
  --muted: #7a6e66;
  --line: #f0e2da;

  --red: #e8112d;
  --red-dark: #b8001f;
  --orange: #ff7a1a;
  --yellow: #ffd400;
  --green: #0f9d58;
  --green-soft: #e7f7ee;

  --hot: linear-gradient(135deg, #ff2d20 0%, #ff7a1a 100%);
  --radius: 16px;
  --shadow: 0 1px 2px rgba(27, 20, 16, .06), 0 12px 28px -20px rgba(27, 20, 16, .5);
  --shadow-hi: 0 6px 14px -6px rgba(232, 17, 45, .35), 0 20px 40px -26px rgba(27, 20, 16, .6);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.55 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 72px;
}

/* ---------------------------------------------------------------- header */

.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--panel);
  border-bottom: 3px solid var(--red);
}

.site-head-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--hot);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 4px 10px -3px rgba(232, 17, 45, .55);
}

.brand-text span { color: var(--red); }

.site-nav { display: flex; gap: 8px; font-size: 15px; font-weight: 600; }

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 999px;
}

.site-nav a:hover { background: #ffeee9; color: var(--red-dark); }

/* --------------------------------------------------------------- arama */

.site-search {
  position: relative;
  flex: 1 1 320px;
  max-width: 480px;
  display: flex;
  align-items: center;
}

.site-search input {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--bg);
  border-radius: 999px;
  padding: 10px 46px 10px 16px;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
}

.site-search input::placeholder { color: var(--muted); }
.site-search input:focus { outline: none; border-color: var(--red); background: var(--panel); }

.site-search button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: var(--hot);
  color: #fff;
  cursor: pointer;
}

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-hi);
  padding: 6px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 30;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
}

.search-result:hover { background: #fff1ec; }

.search-thumb {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 9px;
  overflow: hidden;
  background: linear-gradient(140deg, #fff1ec 0%, #ffe3d3 100%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.search-thumb img { width: 100%; height: 100%; object-fit: contain; background: #fff; }

.search-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.search-info b { font-size: 13.5px; }

.search-info span {
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-cat {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg);
  border-radius: 999px;
  padding: 3px 9px;
}

.search-empty { margin: 0; padding: 12px; color: var(--muted); font-size: 13.5px; text-align: center; }

/* ------------------------------------------------------------- kategori cubugu */

.cat-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 10px;
}

.cat-nav a {
  padding: 6px 13px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.cat-nav a:first-child { color: var(--red-dark); }
.cat-nav a:hover { background: #fff1ec; color: var(--red-dark); }

/* ------------------------------------------------------------- vitrin (anasayfa) */

.showcase { margin-top: 44px; }
.showcase--featured { margin-top: 22px; }
.showcase-head h1 {
  margin: 0 0 6px;
  font-size: clamp(21px, 3vw, 27px);
  letter-spacing: -.02em;
}
.showcase--featured .showcase-head { margin-bottom: 12px; }

.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }

.cat-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--panel);
  border: 1.5px solid var(--line);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.cat-pill span { color: var(--muted); font-weight: 600; font-size: 12px; font-variant-numeric: tabular-nums; }
.cat-pill:hover { border-color: var(--red); color: var(--red-dark); }

.intro { margin-top: 48px; padding-top: 24px; border-top: 2px solid var(--line); }
.intro h2 { margin: 0 0 8px; font-size: clamp(20px, 3vw, 26px); letter-spacing: -.02em; }
.intro .lede { max-width: 75ch; }
.intro .hero-summary { margin-top: 14px; }

.showcase-head { margin-bottom: 18px; }
.showcase-head h2 { margin: 0 0 6px; font-size: clamp(21px, 3vw, 27px); letter-spacing: -.02em; }
.showcase-head .lede { font-size: 15px; }

.showcase-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.showcase-more {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex: none;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.showcase-more:hover { text-decoration: underline; }

.showcase--products { margin-top: 34px; }

/* --- ok butonlu yatay kaydirma (carousel) --- */

.carousel { position: relative; }

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 2px 2px 10px;
  margin: -2px -2px -10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-hi);
  cursor: pointer;
  transition: background .15s, color .15s;
}

.carousel-arrow:hover { background: var(--red); color: #fff; border-color: var(--red); }
.carousel-arrow[hidden] { display: none; }
.carousel-arrow--prev { left: -18px; }
.carousel-arrow--next { right: -18px; }

@media (max-width: 720px) {
  .carousel-arrow { display: none !important; }
}

.cat-tiles { gap: 16px; }
.cat-tiles .cat-tile { flex: 0 0 240px; }

.cat-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(140deg, #fff1ec 0%, #ffe3d3 100%);
  box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease;
}

.cat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-hi); }

.cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-tile-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 14px;
  background: linear-gradient(0deg, rgba(20, 10, 6, .82) 0%, rgba(20, 10, 6, 0) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cat-tile-name { font-size: 18px; font-weight: 800; letter-spacing: -.01em; }
.cat-tile-count { font-size: 12.5px; font-weight: 600; opacity: .9; }

.product-tiles { gap: 14px; }
.product-tiles .pcard { flex: 0 0 194px; }

.brand-tiles { gap: 12px; }
.brand-tiles .brand-tile { flex: 0 0 140px; }

.deal-tiles { gap: 20px; }
.deal-tiles .deal { flex: 0 0 320px; }

.brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.brand-tile:hover { transform: translateY(-2px); border-color: #ffd0c6; box-shadow: var(--shadow-hi); }

.brand-tile-media {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: none;
}

.brand-tile-media img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.brand-tile-name {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.brand-tile-count { font-size: 11.5px; color: var(--muted); font-weight: 600; }

.today { margin-top: 48px; padding-top: 26px; border-top: 2px solid var(--line); }
.today .showcase-head { margin-bottom: 4px; }

.lede { margin: 0; color: var(--muted); font-size: 17px; }

.page-head { padding: 26px 0 8px; }

.page-head h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -.02em;
}

/* --------------------------------------------------------------- filtreler */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 2px;
}

.chip {
  border: 1.5px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 15px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}

.chip span { color: var(--muted); font-variant-numeric: tabular-nums; font-weight: 500; }
.chip:hover { border-color: var(--red); color: var(--red-dark); }

.chip.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 5px 12px -5px rgba(232, 17, 45, .7);
}

.chip.is-active span { color: rgba(255, 255, 255, .8); }

/* ------------------------------------------------------------------- gün */

.day { margin-top: 28px; }

.day-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 22px;
}

.day-title { margin: 0; font-size: 21px; letter-spacing: -.015em; }
.day-title a { text-decoration: none; }
.day-title a:hover { color: var(--red); }

.day-count {
  margin: 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.empty {
  padding: 44px 20px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
  background: var(--panel);
}

/* ------------------------------------------------------------------ grid */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(292px, 1fr));
  gap: 20px;
}

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

.deal:hover {
  transform: translateY(-3px);
  border-color: #ffd0c6;
  box-shadow: var(--shadow-hi);
}

.deal[hidden] { display: none; }
.deal.is-expired { opacity: .5; filter: saturate(.35); }

.deal-link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  text-decoration: none;
}

/* --- kart görseli / mozaik --- */

.deal-media {
  position: relative;
  min-height: 46px;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.deal-media img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  display: block;
  background: #fff;
  padding: 6px;
}

.deal-media--mosaic {
  display: grid;
  gap: 1px;
  background: var(--line);
}

/* Mozaik hücrelerinde kırpma daha iyi duruyor: kutular dolu görünüyor. */
.deal-media--mosaic img { object-fit: cover; padding: 0; }

.deal-media--mosaic.m2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.deal-media--mosaic.m3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.deal-media--mosaic.m3 img:first-child { grid-row: span 2; }

.deal-media--mosaic.m4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.deal-media--blank {
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #fff1ec 0%, #ffe3d3 100%);
}

.blank-store {
  padding: 0 14px;
  text-align: center;
  font-size: clamp(19px, 4.2vw, 27px);
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--red);
}

/* kampanya tipi rozeti */
.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--hot);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px -3px rgba(232, 17, 45, .6);
}

/* --- kart gövdesi --- */

.deal-body { padding: 15px 16px 6px; flex: 1; }

.store {
  display: block;
  margin-bottom: 6px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
}

.deal-title {
  margin: 0 0 7px;
  font-size: 17.5px;
  line-height: 1.28;
  letter-spacing: -.015em;
}

.deal-desc { margin: 0 0 13px; color: var(--muted); font-size: 14px; }

.deal-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: var(--muted);
}

.deal-meta li {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 3px 8px;
  background: #fffaf8;
}

.meta-end.hot {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-weight: 800;
}

.meta-end.off { text-decoration: line-through; }
.meta-code b { color: var(--ink); letter-spacing: .05em; }

.deal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 12px 12px;
  padding: 11px 15px;
  border-radius: 11px;
  background: #fff1ec;
  color: var(--red-dark);
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.deal:hover .deal-cta { background: var(--red); color: #fff; }

/* -------------------------------------------------------- gün listeleri */

.prev { margin-top: 48px; }

.prev h2, .archive h2 {
  font-size: 19px;
  margin: 0 0 14px;
  letter-spacing: -.015em;
}

.daylist { list-style: none; margin: 0; padding: 0; }

.daylist li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  padding: 11px 14px;
  margin-bottom: 6px;
  border-radius: 11px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.daylist li:hover { border-color: #ffc9bc; }
.daylist a { text-decoration: none; font-weight: 700; }
.daylist a:hover { color: var(--red); }
.daylist span, .daylist-count { color: var(--muted); font-size: 14px; font-weight: 500; }
.daylist--full li a { display: flex; gap: 10px; align-items: baseline; }
.daylist-stores { color: var(--muted); font-size: 13px; flex: 1; min-width: 200px; }

.more { color: var(--red); text-decoration: none; font-weight: 800; }

.archive h2 {
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}

/* --------------------------------------------------------- urun listesi */

.crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 22px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
}

.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--red); }
.crumb .sep { opacity: .5; }

.store-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 0 22px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 22px;
}

.store-head h1 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3.6vw, 34px);
  letter-spacing: -.02em;
}

.store-head .lede { margin: 0; color: var(--muted); font-size: 15px; max-width: 60ch; }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: var(--hot);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px -3px rgba(232, 17, 45, .5);
  white-space: nowrap;
}

.store-badge .count-dot {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  font-size: 11px;
}

/* Kategori sayfasinda aciklama artik listenin altinda, kucuk punto. */
.cat-note {
  max-width: 78ch;
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
}

.head-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }

.visit-store {
  font-size: 13px;
  font-weight: 700;
  color: var(--red-dark);
  text-decoration: none;
  padding: 8px 14px;
  border: 1.5px solid #ffd0c6;
  border-radius: 999px;
  background: #fff;
}

.visit-store:hover { background: #fff1ec; }

.card-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 10px 12px 12px;
  color: var(--red-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.card-more:hover { text-decoration: underline; }

/* ----------------------------------------------------- kategori filtreleri */

.cat-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.cat-filters {
  flex: 0 0 220px;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-block h3 {
  margin: 0 0 10px;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 2px;
  font-size: 14px;
  cursor: pointer;
}

.filter-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  flex: none;
}

.filter-check span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-check b {
  flex: none;
  color: var(--muted);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
}

.filter-check:has(input:checked) { color: var(--red-dark); font-weight: 700; }

/* Arac cubugu sadece dar ekranda: orada kenar cubugu yerine acilir panel
   kullaniliyor, once urunler gorunsun diye. */
.cat-toolbar { display: none; }

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.filter-toggle[aria-expanded="true"] { border-color: var(--red); color: var(--red-dark); }

.filter-badge {
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
}

.filter-badge[hidden] { display: none; }

.toolbar-count { color: var(--muted); font-size: 13.5px; font-weight: 600; }
.toolbar-count b { color: var(--ink); font-variant-numeric: tabular-nums; }

.filter-actions { display: none; gap: 10px; }

.filter-clear,
.filter-done {
  flex: 1;
  padding: 11px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.filter-clear { border: 1.5px solid var(--line); background: var(--panel); color: var(--muted); }
.filter-done { border: none; background: var(--hot); color: #fff; }

.cat-main { flex: 1; min-width: 0; }

.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 14px;
}

.pcard {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.pcard:hover {
  transform: translateY(-2px);
  border-color: #ffd0c6;
  box-shadow: 0 14px 26px -18px rgba(232, 17, 45, .45);
}

.pcard[hidden] { display: none; }

.pcard-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; }

.pcard-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.pcard-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 10px;
}

.pcard-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--hot);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 0 3px 8px -3px rgba(232, 17, 45, .6);
}

.pcard-gender {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(27, 20, 16, .55);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
}

.pcard-store {
  display: block;
  margin-bottom: 3px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--red-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pcard-body { padding: 10px 11px 12px; flex: 1; display: flex; flex-direction: column; gap: 3px; }

.pcard-name {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.56em;
}

.pcard-price {
  margin: auto 0 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.pcard-price b { font-size: 14.5px; color: var(--red-dark); }
.pcard-price s { font-size: 11.5px; color: var(--muted); }

/* ----------------------------------------------------------------- pager */

.pager {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 2px solid var(--line);
  font-size: 15px;
}

.pager a { color: var(--red); text-decoration: none; font-weight: 800; }

/* ---------------------------------------------------------------- iletisim */

.contact { margin-top: 48px; }

.contact-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 36px;
  border-radius: 22px;
  background: var(--hot);
  color: #fff;
  box-shadow: 0 18px 40px -28px rgba(232, 17, 45, .9);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  pointer-events: none;
}

.contact-text { position: relative; z-index: 1; max-width: 440px; }
.contact-text h2 { margin: 0 0 6px; font-size: clamp(20px, 3vw, 26px); letter-spacing: -.02em; }
.contact-text .lede { margin: 0; color: rgba(255, 255, 255, .92); font-size: 15px; }

.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--red-dark);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .14s ease;
}

.contact-btn:hover { transform: translateY(-2px); }

.contact-btn--ghost {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .5);
}

/* ---------------------------------------------------------------- footer */

.site-foot {
  background: var(--panel);
  border-top: 3px solid var(--red);
  padding: 30px 20px 64px;
}

.site-foot p {
  max-width: 1140px;
  margin: 0 auto 10px;
  color: var(--muted);
  font-size: 14px;
}

.site-foot .fine { font-size: 12.5px; opacity: .9; }

@media (max-width: 820px) {
  .cat-layout { flex-direction: column; }
  .cat-filters { position: static; flex: 1 1 auto; width: 100%; }

  /* Once urunler, filtre istege bagli. Panel kapali baslar; .cat-toolbar
     icindeki "Filtrele" dugmesi is-open sinifini ekliyor. */
  .cat-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 16px;
  }
  .cat-filters {
    display: none;
    order: -1;
    margin-bottom: 18px;
    padding: 16px 16px 4px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
  }
  .cat-filters.is-open { display: flex; }
  .filter-actions {
    display: flex;
    position: sticky;
    bottom: 0;
    margin: 4px -16px 0;
    padding: 12px 16px;
    background: var(--panel);
    border-top: 1px solid var(--line);
  }
  .store-head--cat .head-actions { display: none; }
  .store-head--cat { padding: 10px 0 12px; margin-bottom: 14px; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .store-head { flex-direction: column; }
  .head-actions { align-items: flex-start; }
  /* Telefonda ilk ekranda urun gorunsun diye ust blok bilerek sikistirildi. */
  .showcase--featured { margin-top: 14px; }
  .showcase--featured .showcase-head { margin-bottom: 8px; }
  .showcase--featured .showcase-head h2 { margin-bottom: 3px; }
  /* Hero'nun alt satiri TELEFONDA GIZLI (kullanici istegi, 2026-09-08):
     masaustunde gorunuyor, telefonda ilk ekran urune kalsin diye kapali.
     Sadece hero'yu hedefliyor -- diger .lede satirlari (kategori, SSS,
     magaza sayfalari) etkilenmiyor. Metin HTML'de duruyor, yalnizca
     gorunmuyor. */
  .showcase--featured .showcase-head .lede { display: none; }
  .showcase--products { margin-top: 26px; }
  .showcase--products .showcase-head { margin-bottom: 10px; }
  .showcase--products .showcase-head .lede { font-size: 13px; }
  .showcase-more { font-size: 13px; }
  .product-tiles .pcard { flex: 0 0 152px; }
  .cat-pills { margin-bottom: 12px; }
  .cat-pills { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .cat-pills::-webkit-scrollbar { display: none; }
  /* Telefonda Bugun/Arsiv/RSS menusu gizli (kullanici istegi, 2026-08-29):
     ust bant zaten yuksekti. Arsiv ve RSS ana sayfadaki "Onceki gunler" ve
     "Bize ulasin" bloklarindan erisilebiliyor. */
  /* Kampanya kartlari telefonda ekrani tek basina dolduruyordu (663px);
     gorsel alani sabitlendi, aciklama 3 satirda kirpiliyor. */
  .deal-media { aspect-ratio: auto; height: 190px; }
  .store { margin-bottom: 4px; font-size: 12px; }
  .deal-body { padding: 12px 14px 4px; }
  .deal-title { margin-bottom: 5px; font-size: 16px; }
  .deal-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    font-size: 13.5px;
  }
  .deal-cta { margin: 10px; padding: 10px 13px; font-size: 13.5px; }
  .card-more { margin: 8px 12px 10px; }

  .site-nav { display: none; }
  .site-search { order: 3; flex-basis: 100%; max-width: none; }
  .site-head-row { gap: 10px; padding: 9px 16px; }
  .site-head-row .site-search { margin-top: -2px; }
  .cat-nav { padding: 0 16px 8px; }
  .cat-nav a { padding: 5px 11px; font-size: 13px; }
  .crumb { margin: 10px 0 0; }
  .cat-nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .contact-card { padding: 24px 22px; }
  .contact-actions { width: 100%; }
  .contact-btn { flex: 1 1 auto; justify-content: center; }
}

/* -------------------------------------------------- SEO/AEO bolumleri
   Cevap-once ozet, ozet tablosu ve SSS. Icerik hem kullaniciya gorunur
   hem de yapisal veriye (JSON-LD) kaynaklik eder; Google gorunmeyen SSS
   icerigini ihlal saydigi icin bu bloklar ASLA display:none olmamali. */

.hero-summary {
  margin: 14px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: 15px;
  line-height: 1.6;
}

.hero-summary--page {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  box-shadow: var(--shadow);
  margin: 0 0 18px;
}

.summary-table {
  margin: 22px 0 4px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.summary-table > summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 650;
  font-size: 14.5px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-table > summary::-webkit-details-marker { display: none; }

.summary-table > summary::before {
  content: "▸";
  color: var(--red);
  transition: transform .15s ease;
}

.summary-table[open] > summary::before { transform: rotate(90deg); }
.summary-table > summary:hover { color: var(--red); }

.table-scroll { overflow-x: auto; }

.summary-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.summary-table caption {
  text-align: left;
  padding: 0 18px 10px;
  color: var(--muted);
  font-size: 13px;
}

.summary-table th,
.summary-table td {
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.summary-table thead th {
  background: var(--bg);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}

.summary-table tbody th { font-weight: 650; }
.summary-table tbody tr:hover td { background: var(--bg); }
.summary-table a { color: var(--red-dark); text-decoration: none; }
.summary-table a:hover { text-decoration: underline; }

.faq { margin: 44px 0 8px; }

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item > summary {
  cursor: pointer;
  padding: 16px 20px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary::before {
  content: "+";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--hot);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

.faq-item[open] > summary::before { content: "−"; }

.faq-item > summary h3 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 650;
  display: inline;
}

.faq-item > summary:hover h3 { color: var(--red); }

.faq-item > p {
  margin: 0;
  padding: 0 20px 18px 52px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 560px) {
  .summary-table th,
  .summary-table td { padding: 9px 12px; }
  .faq-item > p { padding-left: 20px; }
}

/* Ana sayfada H1 hedef kelimeyi tasidigi icin carousel'in kendi etiketi
   h2'ye indi (SEO denetimi, 2026-09-02). */
.showcase-sub {
  margin: 4px 0 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
}

/* --------------------------------------------------------- sayfalama
   Liste sayfalari 2026-09-02'de bolundu (tek sayfada 6641 urun / 7,4 MB
   Googlebot'un isleyemedigi ve mobilde acilmayan bir boyuttu). */
.pagenav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 26px 0 6px;
}

.pagenav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.pagenav a,
.pagenav-cur {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 11px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--line, #f0d9d0);
}

.pagenav a {
  color: var(--ink);
  background: #fff;
}

.pagenav a:hover { border-color: #ff7a1a; color: #ff2d20; }

.pagenav-cur {
  background: var(--hot);
  border-color: transparent;
  color: #fff;
}

.pagenav-gap {
  display: inline-flex;
  align-items: flex-end;
  padding: 0 2px;
  height: 38px;
  color: var(--muted, #8a7a72);
}

.pagenav-info {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted, #8a7a72);
}

@media (max-width: 560px) {
  .pagenav a, .pagenav-cur { min-width: 34px; height: 34px; padding: 0 8px; font-size: 13px; }
}

/* -------------------------- kalici marka / kampanya tipi sayfalari
   SEO denetimi 2026-09-02, 5. ve 6. madde. */
.store-lede {
  max-width: 68ch;
  margin: 2px 0 22px;
  font-size: 15px;
  line-height: 1.6;
}

.showcase--types { margin-top: 8px; }

.past-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.past-list li {
  padding: 11px 14px;
  border: 1px solid var(--line, #f0d9d0);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.past-date { color: var(--muted, #8a7a72); font-size: 13px; }
.past-list a { color: #ff2d20; font-weight: 700; }

/* Kampanya sayfalarindaki ozgun aciklama blogu */
.campaign-intro {
  max-width: 74ch;
  margin: 30px 0 8px;
  padding: 22px 24px;
  border: 1px solid var(--line, #f0d9d0);
  border-radius: 16px;
  background: #fff;
}

.campaign-intro h2 {
  margin: 20px 0 8px;
  font-size: 17px;
  letter-spacing: -.01em;
}

.campaign-intro h2:first-child { margin-top: 0; }

.campaign-intro p {
  margin: 0 0 11px;
  font-size: 14.5px;
  line-height: 1.68;
  color: #3b2f28;
}

.campaign-intro ul.kv {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.campaign-intro ul.kv li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
  color: #3b2f28;
}

.campaign-intro ul.kv li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hot);
}

.campaign-intro code {
  background: #fff1ec;
  border-radius: 6px;
  padding: 1px 6px;
  font-size: 13px;
}

/* ------------------------------------------------------------ rehber yazilari */
.guide { max-width: 74ch; margin: 6px 0 10px; }
.guide h2 { margin: 30px 0 10px; font-size: 19px; letter-spacing: -.015em; }
.guide h2:first-child { margin-top: 6px; }
.guide p { margin: 0 0 13px; font-size: 15.5px; line-height: 1.72; color: #3b2f28; }
.guide b { color: var(--ink); }
.guide a { color: #ff2d20; font-weight: 700; }
.guide-foot { margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line, #f0d9d0); font-size: 14px; }

.guide-table { width: 100%; border-collapse: collapse; margin: 4px 0 20px; font-size: 14px; display: block; overflow-x: auto; }
.guide-table th, .guide-table td { padding: 9px 12px; text-align: left; border-bottom: 1px solid var(--line, #f0d9d0); white-space: nowrap; }
.guide-table th { background: #fff1ec; font-weight: 800; font-size: 13px; }

.guide-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.guide-link { display: block; padding: 16px 18px; border: 1px solid var(--line, #f0d9d0); border-radius: 14px; background: #fff; text-decoration: none; }
.guide-link:hover { border-color: #ff7a1a; }
.guide-link b { display: block; font-size: 15px; color: var(--ink); line-height: 1.4; margin-bottom: 6px; }
.guide-link span { display: block; font-size: 13px; color: var(--muted, #8a7a72); line-height: 1.55; }

/* Filtre panelinin kapsamini belirtir: facet sayilari sayfa basinadir,
   ustteki kategori toplamiyla karistirilmasin (2026-09-03). */
.filter-scope {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted, #8a7a72);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line, #f0d9d0);
}

/* Kategori sayfasinda sonsuz kaydirma alani (2026-09-03). Kullanici tum
   urunlerin ayni sayfada olmasini istedi; HTML'i sismeden bunu saglar. */
.cat-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 26px 0 4px;
}

.cat-loadinfo {
  margin: 0;
  font-size: 13px;
  color: var(--muted, #8a7a72);
}

.cat-loadmore {
  border: 1px solid var(--line, #f0d9d0);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cat-loadmore:hover { border-color: #ff7a1a; color: #ff2d20; }
#cat-sentinel { width: 100%; height: 1px; }
