/* Collection landing pages — premium PLP (mobile-first) */
.cl-page {
  --cl-bg: #f6f2ea;
  --cl-ink: #1d1914;
  --cl-muted: #6b645c;
  --cl-card: #ffffff;
  --cl-line: rgba(32, 28, 23, 0.08);
  --cl-radius: 18px;
  --cl-shadow: 0 12px 40px rgba(29, 25, 20, 0.08);
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--cl-ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(47, 111, 78, 0.08), transparent 60%),
    radial-gradient(900px 400px at 100% 0%, rgba(194, 160, 90, 0.12), transparent 55%),
    var(--cl-bg);
  padding-bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}

.cl-page h1,
.cl-page h2,
.cl-page h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.01em;
}

.cl-container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* First view: hero + trust — shared edge alignment */
.cl-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  min-height: min(58vh, 380px);
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(115deg, rgba(16, 24, 20, 0.82) 0%, rgba(16, 24, 20, 0.5) 55%, rgba(16, 24, 20, 0.28) 100%),
    var(--cl-hero-image) center/cover no-repeat;
}

.cl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 12, 0.15) 0%, rgba(10, 14, 12, 0.62) 100%);
  z-index: -1;
  pointer-events: none;
}

.cl-hero__inner {
  width: 100%;
  padding: 1.5rem 0 1.65rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
}

.cl-breadcrumb {
  width: 100%;
  margin: 0 0 0.85rem;
}

.cl-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  opacity: 0.95;
  line-height: 1.35;
}

.cl-breadcrumb li {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.cl-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.35rem;
  opacity: 0.65;
}

.cl-breadcrumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cl-hero__badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.65rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #1d1914;
  background: var(--cl-accent, #c2a05a);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}

.cl-hero__title {
  font-size: clamp(1.65rem, 5.4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 0.65rem;
  max-width: min(100%, 22ch);
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: normal;
}

.cl-hero__desc {
  margin: 0 0 1rem;
  max-width: min(100%, 48ch);
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.93);
}

.cl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  margin: 0 0 0.85rem;
}

.cl-hero__promise {
  margin: 0;
  max-width: min(100%, 52ch);
  font-size: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.cl-hero__promise i {
  margin-top: 0.12rem;
  flex-shrink: 0;
}

.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 0.88rem;
  transition: transform 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}
