/* ==========================================================================
   HIYOO — Pipe Cleaner Flowers Kits
   Mobile-first stylesheet
   ========================================================================== */

:root {
  /* Soft neutral base palette — calm, warm off-white */
  --cream: #FBF8F2;
  --cream-deep: #F4EFE5;
  --peach: #F0E8D8;
  --line: #E8E1D2;
  --white: #FFFFFF;

  /* Hiyoo brand accents (from logo, slightly muted for sophistication) */
  --orange: #E89A2C;        /* logo "h" */
  --green:  #2BA84A;        /* logo "i" */
  --purple: #6E5BD3;        /* logo "y" */
  --red:    #E54545;        /* logo "o" */

  /* Soft tints used as backgrounds, kit thumbs, hover states */
  --orange-soft: #F8E6C2;
  --green-soft:  #D8EBD0;
  --purple-soft: #DED7F2;
  --red-soft:    #F6D7D7;

  /* Primary accent — used for CTAs, links, highlights */
  --coral: #E54545;         /* alias used in code → maps to brand red */
  --pink: #DED7F2;          /* alias → maps to soft purple */
  --pink-deep: #6E5BD3;     /* alias → brand purple */
  --sage: #D8EBD0;          /* alias → soft green */
  --sage-deep: #2BA84A;     /* alias → brand green */
  --yellow: #F8E6C2;        /* alias → soft orange */
  --lavender: #DED7F2;      /* alias → soft purple */

  --ink: #1F1A17;
  --ink-soft: #4A3F38;
  --muted: #8C7B6E;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(31, 26, 23, 0.06);
  --shadow-md: 0 10px 30px rgba(31, 26, 23, 0.08);
  --shadow-lg: 0 18px 50px rgba(31, 26, 23, 0.12);

  --container: 1240px;
  --gutter: 24px;

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Nunito", "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 4.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #2c2521; }
.btn-secondary {
  background: var(--coral);
  color: var(--white);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #ff7a63; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Top announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 10px var(--gutter);
}
.announce span { opacity: .9; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 106px;
  gap: 16px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand-logo {
  display: block;
  height: 92px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform .2s ease;
}
.brand:hover .brand-logo { transform: scale(1.04); }
.site-footer .brand-logo { height: 92px; }
@media (min-width: 960px) {
  .brand-logo { height: 92px; }
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 2px;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
}
.nav-cta { display: none; }
.menu-toggle {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-deep);
  display: inline-flex;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  position: relative;
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, top .25s ease;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 106px 0 0 0;
  background: var(--cream);
  padding: 24px var(--gutter) 40px;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 40;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 18px 4px;
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; width: 100%; }

@media (min-width: 960px) {
  .nav-links, .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 88px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(232, 154, 44, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(110, 91, 211, 0.06) 0%, transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}
.hero::before { width: 320px; height: 320px; background: var(--purple-soft); top: -100px; right: -80px; }
.hero::after  { width: 280px; height: 280px; background: var(--green-soft); bottom: -100px; left: -80px; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--coral) 0%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
}
.hero-stats .stat span { font-size: .85rem; color: var(--muted); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-visual .hero-cols {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-visual .hero-col {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.hero-visual .hero-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual .badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
}
.hero-visual .badge .ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.hero-visual .badge strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.hero-visual .badge span { font-size: .8rem; color: var(--muted); }

@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}

/* ---------- Section base ---------- */
.section {
  padding: 88px 0;
  position: relative;
}
.section-tight { padding: 48px 0; }
.section + .section,
.section + .testimonials,
.testimonials + .section {
  padding-top: 72px;
}
/* Soft fade between sections of differing tint */
.section.tint,
.testimonials,
.site-footer {
  position: relative;
}
.section.tint::before,
.testimonials::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(180deg, var(--cream) 0%, transparent 100%);
  opacity: .6;
  pointer-events: none;
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--cream-deep);
  color: var(--ink);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 16s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink-soft);
  will-change: transform;
}
@media (min-width: 880px) {
  .strip-track { animation-duration: 30s; }
}
.strip-track span { display: inline-flex; align-items: center; gap: 56px; }
.strip-track .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; opacity: .7; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Kit cards grid ---------- */
.kits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .kits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .kits-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .kits-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; } }

