:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --paper: #f4f8fb;
  --panel: #ffffff;
  --brand: #0d9488;
  --brand-deep: #0f766e;
  --signal: #14b8a6;
  --accent: #f59e0b;
  --amazon: #232f3e;
  --flipkart: #047bd6;
  --navy: #0f2744;
  --hero: #0b1c33;
  --max: 1120px;
  --font: "Figtree", sans-serif;
  --display: "Bricolage Grotesque", sans-serif;
  --shadow: 0 18px 40px rgba(15, 39, 68, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.page-coupons,
body.page-home {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.cf-shell {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: #fff;
  padding: 0.55rem 0.85rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

/* Top bar */
.cf-top {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(243, 246, 249, 0.88);
  border-bottom: 1px solid var(--line);
}

.cf-top-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
}

.cf-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: max-content;
}

.cf-brand-mark {
  width: 1.95rem;
  height: 1.95rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2dd4bf, #0d9488 55%, #0f766e);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: -0.04em;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}

.cf-brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.cf-brand-name span {
  color: var(--brand);
}

.cf-nav {
  display: none;
  gap: 1.1rem;
  margin-left: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.cf-nav a[aria-current="page"],
.cf-nav a:hover {
  color: var(--brand-deep);
}

.cf-top-meta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cf-region {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 0.28rem 0.48rem;
}

.cf-quiet {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.92rem;
}

.cf-quiet:hover {
  color: var(--brand-deep);
}

@media (min-width: 860px) {
  .cf-nav {
    display: flex;
  }
}

/* Hero — one composition */
.cf-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.cf-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 70% at 8% 30%, rgba(13, 148, 136, 0.25), transparent 58%),
    radial-gradient(ellipse 45% 55% at 92% 18%, rgba(18, 184, 134, 0.2), transparent 52%),
    radial-gradient(ellipse 40% 50% at 70% 85%, rgba(255, 122, 24, 0.12), transparent 55%),
    linear-gradient(155deg, var(--hero) 0%, #1a2740 48%, #121c2e 100%);
}

.cf-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
  animation: gridDrift 28s linear infinite;
}

@keyframes gridDrift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(48px);
  }
}

.cf-hero-inner {
  padding: clamp(2.4rem, 7vw, 4.5rem) 0 clamp(2.2rem, 5vw, 3.4rem);
  max-width: 46rem;
  animation: heroIn 0.7s ease both;
}

/* Full-bleed split hero — fills left/right void */
.cf-hero-split {
  min-height: min(68vh, 560px);
}

.cf-hero-grid {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.6rem) 0;
  animation: heroIn 0.7s ease both;
}

@media (min-width: 960px) {
  .cf-hero-split .cf-hero-bg {
    background:
      radial-gradient(ellipse 48% 75% at 12% 40%, rgba(13, 148, 136, 0.22), transparent 58%),
      linear-gradient(118deg, var(--hero) 0%, #1a2740 40%, var(--hero) 40%);
  }

  .cf-hero-grid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: min(68vh, 560px);
    grid-template-columns: minmax(18rem, 0.72fr) minmax(26rem, 1.28fr);
    gap: 0;
  }

  .cf-hero-copy {
    padding: clamp(1.8rem, 4.5vw, 3.2rem) clamp(1.2rem, 3vw, 2.4rem) clamp(1.8rem, 4.5vw, 3.2rem) clamp(1.4rem, 5vw, 4.5rem);
    max-width: 32rem;
    justify-self: end;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .cf-hero-visual {
    position: relative;
    height: 100%;
    min-height: min(68vh, 560px);
    overflow: hidden;
  }

  .cf-hero-stage {
    position: absolute;
    inset: 0;
  }

  .cf-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    animation: heroKen 14s ease-in-out infinite alternate;
  }

  .cf-hero-slash {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(118deg, var(--hero) 0%, var(--hero) 12%, transparent 12.2%),
      linear-gradient(90deg, rgba(21, 32, 51, 0.5), transparent 26%);
    pointer-events: none;
  }

  .cf-hero-film {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    top: 0.85rem;
    width: 3.85rem;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 0.45rem;
    z-index: 2;
  }

  .cf-hero-film img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    filter: saturate(1.05);
  }
}