.cl-btn:hover { transform: translateY(-1px); }
.cl-btn--primary { background: var(--cl-accent, #c2a05a); color: #1d1914; }
.cl-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cl-trust {
  background: #fff;
  border-bottom: 1px solid var(--cl-line);
}

.cl-trust__row {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.15rem;
  overflow-x: auto;
  padding: 0.95rem 0;
  margin: 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cl-trust__row::-webkit-scrollbar { display: none; }

.cl-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cl-ink);
  flex-shrink: 0;
}

.cl-trust__item i {
  color: var(--cl-primary, #2f6f4e);
  font-size: 0.9rem;
}

@media (max-width: 639.98px) {
  .cl-container {
    width: min(100%, calc(100% - 1.5rem));
  }

  .cl-hero {
    min-height: auto;
    align-items: stretch;
  }

  .cl-hero__inner {
    padding: 1.25rem 0 1.4rem;
  }

  .cl-hero__title {
    max-width: 100%;
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
  }

  .cl-hero__desc {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .cl-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cl-hero__actions .cl-btn {
    width: 100%;
  }

  .cl-hero__promise {
    max-width: 100%;
  }

  .cl-trust__row {
    padding: 0.8rem 0;
    gap: 0.85rem;
  }
}

@media (min-width: 640px) and (max-width: 979.98px) {
  .cl-hero {
    min-height: 340px;
  }

  .cl-hero__inner {
    padding: 1.75rem 0 1.85rem;
  }

  .cl-hero__title {
    max-width: min(100%, 26ch);
  }
}

@media (min-width: 980px) {
  .cl-hero {
    min-height: 400px;
    align-items: center;
  }

  .cl-hero__inner {
    padding: 2.5rem 0 2.65rem;
    max-width: 560px;
  }

  .cl-hero__title {
    max-width: 100%;
    font-size: clamp(2.35rem, 3.2vw, 3.05rem);
  }

  .cl-hero__desc {
    max-width: 100%;
    font-size: 1rem;
  }

  .cl-hero__actions {
    width: auto;
  }

  .cl-trust__row {
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    gap: 0.85rem 1.5rem;
    padding: 1.05rem 0;
  }
}

.cl-section { padding: 1.65rem 0; }
.cl-section--muted { background: rgba(255, 255, 255, 0.45); }
.cl-section__head { margin-bottom: 1rem; }
.cl-section__title {
  margin: 0;
  font-size: clamp(1.35rem, 4.5vw, 2.1rem);
  font-weight: 700;
  color: var(--cl-primary, #2f6f4e);
  line-height: 1.2;
}
.cl-section__sub {
  margin: 0.3rem 0 0;
  color: var(--cl-muted);
  font-size: 0.9rem;
}

.cl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
@media (min-width: 640px) {
  .cl-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem; }
}
@media (min-width: 980px) {
  .cl-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem; }
}

.cl-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: var(--cl-radius);
  box-shadow: var(--cl-shadow);
}
.cl-empty a { color: var(--cl-primary, #2f6f4e); font-weight: 700; }

.cl-card {
  display: flex;
  flex-direction: column;
  background: var(--cl-card);
  border-radius: var(--cl-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--cl-line);
  box-shadow: var(--cl-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  min-width: 0;
}
.cl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(29, 25, 20, 0.12);
}
.cl-card__media {
  position: relative;
  aspect-ratio: 1;
  background: #efe8dc;
  overflow: hidden;
}
.cl-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cl-card:hover .cl-card__media img { transform: scale(1.04); }
.cl-card__type {
  position: absolute;
  left: 0.55rem;
  top: 0.55rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--cl-muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.4rem;
  border-radius: 999px;
}
.cl-card__body {
  padding: 0.7rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}
.cl-card__name {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.cl-card__meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.35rem; min-width: 0; }
.cl-card__price { font-weight: 800; font-size: 0.95rem; }
.cl-card__mrp { color: #9a9086; text-decoration: line-through; font-size: 0.78rem; }
.cl-card__off {
  font-size: 0.62rem;
  font-weight: 800;
  color: #1e8e3e;
  background: #e3f5e3;
  padding: 0.12rem 0.35rem;
  border-radius: 6px;
}
.cl-card__rating {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: #b8860b;
}

.cl-slider { position: relative; }
.cl-slider__track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.2rem 0.1rem 0.65rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cl-slider__track::-webkit-scrollbar { display: none; }
.cl-slider__item {
  flex: 0 0 min(68vw, 220px);
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .cl-slider__item { flex-basis: 220px; }
}
.cl-slider__nav {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--cl-line);
  background: #fff;
  color: var(--cl-ink);
  box-shadow: var(--cl-shadow);
  cursor: pointer;
  display: none;
}
@media (min-width: 768px) {
  .cl-slider__nav { display: grid; place-items: center; }
}
.cl-slider__nav--prev { left: -0.35rem; }
.cl-slider__nav--next { right: -0.35rem; }

.cl-chip-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cl-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--cl-line);
  color: var(--cl-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
}
.cl-chip:hover {
  border-color: var(--cl-primary, #2f6f4e);
  background: rgba(47, 111, 78, 0.06);
}
.cl-chip--outline { background: transparent; }

.cl-link-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 900px) {
  .cl-link-columns { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.cl-link-columns h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--cl-primary, #2f6f4e);
}
.cl-link-columns a {
  display: block;
  color: var(--cl-ink);
  text-decoration: none;
  padding: 0.25rem 0;
  font-size: 0.88rem;
}
.cl-link-columns a:hover { color: var(--cl-primary, #2f6f4e); text-decoration: underline; }

.cl-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .cl-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .cl-why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.cl-why-card {
  background: #fff;
  border-radius: var(--cl-radius);
  padding: 1rem;
  border: 1px solid var(--cl-line);
  box-shadow: var(--cl-shadow);
}
.cl-why-card i { color: var(--cl-accent, #c2a05a); font-size: 1.15rem; margin-bottom: 0.35rem; }
.cl-why-card h3 { margin: 0 0 0.3rem; font-size: 1.1rem; }
.cl-why-card p { margin: 0; color: var(--cl-muted); font-size: 0.88rem; line-height: 1.5; }

.cl-reviews { display: grid; gap: 0.75rem; }
@media (min-width: 800px) {
  .cl-reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.cl-review {
  margin: 0;
  background: #fff;
  border-radius: var(--cl-radius);
  padding: 1rem;
  border: 1px solid var(--cl-line);
}
.cl-review p { margin: 0 0 0.6rem; line-height: 1.5; }
.cl-review footer { color: var(--cl-muted); font-size: 0.82rem; font-weight: 700; }
.cl-google-reviews {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: var(--cl-radius);
  padding: 0.9rem 1rem;
  border: 1px solid var(--cl-line);
}
.cl-google-reviews .cl-btn--ghost {
  color: var(--cl-ink);
  border-color: var(--cl-line);
  background: #faf7f1;
}

.cl-split { display: grid; gap: 1.25rem; }
@media (min-width: 800px) {
  .cl-split { grid-template-columns: 1fr 1fr; }
}
.cl-bullets {
  margin: 0.65rem 0;
  padding-left: 1.1rem;
  color: var(--cl-muted);
  line-height: 1.65;
}
.cl-split a { color: var(--cl-primary, #2f6f4e); font-weight: 700; }

.cl-secure {
  background: linear-gradient(90deg, rgba(47, 111, 78, 0.1), rgba(194, 160, 90, 0.12));
  border-block: 1px solid var(--cl-line);
  padding: 0.9rem 0;
}
.cl-secure__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.9rem;
}
.cl-pay-icons { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.cl-pay-icons span {
  background: #fff;
  border: 1px solid var(--cl-line);
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.cl-faq { display: grid; gap: 0.55rem; }
.cl-faq__item {
  background: #fff;
  border: 1px solid var(--cl-line);
  border-radius: 14px;
  padding: 0.1rem 0.9rem;
}
.cl-faq__item summary {
  cursor: pointer;
  font-weight: 750;
  padding: 0.85rem 0;
  list-style: none;
}
.cl-faq__item summary::-webkit-details-marker { display: none; }
.cl-faq__item p {
  margin: 0 0 0.85rem;
  color: var(--cl-muted);
  line-height: 1.6;
}

.cl-seo__content {
  background: #fff;
  border-radius: 20px;
  padding: 1.25rem 1rem;
  border: 1px solid var(--cl-line);
  box-shadow: var(--cl-shadow);
  line-height: 1.7;
  color: #444;
  font-size: 0.95rem;
}
.cl-seo__content h2,
.cl-seo__content h3 { color: var(--cl-primary, #2f6f4e); margin-top: 1rem; }
.cl-seo__content a { color: var(--cl-accent, #c2a05a); font-weight: 700; }

.cl-newsletter {
  background: linear-gradient(135deg, #234f38, #2f6f4e 55%, #3d8260);
  color: #fff;
  padding: 1.5rem 0;
}
.cl-newsletter__inner { display: grid; gap: 0.9rem; }
@media (min-width: 800px) {
  .cl-newsletter__inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}
.cl-newsletter h2 { margin: 0 0 0.3rem; font-size: clamp(1.35rem, 4vw, 1.8rem); color: #fff; }
.cl-newsletter p { margin: 0; opacity: 0.92; font-size: 0.9rem; }
.cl-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.35rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.cl-newsletter__form input {
  flex: 1 1 140px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0.6rem 0.8rem;
  outline: none;
  min-width: 0;
}
.cl-newsletter__form input::placeholder { color: rgba(255, 255, 255, 0.7); }
.cl-newsletter__form button {
  flex: 1 1 100%;
  border-radius: 999px;
}
@media (min-width: 640px) {
  .cl-newsletter__form { border-radius: 999px; flex-wrap: nowrap; }
  .cl-newsletter__form button { flex: 0 0 auto; }
}

.cl-final-cta { padding: 1.75rem 0 0.5rem; }
.cl-final-cta__inner {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(47, 111, 78, 0.1), rgba(194, 160, 90, 0.14)),
    #fff;
  border: 1px solid var(--cl-line);
  border-radius: 22px;
  padding: 1.5rem 1rem;
  box-shadow: var(--cl-shadow);
}
.cl-final-cta h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  color: var(--cl-primary, #2f6f4e);
}
.cl-final-cta p { margin: 0 0 0.9rem; color: var(--cl-muted); }
.cl-final-cta .cl-btn--ghost {
  color: var(--cl-ink);
  border-color: var(--cl-line);
  background: #fff;
}

@keyframes cl-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Floating WhatsApp — desktop only (mobile uses footer bottom nav) */
.cl-wa-float { display: none; }
@media (min-width: 900px) {
  .cl-wa-float {
    display: grid;
    place-items: center;
    position: fixed;
    right: 1.25rem;
    bottom: 1.5rem;
    z-index: 60;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    animation: cl-pulse 2.4s ease-in-out infinite;
  }
}

/* Mobile shop CTA above site bottom nav — no WhatsApp */
.cl-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(4.6rem + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--cl-line);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.06);
}
.cl-mobile-cta a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.86rem;
  background: var(--cl-primary, #2f6f4e);
  color: #fff;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 900px) {
  .cl-mobile-cta { display: none; }
  .cl-page { padding-bottom: 1.5rem; }
}

.cl-page #mobileBottomNav { z-index: 100; }

@media (prefers-reduced-motion: reduce) {
  .cl-card,
  .cl-btn,
  .cl-card__media img,
  .cl-wa-float { transition: none; animation: none; }
}