.kit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.kit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.kit-thumb {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.kit-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.kit-card:hover .kit-thumb img { transform: scale(1.06); }
.kit-thumb.bg-pink   { background: var(--red-soft); }
.kit-thumb.bg-peach  { background: var(--orange-soft); }
.kit-thumb.bg-sage   { background: var(--green-soft); }
.kit-thumb.bg-yellow { background: var(--orange-soft); }
.kit-thumb.bg-lav    { background: var(--purple-soft); }
.kit-thumb.bg-cream  { background: var(--cream-deep); }
.kit-thumb.bg-coral  { background: var(--red-soft); }
.kit-thumb.bg-mint   { background: var(--green-soft); }

.kit-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.kit-tag.new { background: var(--orange); color: var(--white); }
.kit-tag.beginner { background: var(--green); color: var(--white); }

.kit-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.kit-body h3 { margin: 0; font-size: 1.25rem; }
.kit-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
}
.kit-meta .stars { color: #F2B23A; letter-spacing: 1px; }
.kit-foot {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kit-level {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--cream-deep);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.kit-link {
  font-weight: 800;
  font-size: .9rem;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.kit-link:hover { gap: 10px; transition: gap .2s ease; }

/* ---------- How it works ---------- */
.how {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 28px;
  box-shadow: var(--shadow-sm);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 760px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }
.step {
  text-align: center;
  padding: 0 8px;
  position: relative;
}
.step-icon {
  width: 96px; height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.step:nth-child(1) .step-icon { background: var(--orange-soft); color: var(--orange); }
.step:nth-child(2) .step-icon { background: var(--purple-soft); color: var(--purple); }
.step:nth-child(3) .step-icon { background: var(--green-soft); color: var(--green); }
.step-num {
  position: absolute;
  top: -10px; right: -10px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Feature split ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 880px) { .feature { grid-template-columns: 1fr 1fr; gap: 64px; } }
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--purple-soft) 0%, var(--orange-soft) 100%);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.feature-visual.green {
  background: linear-gradient(135deg, var(--green-soft) 0%, var(--orange-soft) 100%);
  color: var(--green);
}
.feature-text h2 .em {
  background: linear-gradient(120deg, var(--orange) 0%, var(--red) 55%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* Stand-alone eyebrow (used outside .section-head, e.g. in feature blocks) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--red) 100%);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-head .eyebrow { display: inline-block; gap: 0; padding: 0; }
.section-head .eyebrow::before { display: none; }

/* Feature sections — extra polish */
.feature-text .eyebrow { margin-bottom: 22px; }
.feature-text h2 { margin-bottom: 20px; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.feature-text > p:not(.feature-list p) { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; }
.feature-list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "✿";
  color: var(--coral);
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 25%, var(--cream-deep) 75%, var(--cream) 100%);
  padding: 96px 0;
}
.tcard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) { .tcard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .tcard-grid { grid-template-columns: repeat(3, 1fr); } }
.tcard {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tcard .stars { color: #F2B23A; font-size: 1.1rem; letter-spacing: 2px; }
.tcard blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
}
.tcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--white);
}
.avatar.a1 { background: var(--orange); }
.avatar.a2 { background: var(--green); }
.avatar.a3 { background: var(--purple); }
.avatar.a4 { background: var(--red); }
.tcard .who strong { display: block; font-size: .95rem; }
.tcard .who span { font-size: .8rem; color: var(--muted); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "✿";
  position: absolute;
  font-size: 14rem;
  color: var(--orange);
  opacity: .12;
  top: -40px; right: -30px;
  font-family: var(--font-display);
}
.newsletter::after {
  content: "❀";
  position: absolute;
  font-size: 11rem;
  color: var(--purple);
  opacity: .14;
  bottom: -40px; left: -10px;
}
.newsletter h2 { color: var(--cream); }
.newsletter p { color: rgba(255,244,228,.78); max-width: 520px; margin: 0 auto 28px; }
.subscribe {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.subscribe input {
  width: 100%;
  padding: 16px 22px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}
.subscribe input::placeholder { color: var(--muted); }
.subscribe .btn { width: 100%; }
@media (min-width: 560px) {
  .subscribe { flex-direction: row; }
  .subscribe input { padding-right: 160px; }
  .subscribe .btn { position: absolute; right: 6px; top: 6px; bottom: 6px; width: auto; padding: 0 24px; }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1080px) { .gallery-grid { grid-template-columns: repeat(6, 1fr); } }
.gtile {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  transition: transform .25s ease;
}
.gtile:hover { transform: scale(1.05); }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 80px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; } }
.footer-brand p {
  color: var(--ink-soft);
  font-size: .92rem;
  max-width: 280px;
  margin-top: 16px;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background .2s ease, color .2s ease;
}
.socials a:hover { background: var(--coral); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--ink-soft); font-size: .95rem; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: .85rem;
}