@media (max-width: 959px) {
  .cf-hero-visual {
    display: none;
  }

  .cf-hero-copy {
    max-width: 40rem;
  }
}

@keyframes heroKen {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-2%, 1%, 0);
  }
}

@keyframes shotFloat {
  0%,
  100% {
    transform: scale(1.04) translateY(0);
  }
  50% {
    transform: scale(1.08) translateY(-1.2%);
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cf-kicker {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.cf-kicker::after {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.35rem;
  background: var(--brand);
  vertical-align: 0.2em;
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.7);
    opacity: 0.55;
  }
}

.cf-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  max-width: 22ch;
}

.cf-lede {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  max-width: 38rem;
}

.cf-search {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: 1fr auto;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  max-width: 34rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cf-search:focus-within {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.16), var(--shadow);
}

.cf-search input {
  border: 0;
  outline: 0;
  padding: 0.78rem 0.9rem;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}

.cf-search button {
  border: 0;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 0 1rem;
  transition: background 0.2s ease;
}

.cf-search button:hover {
  background: var(--brand-deep);
}

.cf-status {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Board */
.cf-board {
  padding: 1.35rem 0 2.5rem;
}

.cf-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
}

.cf-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.3rem;
  background: rgba(16, 42, 67, 0.06);
}

.cf-tab {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cf-tab.is-active {
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(11, 18, 32, 0.06);
}

.cf-count {
  margin: 0;
  margin-left: auto;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.cf-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.cf-chip-row-cat {
  margin-bottom: 1rem;
}

.cf-chip {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.cf-chip:hover {
  border-color: rgba(13, 148, 136, 0.35);
  color: var(--brand-deep);
}

.cf-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Offer tickets */
.cf-list {
  display: grid;
  gap: 0.75rem;
}

.cf-ticket {
  display: grid;
  gap: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  animation: ticketIn 0.45s ease forwards;
}

.cf-ticket::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #14b8a6, #5eead4);
}

@keyframes ticketIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 780px) {
  .cf-ticket {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1.1rem 1.15rem 1.1rem 1.25rem;
  }
}

.cf-mono {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.04em;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(13, 148, 136, 0.12)),
    #eef3f7;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.cf-logo {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.28rem;
  flex-shrink: 0;
}

.cf-logo-wrap {
  width: 3.4rem;
  height: 3.4rem;
  flex-shrink: 0;
}

.cf-logo-wrap .cf-logo,
.cf-logo-wrap .cf-mono {
  width: 100%;
  height: 100%;
}

.cf-logo-sm,
.cf-mono-sm {
  width: 2.75rem;
  height: 2.75rem;
}

.cf-mono-sm {
  font-size: 0.8rem;
}

.cf-ticket-body h2 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
  font-weight: 700;
}

.cf-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cf-meta .store {
  color: var(--brand-deep);
}

.cf-meta .cat,
.cf-meta .ends {
  color: var(--muted);
  font-weight: 600;
}

.cf-ticket-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 44rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

@media (min-width: 780px) {
  .cf-actions {
    flex-direction: column;
    min-width: 10.5rem;
  }
}

.cf-code {
  border: 1px dashed rgba(16, 42, 67, 0.28);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 4px,
      rgba(16, 42, 67, 0.03) 4px,
      rgba(16, 42, 67, 0.03) 8px
    ),
    #fff;
  color: var(--ink);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.7rem 0.8rem;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.cf-code:hover {
  border-color: var(--brand);
}

.cf-code.is-copied {
  background: rgba(13, 148, 136, 0.12);
  border-color: var(--signal);
  color: #1f2937;
  transform: scale(0.98);
}

.cf-deal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #2dd4bf, #0d9488 55%, #0f766e);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.75rem 0.9rem;
  border: 0;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.cf-deal:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cf-empty {
  margin: 1.5rem 0;
  color: var(--muted);
  font-weight: 600;
}

