:root {
  --ink: #1a140f;
  --ink-soft: #5a4e43;
  --cream: #f6efe4;
  --paper: #faf6ef;
  --sand: #e7dccb;
  --green: #123024;
  --green-mid: #1c4a34;
  --green-deep: #0b1d15;
  --gold: #c4a35a;
  --gold-2: #e6cb8d;
  --red: #8f1d1d;
  --whatsapp: #128c4a;
  --shadow: 0 24px 60px rgba(16, 12, 8, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196,163,90,0.12), transparent 28%),
    var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.muted { opacity: 0.75; }

.wrap {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, #07140f 0%, #123024 45%, #1a4030 100%);
  color: var(--gold-2);
  overflow: hidden;
  border-bottom: 1px solid rgba(228, 201, 136, 0.18);
  position: relative;
}
.topbar-mobile { display: none; }
.topbar::before,
.topbar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.topbar-desktop::before {
  left: 0;
  background: linear-gradient(90deg, #07140f, transparent);
}
.topbar-desktop::after {
  right: 0;
  background: linear-gradient(270deg, #123024, transparent);
}
.topbar-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding: 11px 0;
  animation: topbar-scroll 28s linear infinite;
  white-space: nowrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.topbar-item i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.18);
  display: inline-block;
}
.topbar-dot {
  opacity: 0.35;
  font-size: 12px;
}
@keyframes topbar-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.topbar:hover .topbar-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .topbar-track { animation: none; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.header.is-solid { border-bottom-color: var(--sand); }
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  position: relative;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #fffdf8;
}
.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.05;
  font-weight: 600;
  max-width: 16ch;
}
.brand small {
  color: var(--ink-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10px;
}

.nav {
  display: none;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-desktop a { font-size: 15px; color: var(--ink-soft); font-weight: 500; }
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--green); }
.nav-backdrop { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  transition: 0.22s ease;
  white-space: nowrap;
  font-weight: 600;
}
.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 140, 74, 0.28);
}
.btn-wa:hover { transform: translateY(-1px); background: #0f7a40; }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--green-deep);
}
.btn-line {
  background: #fff;
  color: var(--green);
  border: 1px solid var(--sand);
}
.btn-full { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sand);
  background: #fff;
  border-radius: 12px;
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.05);
  z-index: 0;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 21, 0.25) 0%, rgba(11, 29, 21, 0.88) 68%);
}
.hero-home .hero-bg {
  background-image: url("/images/sucuk.jpg");
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 70px;
}
.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow {
  text-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.eyebrow {
  display: inline-block;
  color: var(--gold-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1,
.page-hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.94;
  font-weight: 600;
  margin: 0 0 16px;
  max-width: 14ch;
}
.hero p {
  max-width: 42ch;
  font-size: 17px;
  color: rgba(255,255,255,0.84);
  margin: 0 0 26px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.hero-btn-primary {
  background: #f3e6cf;
  color: var(--green-deep);
  border: 1px solid #e2d0ae;
  border-radius: 4px;
  padding: 14px 26px;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.hero-btn-primary:hover {
  background: #fff8ea;
  border-color: var(--gold-2);
}
.hero-btn-link {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(230, 203, 141, 0.55);
}
.hero-btn-link::after {
  content: "→";
  color: var(--gold-2);
  transition: transform 0.2s ease;
}
.hero-btn-link:hover {
  color: #fff;
  border-bottom-color: var(--gold-2);
}
.hero-btn-link:hover::after {
  transform: translateX(3px);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 18px;
  max-width: 520px;
}
.hero-stats div {
  min-width: 0;
  flex: 1;
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.hero-stats div:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.hero-stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
  color: var(--gold-2);
  font-weight: 600;
}
.hero-stats span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.section { padding: 80px 0; }
#paketler,
#paket {
  scroll-margin-top: 100px;
}
.strip { padding-top: 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}
.kicker {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 8px;
  font-weight: 700;
}
.section-head h2,
.related h2,
.cta-band h2,
.salca-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.96;
  margin: 0;
  font-weight: 600;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.category-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow);
  color: #fff;
  isolation: isolate;
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: -1;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(11,29,21,0.88));
  z-index: -1;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
}
.tag {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  margin-bottom: 10px;
}
.category-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  margin: 0 0 8px;
  line-height: 1;
}
.category-card p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}
.category-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.from-price {
  font-weight: 800;
  color: #fff;
  font-size: 15px;
}
.link-arrow {
  font-weight: 700;
  color: var(--gold-2);
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust article {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(16,12,8,0.08);
}
.trust b { display: block; font-size: 14px; margin-bottom: 2px; }
.trust span { color: var(--ink-soft); font-size: 12px; }
.trust .icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--gold-2);
  flex-shrink: 0;
}
.trust .icon svg { width: 22px; height: 22px; }