/* ==========================================================================
   KIT DETAIL PAGE
   ========================================================================== */
.detail-hero {
  padding: 40px 0 56px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.crumbs {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 600;
}
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--coral); }
.crumbs .sep { margin: 0 8px; opacity: .5; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 920px) { .detail-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; } }

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detail-main-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.detail-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.thumbs button {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 2px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.thumbs button:hover { transform: translateY(-2px); }
.thumbs button.is-active { border-color: var(--ink); }

.detail-info .label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.detail-info h1 { margin-bottom: 14px; }
.rating-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  font-size: .95rem;
  color: var(--ink-soft);
}
.rating-row .stars { color: #F2B23A; letter-spacing: 1px; }
.detail-info .desc { color: var(--ink-soft); font-size: 1.02rem; }

.specs {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.spec {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.spec .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--cream-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.spec strong { display: block; font-size: .92rem; }
.spec span { font-size: .78rem; color: var(--muted); }

.includes {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 20px 0 28px;
}
.includes h3 { font-size: 1.05rem; margin-bottom: 14px; }
.includes ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.includes li {
  display: flex; gap: 8px; align-items: center;
  font-size: .92rem;
  color: var(--ink-soft);
}
.includes li::before { content: "✓"; color: var(--sage-deep); font-weight: 800; }

/* ---------- Tabs / video tutorial ---------- */
.tutorial-section {
  padding: 56px 0 80px;
}
.tabs-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  padding-bottom: 4px;
}
.tab-btn {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease;
}
.tab-btn:hover { background: var(--cream-deep); }
.tab-btn.is-active { background: var(--ink); color: var(--cream); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.steps-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) { .steps-list { grid-template-columns: 1fr 1fr; } }
.step-row {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.step-row .num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.step-row h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step-row p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Filters ---------- */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.chip {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover { border-color: var(--coral); color: var(--coral); }
.chip.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- About page ---------- */
.about-hero {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
  text-align: center;
}
.about-hero h1 { max-width: 800px; margin: 0 auto 16px; }
.about-hero p { max-width: 620px; margin: 0 auto; color: var(--ink-soft); font-size: 1.1rem; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-card .ic {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.value-card:nth-child(1) .ic { background: var(--orange-soft); color: var(--orange); }
.value-card:nth-child(2) .ic { background: var(--red-soft); color: var(--red); }
.value-card:nth-child(3) .ic { background: var(--purple-soft); color: var(--purple); }
.value-card:nth-child(4) .ic { background: var(--green-soft); color: var(--green); }
.value-card h3 { font-size: 1.15rem; }
.value-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   COMMUNITY (Sizden Gelenler) PAGE
   ========================================================================== */
.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px)  { .community-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .community-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.community-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.community-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.community-card .photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.community-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.community-card:hover .photo img { transform: scale(1.04); }
.community-card .photo .badge-new {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: var(--shadow-sm);
}
.community-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.community-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}
.community-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.community-card .who .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  flex-shrink: 0;
}
.community-card .who .av.c1 { background: var(--orange); }
.community-card .who .av.c2 { background: var(--green); }
.community-card .who .av.c3 { background: var(--purple); }
.community-card .who .av.c4 { background: var(--red); }
.community-card .who strong { display: block; font-size: .92rem; }
.community-card .who span { font-size: .78rem; color: var(--muted); }

/* ---------- Submission Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal[hidden] { display: none; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 23, 0.55);
  backdrop-filter: blur(4px);
  animation: fadeIn .2s ease;
}
.modal-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  max-width: 540px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  z-index: 1;
  animation: modalIn .25s cubic-bezier(.2,.9,.3,1.1);
}
@keyframes modalIn {
  from { transform: translateY(24px) scale(.97); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream-deep);
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .15s ease;
}
.modal-close:hover { background: var(--white); transform: rotate(90deg); }
.modal-card h2 { margin-bottom: 8px; font-size: 1.6rem; }
.modal-card > p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 20px; }

#submitForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.file-drop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  background: var(--white);
  min-height: 160px;
  overflow: hidden;
}
.file-drop:hover { border-color: var(--orange); background: var(--cream); }
.file-drop.has-image { padding: 0; border-style: solid; min-height: 220px; }
.file-drop-content { display: flex; flex-direction: column; gap: 6px; align-items: center; pointer-events: none; }
.file-drop-content .ic { font-size: 1.9rem; }
.file-drop-content strong { font-size: .98rem; }
.file-drop-content span { font-size: .78rem; color: var(--muted); }
.file-drop img,
.file-drop video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
}
.file-drop img[hidden],
.file-drop video[hidden] { display: none !important; }
.file-drop.has-image .file-drop-content,
.file-drop.has-video .file-drop-content { display: none; }
.file-drop.has-image,
.file-drop.has-video { padding: 0; border-style: solid; min-height: 220px; }

/* ---------- Star rating (form) ---------- */
.star-rating {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 4px 0 2px;
}
.star-rating .star {
  font-size: 1.9rem;
  line-height: 1;
  color: var(--line);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 2px;
  transition: transform .12s ease, color .12s ease;
}
.star-rating .star:hover { transform: scale(1.18); }
.star-rating .star.is-filled { color: #F2B23A; }
.star-rating-label {
  margin-left: auto;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
}

/* ---------- Star display (cards) ---------- */
.community-card .stars-display {
  color: #F2B23A;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.community-card .stars-display .empty { color: var(--line); }
.community-card .photo video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: var(--cream-deep);
}
.community-card .photo .video-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(31,26,23,.78);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

#submitForm input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: .95rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
#submitForm input[type="email"]::placeholder { color: var(--muted); }
#submitForm input[type="email"]:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 154, 44, 0.15);
}

#submitForm input[type="text"],
#submitForm textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: .95rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color .15s ease, box-shadow .15s ease;
}
#submitForm input[type="text"]::placeholder,
#submitForm textarea::placeholder { color: var(--muted); }
#submitForm input[type="text"]:focus,
#submitForm textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 154, 44, 0.15);
}
#submitForm textarea { min-height: 110px; line-height: 1.5; }

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 6px;
}
.modal-actions .btn { flex: 1; }

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  font-weight: 700;
  font-size: .92rem;
  max-width: 90vw;
  text-align: center;
  animation: toastIn .25s ease, toastOut .3s ease 3.8s forwards;
}
.toast.toast-error { background: var(--red); }
.toast.toast-success { background: var(--green); }
@keyframes toastIn { from { transform: translateX(-50%) translateY(20px); opacity: 0; } to { transform: translateX(-50%); opacity: 1; } }
@keyframes toastOut { to { transform: translateX(-50%) translateY(20px); opacity: 0; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hide-sm { display: none; }
@media (min-width: 760px) { .hide-sm { display: block; } }
