/* =====================================================================
   SEFIK CAN ÇİÇEKÇİ — satış odaklı tema
   Palet: derin zümrüt + gül kurusu pembe + krem
   ===================================================================== */

:root {
  --green: #2a2158;
  --green-2: #403382;
  --rose: #9b3de0;
  --rose-dark: #7c2bbf;
  --wa: #22c55e;
  --wa-dark: #16a34a;
  --gold: #c9a227;
  --cream: #f8f6fc;
  --ink: #1f1a2e;
  --muted: #6e6580;
  --line: #e5dff0;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(42, 33, 88, .10);
  --shadow-lg: 0 20px 50px rgba(42, 33, 88, .16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 18px; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

.section { padding: 56px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.section-head .kicker {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(26px, 4vw, 38px); color: var(--green); }
.section-head p { color: var(--muted); margin-top: 10px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 22px rgba(34, 197, 94, .35); }
.btn-wa:hover { background: var(--wa-dark); }
.btn-call { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(42, 33, 88, .28); }
.btn-call:hover { background: var(--green-2); }
.btn-rose { background: var(--rose); color: #fff; box-shadow: 0 8px 22px rgba(155, 61, 224, .32); }
.btn-rose:hover { background: var(--rose-dark); }
.btn-ghost { background: #fff; color: var(--green); border: 2px solid var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-lg { padding: 16px 34px; font-size: 17px; }

/* ---------- Üst bar ---------- */
.topbar {
  background: var(--green); color: #eaf4ef; font-size: 13px; font-weight: 600;
  padding: 7px 0; text-align: center;
}
.topbar b { color: #ffd166; }

/* ---------- Header ---------- */
.site-header {
  background: #fff; position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .04);
}
.site-header .inner { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo .mark {
  width: 44px; height: 44px; border-radius: 50%; background: var(--rose);
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex: none;
}
.logo .name { font-family: var(--font-display); font-size: 21px; font-weight: 800; color: var(--green); line-height: 1.05; }
.logo .tag { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rose); }
.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
  font-weight: 700; font-size: 14.5px; color: var(--ink);
  padding: 9px 14px; border-radius: 999px; transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a.active { background: #f0ecf7; color: var(--rose-dark); }
.header-cta { display: flex; gap: 10px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; font-size: 26px; color: var(--green); cursor: pointer; }

/* Mobil header'da kompakt ara/whatsapp butonları */
.call-mini {
  display: none; width: 40px; height: 40px; border-radius: 50%; flex: none;
  align-items: center; justify-content: center;
}
.call-mini svg { width: 19px; height: 19px; color: #fff; }
.call-mini.c-tel { background: var(--green); }
.call-mini.c-wa { background: var(--wa); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(155, 61, 224, .16), transparent 60%),
    radial-gradient(800px 420px at -10% 110%, rgba(201, 162, 39, .14), transparent 60%),
    linear-gradient(160deg, #2a2158 0%, #352a6e 55%, #403382 100%);
  color: #fff; overflow: hidden; position: relative;
}
.hero .inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px;
  align-items: center; padding: 64px 0 72px;
}
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px; padding: 7px 16px; font-size: 13.5px; font-weight: 700;
  margin-bottom: 20px; backdrop-filter: blur(4px);
}
.hero .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }
.hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #d5b8ff; }
.hero .lead { font-size: 17px; color: #d7e6df; max-width: 480px; margin-bottom: 28px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero .trust-row { display: flex; gap: 22px; flex-wrap: wrap; }
.hero .trust-row .t { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: #cfe3da; }
.hero .trust-row .t svg { width: 17px; height: 17px; color: #ffd166; flex: none; }

.hero-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-gallery .ph {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, .16); background: #fff;
}
.hero-gallery .ph img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1.15; }
.hero-gallery .ph:first-child { grid-row: span 2 }
.hero-gallery .ph:first-child img { aspect-ratio: 1/1.6; height: 100%; }

/* ---------- Güven şeridi ---------- */
.trustband { background: #fff; border-bottom: 1px solid var(--line); }
.trustband .inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 20px 0;
}
.trustband .item { display: flex; align-items: center; gap: 12px; justify-content: center; }
.trustband .item .ico {
  width: 44px; height: 44px; border-radius: 14px; background: #f0ecf7; flex: none;
  display: flex; align-items: center; justify-content: center; font-size: 21px;
}
.trustband .item b { display: block; font-size: 14.5px; color: var(--green); }
.trustband .item span { font-size: 12.5px; color: var(--muted); }

/* ---------- Kategori pilleri ---------- */
.cat-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cat-pills a {
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-size: 14px; font-weight: 700; color: var(--ink);
  transition: all .15s ease; white-space: nowrap;
}
.cat-pills a:hover, .cat-pills a.active {
  background: var(--green); border-color: var(--green); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow);
}

/* ---------- Ürün kartları ---------- */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.pcard {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 16px rgba(42, 33, 88, .07);
  border: 1px solid #e9e2f2;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pcard .media { position: relative; overflow: hidden; }
.pcard .media img { aspect-ratio: 1/1.08; width: 100%; object-fit: cover; transition: transform .35s ease; }
.pcard:hover .media img { transform: scale(1.05); }
.pcard .badges {
  position: absolute; top: 12px; left: 12px; right: 12px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  pointer-events: none;
}
.pcard .badge-off {
  background: var(--rose); color: #fff;
  font-size: 12.5px; font-weight: 800; border-radius: 999px; padding: 5px 12px;
  box-shadow: 0 4px 12px rgba(155, 61, 224, .4);
}
.pcard .badge-note {
  background: var(--green); color: #ffd166;
  font-size: 10.5px; font-weight: 800; letter-spacing: .05em; border-radius: 999px; padding: 5px 10px;
  max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pcard .body { padding: 15px 15px 17px; display: flex; flex-direction: column; flex: 1; }
.pcard .name {
  font-size: 14.5px; font-weight: 800; color: var(--ink); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.7em; margin-bottom: 8px;
}
.pcard .prices { display: flex; align-items: baseline; gap: 9px; margin-bottom: 13px; }
.pcard .prices .now { font-size: 20px; font-weight: 800; color: var(--rose-dark); }
.pcard .prices .old { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.pcard .actions { margin-top: auto; display: grid; grid-template-columns: 1fr; gap: 8px; }
.pcard .actions .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pcard .actions .btn { width: 100%; padding: 11px 10px; font-size: 13.5px; }

/* ---------- Adımlar ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: #fff; border-radius: var(--radius); padding: 30px 26px; text-align: center;
  border: 1px solid #e9e2f2; box-shadow: 0 4px 16px rgba(42, 33, 88, .06); position: relative;
}
.step .num {
  width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark)); color: #fff;
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(155, 61, 224, .35);
}
.step h3 { font-size: 19px; color: var(--green); margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------- Neden biz ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why .card {
  background: var(--green); color: #fff; border-radius: var(--radius); padding: 28px 26px;
}
.why .card:nth-child(2) { background: var(--rose-dark); }
.why .card:nth-child(3) { background: #0e7490; }
.why .card .ico { font-size: 30px; margin-bottom: 12px; }
.why .card h3 { font-size: 19px; margin-bottom: 8px; }
.why .card p { font-size: 14.5px; opacity: .88; }

/* ---------- Yorumlar ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: #fff; border-radius: var(--radius); padding: 26px;
  border: 1px solid #e9e2f2; box-shadow: 0 4px 16px rgba(42, 33, 88, .06);
}
.review .stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review p { font-size: 14.5px; color: var(--ink); margin-bottom: 16px; }
.review .who { display: flex; align-items: center; gap: 11px; }
.review .who .av {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--green); color: #fff; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.review .who b { display: block; font-size: 14px; }
.review .who span { font-size: 12.5px; color: var(--muted); }

/* ---------- Bölge kapsama ---------- */
.areas { background: #fff; border-radius: var(--radius); padding: 34px; border: 1px solid #e9e2f2; }
.areas .chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.areas .chips span {
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 15px; font-size: 13.5px; font-weight: 600; color: var(--ink);
}

/* ---------- SSS ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid #e9e2f2; border-radius: 14px;
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 800; font-size: 15.5px;
  color: var(--green); list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--rose); font-weight: 400; }
.faq details[open] summary::after { content: '–'; }
.faq .a { padding: 0 22px 18px; font-size: 14.5px; color: var(--muted); }

/* ---------- Büyük CTA ---------- */
.big-cta {
  background:
    radial-gradient(700px 350px at 90% 0%, rgba(255, 209, 102, .18), transparent 60%),
    linear-gradient(150deg, var(--rose-dark), var(--rose));
  border-radius: 24px; color: #fff; text-align: center; padding: 52px 30px;
  box-shadow: var(--shadow-lg);
}
.big-cta h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 12px; }
.big-cta p { opacity: .92; margin-bottom: 26px; font-size: 16.5px; }
.big-cta .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.big-cta .btn-call { background: #fff; color: var(--rose-dark); box-shadow: 0 8px 22px rgba(0,0,0,.18); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green); color: #cfe3da; margin-top: 56px; }
.site-footer .grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 34px; padding: 48px 0 36px;
}
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 15px; font-family: var(--font-body); font-weight: 800; }
.site-footer a { display: block; padding: 4px 0; font-size: 14px; }
.site-footer a:hover { color: #ffd166; }
.site-footer p { font-size: 14px; }
.site-footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, .12); padding: 18px 0; font-size: 13px;
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.site-footer .bottom a { display: inline; }

/* ---------- Mobil sabit sipariş barı ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1200;
  display: none; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(0, 0, 0, .10);
}
.mobile-bar .btn { width: 100%; padding: 13px 8px; font-size: 14.5px; }

/* ---------- WhatsApp yüzen buton (desktop) ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1100;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(34, 197, 94, .45);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }

/* ---------- Ürün detay ---------- */
.pdetail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.pdetail .media { position: sticky; top: 90px; }
.pdetail .media img {
  width: 100%; border-radius: 22px; box-shadow: var(--shadow-lg); border: 1px solid #e9e2f2;
  background: #fff;
}
.pdetail h1 { font-size: clamp(24px, 3.4vw, 34px); color: var(--green); margin-bottom: 14px; }
.pdetail .price-box {
  background: #fff; border: 1px solid #e9e2f2; border-radius: var(--radius);
  padding: 20px 22px; margin: 18px 0; box-shadow: 0 4px 16px rgba(13,59,46,.06);
}
.pdetail .price-box .now { font-size: 34px; font-weight: 800; color: var(--rose-dark); }
.pdetail .price-box .old { font-size: 18px; color: var(--muted); text-decoration: line-through; margin-left: 12px; }
.pdetail .price-box .save {
  display: inline-block; background: #f5eafd; color: var(--rose-dark);
  font-size: 13px; font-weight: 800; border-radius: 999px; padding: 5px 13px; margin-left: 12px;
}
.pdetail .desc {
  background: #fff; border: 1px solid #e9e2f2; border-radius: var(--radius);
  padding: 22px; font-size: 15px; white-space: pre-line; margin: 18px 0;
}
.pdetail .cta-col { display: grid; gap: 11px; margin: 20px 0; }
.pdetail .cta-col .btn { width: 100%; }
.pdetail .assure { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.pdetail .assure .a {
  display: flex; gap: 10px; align-items: center; background: #fff;
  border: 1px solid #e9e2f2; border-radius: 13px; padding: 12px 14px;
  font-size: 13px; font-weight: 700; color: var(--green);
}
.pdetail .assure .a .i { font-size: 20px; }

/* ---------- Liste sayfası ---------- */
.listing-head {
  background: linear-gradient(150deg, var(--green), var(--green-2));
  color: #fff; padding: 40px 0; margin-bottom: 34px;
}
.listing-head h1 { font-size: clamp(24px, 3.6vw, 34px); }
.listing-head p { color: #cfe3da; margin-top: 6px; }
.sort-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; margin-bottom: 24px;
}
.sort-row .count { font-size: 14px; color: var(--muted); font-weight: 600; }
.sort-row select {
  font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--ink);
  padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; cursor: pointer;
}

/* ---------- Sayfa başlığı (statik sayfalar) ---------- */
.page-head { background: linear-gradient(150deg, var(--green), var(--green-2)); color: #fff; padding: 44px 0; }
.page-head h1 { font-size: clamp(26px, 4vw, 38px); }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-card {
  background: #fff; border: 1px solid #e9e2f2; border-radius: var(--radius);
  padding: 30px; box-shadow: 0 4px 16px rgba(13,59,46,.06);
}
.contact-card h3 { color: var(--green); font-size: 20px; margin-bottom: 14px; }
.contact-card .line { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; font-size: 15px; }
.contact-card .line .i { font-size: 20px; flex: none; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .trustband .inner { grid-template-columns: repeat(2, 1fr); }
  .site-footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: 0; }
  .call-mini { display: flex; }
  .site-header .inner { gap: 12px; }
  .site-header .inner .logo { margin-right: auto; }
  .main-nav.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 12px 18px 18px;
    border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(0,0,0,.08);
  }
  .hero .inner { grid-template-columns: 1fr; padding: 38px 0 46px; }
  .hero-gallery { display: none; }
  .steps, .why, .reviews { grid-template-columns: 1fr; }
  .pdetail { grid-template-columns: 1fr; gap: 24px; }
  .pdetail .media { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  .wa-float { display: none; }
  body { padding-bottom: 76px; }

  /* Kategori pilleri: sayfayı uzatmak yerine yatay kaydırmalı kompakt şerit */
  .cat-pills {
    display: grid; grid-auto-flow: column; grid-template-rows: repeat(2, auto);
    gap: 8px; justify-content: flex-start; overflow-x: auto;
    padding: 4px 2px 10px; margin: 0 -18px; padding-left: 18px; padding-right: 18px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .cat-pills::-webkit-scrollbar { display: none; }
  .cat-pills a { padding: 9px 16px; font-size: 13px; }
}
@media (max-width: 620px) {
  .container { padding: 0 14px; }
  .cat-pills { margin: 0 -14px; padding-left: 14px; padding-right: 14px; }
  .section { padding: 36px 0; }
  .section-head { margin-bottom: 24px; }

  .topbar { font-size: 11.5px; padding: 6px 10px; }
  .tb-phone { display: none; }

  .logo .mark { width: 38px; height: 38px; font-size: 19px; }
  .logo .name { font-size: 17px; }

  .btn-lg { padding: 13px 20px; font-size: 15px; }
  .hero h1 { font-size: clamp(28px, 8vw, 36px); }
  .hero .lead { font-size: 15px; }
  .hero .cta-row { gap: 10px; }
  .hero .cta-row .btn { flex: 1 1 100%; }
  .hero .trust-row { gap: 10px 16px; }
  .hero .trust-row .t { font-size: 12.5px; }

  .trustband .inner { grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 0; }
  .trustband .item { justify-content: flex-start; gap: 9px; }
  .trustband .item .ico { width: 38px; height: 38px; font-size: 18px; border-radius: 11px; }
  .trustband .item b { font-size: 12.5px; }
  .trustband .item span { font-size: 11px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pcard { border-radius: 14px; }
  .pcard .body { padding: 10px 10px 12px; }
  .pcard .name { font-size: 12.5px; min-height: 2.7em; }
  .pcard .prices { gap: 6px; margin-bottom: 10px; }
  .pcard .prices .now { font-size: 16.5px; }
  .pcard .prices .old { font-size: 12px; }
  .pcard .actions { gap: 6px; }
  .pcard .actions .row2 { gap: 6px; }
  .pcard .actions .btn { font-size: 12px; padding: 9px 4px; gap: 5px; }
  .pcard .actions .btn svg { width: 15px; height: 15px; }
  .pcard .badges { top: 8px; left: 8px; right: 8px; gap: 4px; }
  .pcard .badge-off { font-size: 11px; padding: 4px 9px; }
  .pcard .badge-note { font-size: 9px; padding: 4px 8px; }

  .step { padding: 22px 18px; }
  .why .card { padding: 22px 18px; }
  .review { padding: 20px 18px; }
  .areas { padding: 22px 16px; }
  .areas .chips span { font-size: 12px; padding: 6px 12px; }
  .faq summary { padding: 15px 16px; font-size: 14.5px; }
  .faq .a { padding: 0 16px 15px; font-size: 13.5px; }

  .big-cta { padding: 34px 18px; border-radius: 18px; }
  .big-cta .row .btn { width: 100%; white-space: normal; }

  .listing-head { padding: 28px 0; margin-bottom: 22px; }
  .page-head { padding: 30px 0; }
  .sort-row { margin-bottom: 16px; }
  .sort-row select { padding: 9px 14px; font-size: 13px; }

  .pdetail .price-box .now { font-size: 28px; }
  .pdetail .price-box .old { font-size: 15px; margin-left: 8px; }
  .pdetail .price-box .save { margin-left: 0; margin-top: 8px; display: inline-block; }
  .pdetail .cta-col .btn { white-space: normal; padding: 13px 14px; font-size: 14.5px; }
  .pdetail .assure { grid-template-columns: 1fr; }
  .pdetail .desc { padding: 16px; font-size: 14px; }

  .site-footer .grid { grid-template-columns: 1fr; gap: 26px; padding: 36px 0 26px; }
  .site-footer .bottom { justify-content: center; text-align: center; }
}