.cta-band {
  padding-top: 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: #fff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.cta-inner p { color: rgba(255,255,255,0.8); max-width: 46ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.steps-section {
  background: linear-gradient(180deg, #f3eee3, transparent);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(16,12,8,0.06);
}
.step-card em {
  font-style: normal;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.step-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.media-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(11,29,21,0.88);
  color: #fff;
  border: 1px solid rgba(228,201,136,0.35);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.page-hero-media { position: relative; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-deep);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  box-shadow: var(--shadow);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.page-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  min-height: min(70vh, 680px);
  background: var(--green-deep);
  color: #fff;
}
.page-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.5s ease;
}
.page-hero-media:hover img { transform: scale(1.03); }
.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 100%;
  padding: 56px clamp(24px, 5vw, 64px);
  background: linear-gradient(160deg, #1a4030, #0d2118);
  color: #fff !important;
}
.page-hero-copy h1,
.page-hero-copy p,
.page-hero-copy li,
.page-hero-copy span {
  color: #fff !important;
}
.page-hero-copy .kicker,
.page-hero-copy strong {
  color: var(--gold-2) !important;
}
.page-hero-oil .page-hero-copy {
  background: linear-gradient(160deg, #163528, #0d2118);
}
.page-hero-salca .page-hero-copy {
  background: linear-gradient(160deg, #8a2222, #4a1010);
}
.page-hero-copy p {
  max-width: 36ch;
  margin: 0 0 22px;
  opacity: 0.92;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-chips span {
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.offer-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 26px;
  padding: 18px 18px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 28px 60px rgba(16,12,8,0.16);
}
.offer-card.is-featured {
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(196,163,90,0.22);
}
.offer-thumb {
  border-radius: 18px;
  overflow: hidden;
  height: 140px;
  margin: -2px -2px 4px;
}
.offer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.offer-card:hover .offer-thumb img { transform: scale(1.05); }
.offer-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin: 0;
  line-height: 1.1;
}
.offer-gift { margin: 0; color: var(--ink-soft); font-size: 14px; }
.offer-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  color: var(--green);
  line-height: 1;
  margin: 8px 0 4px;
}
.offer-price small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 500;
}
.badge {
  align-self: flex-start;
  background: var(--cream);
  color: var(--green);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
}