.cf-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.cf-more {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-weight: 700;
  padding: 0.8rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cf-more:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

/* SEO blocks */
.cf-seo {
  padding: 2.5rem 0;
  background:
    linear-gradient(180deg, rgba(16, 42, 67, 0.04), transparent 40%),
    #eaf0f5;
  border-top: 1px solid var(--line);
}

.cf-seo-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .cf-seo-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }
}

.cf-seo h2 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.cf-seo p,
.cf-seo li {
  color: var(--ink-soft);
}

.cf-seo a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cf-steps {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}

.cf-steps li {
  margin-bottom: 0.45rem;
}

.cf-faq {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
}

.cf-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.cf-faq p {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
}

.cf-disclose {
  padding: 1.25rem 0 2rem;
}

.cf-disclose p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 52rem;
}

.cf-foot {
  border-top: 1px solid var(--line);
  background: var(--hero);
  color: rgba(255, 255, 255, 0.78);
  padding: 1.6rem 0;
}

.cf-foot .cf-brand-name {
  color: #fff;
}

.cf-foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.cf-foot p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

.cf-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  font-weight: 600;
}

.cf-foot-links a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .cf-search {
    grid-template-columns: 1fr;
  }

  .cf-search button {
    padding: 0.85rem;
  }

  .cf-count {
    margin-left: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cf-hero-bg::after,
  .cf-kicker::after,
  .cf-hero-inner,
  .cf-hero-grid,
  .cf-hero-photo,
  .cf-ticket,
  .home-lane,
  .home-cat {
    animation: none !important;
  }

  .cf-ticket,
  .home-lane,
  .home-cat {
    opacity: 1;
    transform: none;
  }
}

/* ——— Homepage ——— */
.page-home .cf-hero-copy h1 {
  max-width: 18ch;
}

.page-home .cf-hero-inner {
  max-width: 40rem;
}

.page-home .cf-hero h1 {
  max-width: 18ch;
}

.cf-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.cf-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.72rem 1rem;
  transition: transform 0.15s ease, filter 0.2s ease, background 0.2s ease;
}

.cf-cta-primary {
  background: linear-gradient(120deg, #2dd4bf, #0d9488 55%, #0f766e);
  color: #fff;
}

.cf-cta-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cf-cta-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cf-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.home-section {
  padding: 2.4rem 0;
}

.home-section-alt {
  background:
    linear-gradient(180deg, rgba(16, 42, 67, 0.04), transparent 45%),
    #eaf0f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.home-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  letter-spacing: -0.03em;
}

.home-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  max-width: 36rem;
}

.home-link {
  font-weight: 700;
  color: var(--brand-deep);
}

.home-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-lanes {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 760px) {
  .home-lanes {
    grid-template-columns: 1fr 1fr;
  }
}

.home-lane {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  opacity: 0;
  transform: translateY(12px);
  animation: ticketIn 0.55s ease forwards;
}

.home-lane:nth-child(2) {
  animation-delay: 0.1s;
}

.home-lane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.home-lane::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.15), rgba(11, 18, 32, 0.82));
}

.home-lane:hover img {
  transform: scale(1.07);
}

.home-lane-copy {
  padding: 1.2rem 1.15rem;
  width: 100%;
}

.home-lane-copy strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.home-lane-copy span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.home-lane-copy em {
  display: inline-block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 0.4rem 0.65rem;
}

.home-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .home-cats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .home-cats {
    grid-template-columns: repeat(6, 1fr);
  }
}

.home-cat {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  opacity: 0;
  transform: translateY(10px);
  animation: ticketIn 0.5s ease forwards;
}

.home-cat:nth-child(1) { animation-delay: 0.02s; }
.home-cat:nth-child(2) { animation-delay: 0.06s; }
.home-cat:nth-child(3) { animation-delay: 0.1s; }
.home-cat:nth-child(4) { animation-delay: 0.14s; }
.home-cat:nth-child(5) { animation-delay: 0.18s; }
.home-cat:nth-child(6) { animation-delay: 0.22s; }

.home-cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.4s ease;
}

.home-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 25%, rgba(11, 18, 32, 0.88));
}