.salca-spotlight {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  background: linear-gradient(135deg, #8f1d1d, #5a1212);
  color: #fff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.salca-copy p { color: rgba(255,255,255,0.84); }
.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  padding-left: 28px;
  position: relative;
}
.checklist li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-2);
  position: absolute;
  left: 0;
  top: 4px;
  box-shadow: inset 0 0 0 4px rgba(143,29,29,0.35);
}
.salca-buy {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.salca-buy .offer-price { color: #fff; }
.salca-buy .badge {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.related {
  padding-top: 0;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.related-links a {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
}
.related-links a:hover {
  border-color: var(--gold);
  color: var(--green);
}

.footer {
  background:
    radial-gradient(ellipse at top right, rgba(196, 163, 90, 0.12), transparent 42%),
    linear-gradient(180deg, #0f2a1e 0%, var(--green-deep) 100%);
  color: rgba(255,255,255,0.72);
  padding: 56px 0 0;
  margin-top: 40px;
  border-top: 1px solid rgba(228, 201, 136, 0.18);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px 40px;
  padding-bottom: 40px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo .brand-mark {
  width: 40px;
  height: 40px;
  color: var(--gold-2);
  background: rgba(255,255,255,0.04);
  border-color: rgba(228, 201, 136, 0.35);
}
.footer-logo strong {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  max-width: 14ch;
}
.footer-brand p {
  margin: 0 0 14px;
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.6;
}
.footer-domain {
  display: inline-block;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(230, 203, 141, 0.35);
  padding-bottom: 2px;
}
.footer-domain:hover { color: #fff; border-bottom-color: #fff; }
.footer-col h3 {
  font-family: "Manrope", sans-serif;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 6px 0 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-col a {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--gold-2); }
.footer-wa {
  margin-top: 18px;
  width: fit-content;
  padding: 11px 18px;
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 32px rgba(18, 140, 74, 0.35);
  animation: none;
}
.wa-float:hover { transform: translateY(-2px); }

.modal, .lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 12, 0.72);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 24px;
}
.modal.open, .lightbox.open { display: grid; }
.modal-card {
  width: min(460px, 100%);
  background: var(--paper);
  border-radius: 28px;
  padding: 28px;
}
.modal-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  margin: 0 0 8px;
}
.modal-card p { color: var(--ink-soft); margin: 0 0 18px; }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field input {
  border: 1px solid var(--sand);
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
}
.field input:focus { border-color: var(--gold); }
.lightbox img {
  max-width: min(920px, 100%);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}
.category-card.reveal:nth-child(2),
.offer-card.reveal:nth-child(2) { animation-delay: 0.08s; }
.category-card.reveal:nth-child(3),
.offer-card.reveal:nth-child(3) { animation-delay: 0.16s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 16px 32px rgba(18, 140, 74, 0.35); }
  50% { box-shadow: 0 16px 32px rgba(18, 140, 74, 0.55), 0 0 0 10px rgba(18,140,74,0.12); }
}

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .menu-btn {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 70;
  }
  .menu-btn[aria-expanded="true"] {
    background: var(--cream);
    border-color: var(--green);
    color: var(--green);
  }
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 29, 21, 0.42);
    z-index: 65;
  }
  .nav-backdrop.open { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 86vw);
    background: #fffdf8;
    padding: 88px 20px 28px;
    box-shadow: -16px 0 48px rgba(0,0,0,0.22);
    z-index: 68;
    border-radius: 0;
    min-width: 0;
    overflow-y: auto;
  }
  .nav.open a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--sand);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
  }
  .nav.open a.is-active {
    color: var(--green);
    background: rgba(27, 122, 76, 0.06);
    border-radius: 10px;
    border-bottom-color: transparent;
  }
  .nav.open .header-phone {
    display: block !important;
    margin-top: 10px;
    border-bottom: 0;
    color: var(--green) !important;
  }
  .nav.open .btn-wa {
    margin-top: 14px;
    justify-content: center;
    border-bottom: 0;
    border-radius: 12px;
  }
  .category-grid,
  .offer-grid,
  .page-hero,
  .salca-spotlight,
  .footer-grid,
  .footer-inner,
  .cta-inner,
  .section-head,
  .steps-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }
  .cta-inner { align-items: stretch; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
  .page-hero { min-height: auto; }
  .page-hero-media { min-height: 320px; order: -1; }
  .hero { min-height: 78vh; }
  .hero-copy { padding-bottom: 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-actions .btn,
  .hero-btn-primary { width: 100%; }
  .hero-btn-link { width: fit-content; }
  .hero-stats {
    flex-direction: column;
    gap: 14px;
    max-width: none;
  }
  .hero-stats div {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .hero-stats div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .trust {
    grid-template-columns: 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--sand);
    border-radius: 20px;
    overflow: hidden;
  }
  .trust article {
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid var(--sand);
  }
  .trust article:last-child { border-bottom: 0; }
  .category-card { min-height: 360px; }
  .wrap { width: min(1140px, calc(100% - 24px)); }
  .section { padding: 56px 0; }
}

@media (max-width: 560px) {
  .brand strong { font-size: 22px; }
  .offer-price { font-size: 34px; }
  .salca-spotlight { padding: 24px; }
  .wa-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}

/* Trust bar */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--sand);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 0;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
}
.trust-bar-item b {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}
.trust-bar-item span {
  color: var(--ink-soft);
  font-size: 12px;
}
.tb-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.tb-icon svg { width: 20px; height: 20px; }
.header-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--green) !important;
  white-space: nowrap;
}

/* Google reviews widget */
.reviews-widget {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 55;
  width: 300px;
  max-height: min(380px, calc(100vh - 120px));
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(16, 12, 8, 0.2);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.reviews-widget.is-collapsed {
  max-height: 58px;
  width: 260px;
}
.reviews-widget.is-collapsed .reviews-list { display: none; }
.reviews-widget:not(.is-collapsed) {
  cursor: default;
}
.reviews-widget:not(.is-collapsed) .reviews-head {
  cursor: pointer;
}
.reviews-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 10px;
  border-bottom: 1px solid #eee;
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.reviews-score strong {
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
}
.reviews-score span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #666;
  font-weight: 700;
}
.stars {
  color: #f4b400;
  letter-spacing: 1px;
  font-size: 13px;
  line-height: 1;
}
.stars.mini { font-size: 11px; }
.g-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: conic-gradient(from 45deg, #ea4335, #fbbc05, #34a853, #4285f4, #ea4335);
  font-size: 13px;
}
.reviews-list {
  overflow: auto;
  padding: 8px 12px 12px;
  display: grid;
  gap: 12px;
  cursor: default;
}
.review-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}
.review-meta b { font-size: 13px; }
.review-date {
  font-size: 11px;
  color: #888;
}
.review-item p {
  margin: 0;
  font-size: 12px;
  color: #444;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .topbar-desktop { display: none; }
  .topbar-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
    padding: 7px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    color: #f0e2b8;
    line-height: 1.2;
  }
  .topbar-mobile span:not(.sep) {
    white-space: nowrap;
  }
  .topbar-mobile .sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.7;
    flex-shrink: 0;
  }
  .topbar-mobile::before,
  .topbar-mobile::after { display: none; }

  .trust-bar {
    display: none;
  }
  .header-phone { display: none; }

  .reviews-widget {
    left: 12px;
    right: auto;
    bottom: 80px;
    width: min(280px, calc(100vw - 80px));
    max-height: min(300px, calc(100vh - 130px));
    border-radius: 14px;
  }
  .reviews-widget.is-collapsed {
    width: min(240px, calc(100vw - 80px));
    max-height: 54px;
  }
  .reviews-widget.is-collapsed .reviews-score span { display: block; }
  .reviews-head { padding: 10px 10px 8px; gap: 8px; }
  .reviews-score strong { font-size: 22px; }
  .reviews-score span { font-size: 10px; letter-spacing: 0.05em; }
  .stars { font-size: 12px; letter-spacing: 1px; }
  .g-logo { width: 22px; height: 22px; font-size: 11px; }
  .reviews-list { padding: 6px 10px 10px; gap: 10px; }
  .review-item { grid-template-columns: 30px 1fr; gap: 8px; }
  .review-avatar { width: 30px; height: 30px; font-size: 10px; }
  .review-meta b { font-size: 12px; }
  .review-date { font-size: 10px; }
  .review-item p {
    font-size: 11px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .footer { padding-top: 40px; margin-top: 28px; }
  .footer-inner { gap: 28px; padding-bottom: 28px; }
  .footer-logo strong { font-size: 22px; }
  .footer-wa { width: 100%; justify-content: center; }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