.home-cat:hover img {
  transform: scale(1.06);
}

.home-cat span {
  padding: 0.85rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.home-picks {
  display: grid;
  gap: 0.75rem;
}

.home-pick {
  display: grid;
  gap: 0.85rem;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1rem;
  position: relative;
}

.home-pick::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #14b8a6, #5eead4);
}

@media (min-width: 820px) {
  .home-pick {
    grid-template-columns: 140px 1fr auto;
    align-items: center;
  }
}

.home-pick-media {
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 100px;
  background: #e8eef3;
}

.home-pick-media img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.home-pick h3 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.home-pick p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-pick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

@media (min-width: 820px) {
  .home-pick-actions {
    flex-direction: column;
    min-width: 9.5rem;
  }
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 0.7rem 0.85rem;
}

.home-btn-main {
  background: linear-gradient(120deg, #14b8a6, #0d9488);
  color: #fff;
}

.home-btn-alt {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.home-btn-alt:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.home-live {
  display: grid;
  gap: 0.65rem;
}

.home-live-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 0.9rem;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 0.95rem 1rem;
  align-items: start;
}

@media (min-width: 760px) {
  .home-live-item {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

.cf-offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.home-live-item .store {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.home-live-item h3 {
  margin: 0.25rem 0;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.home-live-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-steps {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .home-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-step {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.15rem;
}

.home-step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.home-step h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.home-step p {
  margin: 0;
  color: var(--muted);
}

.page-home .cf-search {
  margin-top: 1.1rem;
}

/* Shopping header */
.shop-look .cf-top {
  display: none;
}

.shop-top {
  background: #0b1c33;
  color: #fff;
  padding: 0.75rem 0;
}

.shop-top-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.shop-top .cf-brand-name {
  color: #fff;
}

.shop-top .cf-quiet {
  color: rgba(255, 255, 255, 0.75);
}

.shop-top .cf-quiet:hover {
  color: #fff;
}

.shop-search {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 640px;
  width: 100%;
  justify-self: center;
  background: #fff;
  overflow: hidden;
}

.shop-search input {
  border: 0;
  outline: 0;
  padding: 0.8rem 0.95rem;
  color: var(--ink);
  min-width: 0;
}

.shop-search button {
  border: 0;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  padding: 0 1.15rem;
  cursor: pointer;
}

.shop-search button:hover {
  background: var(--brand-deep);
}

.shop-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.shop-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  padding: 0.7rem 0;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.shop-nav a[aria-current="page"],
.shop-nav a:hover {
  color: var(--brand-deep);
}

/* Contained shopping hero banner */
.hero-banner {
  position: relative;
  width: min(100% - 1.5rem, var(--max));
  margin: 0.85rem auto 0;
  background: #0b1c33;
  overflow: hidden;
}

.hero-banner-viewport {
  position: relative;
  min-height: clamp(220px, 32vw, 340px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.hero-slide[hidden] {
  display: block !important;
}

.hero-slide-hit {
  display: block;
  position: relative;
  color: inherit;
  height: 100%;
  cursor: pointer;
}

.hero-slide img {
  width: 100%;
  height: clamp(220px, 32vw, 340px);
  object-fit: cover;
  display: block;
}

.hero-slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.88) 0%, rgba(8, 18, 34, 0.55) 42%, rgba(8, 18, 34, 0.18) 70%, rgba(8, 18, 34, 0.35) 100%),
    linear-gradient(180deg, transparent 55%, rgba(8, 18, 34, 0.35));
}

.hero-slide-shade-hot {
  background:
    linear-gradient(105deg, rgba(185, 28, 28, 0.92) 0%, rgba(220, 38, 38, 0.72) 38%, rgba(220, 38, 38, 0.2) 68%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-slide-shade-teal {
  background:
    linear-gradient(105deg, rgba(15, 118, 110, 0.92) 0%, rgba(13, 148, 136, 0.7) 40%, rgba(13, 148, 136, 0.15) 72%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-slide-shade-warm {
  background:
    linear-gradient(105deg, rgba(194, 65, 12, 0.9) 0%, rgba(234, 88, 12, 0.68) 40%, rgba(234, 88, 12, 0.18) 70%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-slide-shade-blue {
  background:
    linear-gradient(105deg, rgba(3, 105, 161, 0.92) 0%, rgba(2, 132, 199, 0.7) 42%, rgba(2, 132, 199, 0.18) 72%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-slide-copy {
  position: absolute;
  left: 1.25rem;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  max-width: 28rem;
  color: #fff;
  z-index: 2;
}

.hero-slide-copy-punch {
  max-width: 28rem;
}

.hero-kicker {
  margin: 0 0 0.35rem;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero-slide-copy-punch h1,
.hero-slide-copy-punch h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  max-width: none;
}

.hero-punch {
  margin: 0.75rem 0 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.05rem !important;
  font-weight: 600;
  max-width: 28rem !important;
}

.hero-redeem {
  display: inline-flex;
  align-items: center;
  margin-top: 1.15rem;
  padding: 0.72rem 1.35rem;
  background: #fff;
  color: #b91c1c;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.hero-slide-hit:hover .hero-redeem {
  transform: translateY(-1px);
  background: #fff7ed;
}

.hero-slide-brand {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  letter-spacing: -0.04em;
}

.hero-slide-brand::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.35rem;
  background: var(--brand);
  vertical-align: 0.15em;
}

.hero-slide-copy h1,
.hero-slide-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.8vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 16ch;
}

.hero-slide-copy p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  max-width: 34rem;
}

.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.hero-banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #0b1c33;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.hero-banner-prev {
  left: 0.75rem;
}

.hero-banner-next {
  right: 0.75rem;
}

.hero-banner-btn:hover {
  background: #fff;
}

.hero-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 3;
}

.hero-banner-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-banner-dots button.is-active {
  width: 1.35rem;
  background: #fff;
}

@media (max-width: 860px) {
  .shop-top-inner {
    grid-template-columns: 1fr auto;
  }

  .shop-search {
    grid-column: 1 / -1;
    max-width: none;
    justify-self: stretch;
  }

  .hero-slide-copy {
    left: 1rem;
    right: 3.2rem;
  }

  .hero-banner-btn {
    width: 2.2rem;
    height: 2.2rem;
  }

  .hero-slide-copy-punch h1,
  .hero-slide-copy-punch h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }
}

/* Hot deals product grid */
.hot-deals-section .home-head h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.deal-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  padding: 0.75rem 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
}

.deal-filters-label {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-right: 0.15rem;
}

.deal-filter select {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.65rem center;
  padding: 0.45rem 1.8rem 0.45rem 0.7rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  min-width: 7.5rem;
}

.deal-filter-reset {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.deal-filter-reset:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-deal {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-deal[hidden] {
  display: none !important;
}

.product-deal:hover {
  box-shadow: 0 12px 28px rgba(15, 39, 68, 0.1);
  transform: translateY(-2px);
}

.product-deal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem 0;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
}

.product-stars {
  color: #ca8a04;
}

.product-heat {
  color: #ea580c;
  font-weight: 800;
}

.product-deal-media {
  position: relative;
  display: block;
  margin: 0.45rem 0.7rem 0;
  background: #f8fafc;
  aspect-ratio: 1 / 0.95;
  overflow: hidden;
}

.product-deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  background: #ea580c;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.22rem 0.4rem;
  letter-spacing: 0.02em;
}

.product-title {
  margin: 0.65rem 0.7rem 0;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.product-price-row {
  margin: 0.55rem 0.7rem 0;
  display: grid;
  gap: 0.15rem;
}

.product-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ea580c;
  letter-spacing: -0.02em;
}

.product-off {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.product-off s {
  color: #94a3b8;
  font-weight: 600;
}

.product-foot {
  margin-top: auto;
  padding: 0.75rem 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-store {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.45rem;
  color: #fff;
}

.product-store-amazon {
  background: var(--amazon);
}

.product-store-flipkart {
  background: var(--flipkart);
}

.product-store-myntra {
  background: #ff3f6c;
}

.product-cta {
  background: #ea580c;
  color: #fff !important;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
}

.product-cta:hover {
  background: #c2410c;
}

.product-grid-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Amazon-style deals carousel */
.deal-carousel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1rem 1rem 1.15rem;
  box-shadow: var(--shadow);
}

.deal-carousel-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.deal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.deal-tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.deal-tab.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.deal-carousel-nav {
  display: flex;
  gap: 0.4rem;
}

.deal-nav {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}

.deal-nav:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.deal-track-wrap {
  overflow: hidden;
}

.deal-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.deal-track::-webkit-scrollbar {
  display: none;
}

.deal-card {
  flex: 0 0 min(78%, 250px);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  display: grid;
  grid-template-rows: 150px auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deal-card[hidden] {
  display: none;
}

.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 39, 68, 0.12);
}

.deal-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.deal-card-body {
  padding: 0.8rem 0.85rem 0.95rem;
  display: grid;
  gap: 0.28rem;
}

.deal-store {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: max-content;
  padding: 0.2rem 0.4rem;
  color: #fff;
}

.deal-store-amazon {
  background: var(--amazon);
}

.deal-store-flipkart {
  background: var(--flipkart);
}

.deal-card-body strong {
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.deal-card-body span {
  color: var(--muted);
  font-size: 0.88rem;
}

.deal-card-body em {
  margin-top: 0.35rem;
  font-style: normal;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--brand-deep);
}

.deal-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.deal-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 0;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
}

.deal-dot.is-active {
  background: var(--brand);
  width: 1.1rem;
}

@media (min-width: 720px) {
  .deal-card {
    flex-basis: 230px;
  }
}

@media (min-width: 980px) {
  .deal-card {
    flex-basis: 240px;
  }
}

/* ——— Subscribe popup ——— */
body.cf-sub-open {
  overflow: hidden;
}

.cf-sub-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(13, 148, 136, 0.28), transparent 45%),
    radial-gradient(ellipse at 90% 90%, rgba(245, 158, 11, 0.18), transparent 40%),
    rgba(11, 28, 51, 0.72);
  backdrop-filter: blur(4px);
  animation: cfSubFade 0.28s ease;
}

.cf-sub-overlay[hidden] {
  display: none !important;
}

@keyframes cfSubFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes cfSubRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cf-sub-dialog {
  position: relative;
  width: min(100%, 420px);
  padding: 1.75rem 1.5rem 1.35rem;
  border-radius: 18px;
  background:
    linear-gradient(165deg, #ffffff 0%, #f0fdfa 55%, #ecfeff 100%);
  border: 1px solid rgba(13, 148, 136, 0.22);
  box-shadow: 0 28px 60px rgba(11, 28, 51, 0.35);
  animation: cfSubRise 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.cf-sub-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.cf-sub-close:hover {
  color: var(--ink);
  background: rgba(15, 23, 42, 0.06);
}

.cf-sub-brand {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.cf-sub-brand span {
  color: var(--brand);
}

.cf-sub-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.cf-sub-lead {
  margin: 0.55rem 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.cf-sub-form {
  display: grid;
  gap: 0.65rem;
}

.cf-sub-form input {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
}

.cf-sub-form input:focus {
  outline: 2px solid rgba(13, 148, 136, 0.35);
  border-color: var(--brand);
}

.cf-sub-form button[type="submit"] {
  border: 0;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.cf-sub-form button[type="submit"]:hover:not(:disabled) {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cf-sub-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
}

.cf-sub-status {
  min-height: 1.25rem;
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.cf-sub-status.is-ok {
  color: var(--brand-deep);
  font-weight: 600;
}

.cf-sub-status.is-error {
  color: #b91c1c;
  font-weight: 600;
}

.cf-sub-skip {
  display: block;
  margin: 0.75rem auto 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cf-sub-skip:hover {
  color: var(--ink-soft);
}

.cf-sub-note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.cf-sub-note a {
  color: var(--brand-deep);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .cf-sub-overlay,
  .cf-sub-dialog {
    animation: none;
  }
}

