/* =========================================================
   KITE STORE — Premium Indian Kite Shop
   ========================================================= */

:root {
  --ink: #0b2b45;
  --ink-soft: #22466b;
  --deep: #123a5c;
  --sky: #57b6ff;
  --sky-strong: #2f9bff;
  --sky-pale: #d9f1ff;
  --sky-mist: #eef9ff;
  --yellow: #ffd93b;
  --amber: #ffb020;
  --orange: #ff6a3d;
  --pink: #ff5f9e;
  --purple: #7a3bf0;
  --purple-soft: #a05cff;
  --teal: #22c1a3;
  --wa: #25d366;
  --wa-dark: #128c7e;
  --wa-deep: #1ebe5d;
  --green-ok: #16a34a;
  --green-bg: #e8f9ee;
  --red-off: #e11d48;
  --red-bg: #fdeef1;
  --amber-lim: #b45309;
  --amber-bg: #fdf3e3;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 14px rgba(11, 43, 69, 0.08);
  --shadow-md: 0 12px 30px rgba(11, 43, 69, 0.14);
  --shadow-lg: 0 22px 50px rgba(11, 43, 69, 0.2);
  --font-head: "Baloo 2", "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff3d47 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 90, 61, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(255, 90, 61, 0.45);
}

.btn-wa {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}
.btn-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.4);
}
.btn-wa:active { transform: scale(0.98); }
.btn-block { width: 100%; }
.btn.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-outline {
  background: #fff;
  color: var(--deep);
  border: 2px solid rgba(11, 43, 69, 0.18);
}
.btn-outline:hover {
  border-color: var(--sky-strong);
  background: var(--sky-mist);
  transform: translateY(-3px);
}

.btn-ghost {
  background: var(--sky-mist);
  color: var(--deep);
  border: 1.5px solid rgba(11, 43, 69, 0.14);
  font-size: 13.5px;
  padding: 11px 16px;
}
.btn-ghost:hover {
  background: var(--sky-pale);
  border-color: var(--sky-strong);
  color: var(--sky-strong);
  transform: translateY(-2px);
}

.text-link { color: var(--sky-strong); font-weight: 600; }
.text-link:hover { color: var(--orange); }

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--sky-mist);
  border-radius: 12px;
  border: 2px solid rgba(47, 155, 255, 0.18);
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1;
}
.logo-text em { font-style: normal; color: var(--orange); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 43, 69, 0.08);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled { box-shadow: 0 8px 26px rgba(11, 43, 69, 0.12); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--sky-strong); background: var(--sky-mist); }

.btn-nav-cta { padding: 10px 18px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2.6px;
  background: var(--ink);
  border-radius: 4px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1200px 520px at 85% -10%, rgba(255, 217, 59, 0.35), transparent 60%),
    radial-gradient(900px 500px at 8% 110%, rgba(160, 92, 255, 0.22), transparent 55%),
    linear-gradient(175deg, #3fa3ff 0%, #7cc8ff 42%, #d9f1ff 78%, #eef9ff 100%);
}

.hero::before { /* subtle sun glow */
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 224, 102, 0.75), rgba(255, 224, 102, 0) 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 5;
  padding-block: 90px 70px;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(11, 43, 69, 0.12);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(46px, 8.5vw, 92px);
  line-height: 0.98;
  color: var(--ink);
  letter-spacing: 0.01em;
  text-shadow: 0 4px 22px rgba(255, 255, 255, 0.5);
}
.grad-text {
  background: linear-gradient(100deg, var(--orange) 5%, #ff3d47 35%, var(--purple-soft) 65%, var(--sky-strong) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin: 22px auto 0;
  max-width: 560px;
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 500;
  color: var(--deep);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 14px;
  color: var(--deep);
  opacity: 0.85;
}
.hero-strip i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* Hero clouds */
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  z-index: 1;
  pointer-events: none;
  filter: blur(0.5px);
}
.cloud::before, .cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.cloud-1 { width: 150px; height: 40px; top: 12%; left: -160px; animation: drift 46s linear infinite; }
.cloud-1::before { width: 70px; height: 70px; top: -32px; left: 22px; }
.cloud-1::after  { width: 50px; height: 50px; top: -22px; right: 26px; }

.cloud-2 { width: 190px; height: 46px; top: 70%; left: -220px; animation: drift 62s linear infinite; animation-delay: -18s; }
.cloud-2::before { width: 86px; height: 86px; top: -40px; left: 30px; }
.cloud-2::after  { width: 56px; height: 56px; top: -24px; right: 30px; }

.cloud-3 { width: 130px; height: 36px; top: 8%; left: -140px; animation: drift 54s linear infinite; animation-delay: -30s; }
.cloud-3::before { width: 60px; height: 60px; top: -28px; left: 20px; }
.cloud-3::after  { width: 44px; height: 44px; top: -20px; right: 22px; }

.cloud-4 { width: 170px; height: 42px; top: 40%; left: -180px; animation: drift 72s linear infinite; animation-delay: -10s; animation-duration: 72s; }
.cloud-4::before { width: 76px; height: 76px; top: -36px; left: 26px; }
.cloud-4::after  { width: 52px; height: 52px; top: -22px; right: 26px; }

@keyframes drift {
  0%   { transform: translateX(-12vw); }
  50%  { transform: translateX(24vw); }
  100% { transform: translateX(64vw); }
}

/* Hero kites */
.hero-kite {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 14px 16px rgba(11, 43, 69, 0.18));
  animation: floaty 6s var(--ease) infinite;
}
.hero-kite img { width: 100%; height: auto; }
.kite-a { width: clamp(90px, 12vw, 160px); top: 12%; left: 6%; animation-delay: 0s; }
.kite-b { width: clamp(80px, 10vw, 130px); top: 22%; right: 9%; animation-delay: -2s; }
.kite-c { width: clamp(60px, 8vw, 100px); bottom: 16%; left: 14%; animation-delay: -3.4s; }
.kite-d { width: clamp(70px, 9vw, 120px); bottom: 20%; right: 16%; animation-delay: -1.2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-18px) rotate(3deg); }
}

/* ---------- Sections ---------- */
.section { padding-block: 84px; }
.section-kites { background: linear-gradient(180deg, var(--sky-mist) 0%, #ffffff 60%); }
.section-steps { background: var(--deep); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.overline {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 14px;
}
.section-sub { color: var(--ink-soft); font-size: 17px; }
.price-note {
  margin-top: 14px;
  font-size: 13px;
  color: #6a7f94;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

/* ---------- Collections ---------- */
.section-collections { background: var(--white); }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 43, 69, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.c-fighter { background: linear-gradient(150deg, #eafffb, #c9f4ec); }
.c-kids { background: linear-gradient(150deg, #fff7dd, #ffe9a8); }
.c-traditional { background: linear-gradient(150deg, #ffeef3, #ffccdc); }
.c-premium { background: linear-gradient(150deg, #f0ecff, #dcd3ff); }

.collection-visual {
  width: 130px;
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 12px rgba(11, 43, 69, 0.15));
  transition: transform 0.35s var(--ease);
}
.collection-card:hover .collection-visual { transform: translateY(-6px) rotate(-4deg); }
.collection-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.collection-body p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 16px; }
.collection-body .btn { margin-top: auto; padding: 11px 18px; font-size: 14px; }

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-chip {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  border: 2px solid rgba(11, 43, 69, 0.12);
  transition: all 0.22s var(--ease);
}
.filter-chip:hover { border-color: var(--sky-strong); color: var(--sky-strong); transform: translateY(-2px); }
.filter-chip.is-active {
  background: linear-gradient(135deg, var(--sky-strong), var(--purple-soft));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(47, 155, 255, 0.3);
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 43, 69, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  animation: cardIn 0.5s var(--ease) both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eef7ff;
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.07); }

.product-avail {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.product-avail .dot { width: 8px; height: 8px; border-radius: 50%; }
.product-avail.status-available { color: var(--green-ok); }
.product-avail.status-available .dot { background: var(--green-ok); }
.product-avail.status-limited { color: var(--amber-lim); }
.product-avail.status-limited .dot { background: var(--amber); }
.product-avail.status-soldout { color: var(--red-off); }
.product-avail.status-soldout .dot { background: var(--red-off); }

.view-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 10px);
  background: rgba(255, 255, 255, 0.95);
  color: var(--deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.product-card:hover .view-hint,
.product-media:focus-visible .view-hint {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-info {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.product-type {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 5px;
}
.product-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.product-id {
  font-size: 12.5px;
  font-weight: 600;
  color: #8094a8;
  background: var(--sky-mist);
  padding: 4px 10px;
  border-radius: 8px;
}
.product-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
}
.product-card .btn { margin-top: auto; }

.grid-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  text-align: center;
}

/* ---------- Features (why choose us) ---------- */
.section-why { background: var(--sky-mist); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 43, 69, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  font-size: 34px;
  display: inline-block;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.feature-card p { color: var(--ink-soft); font-size: 14.5px; }

/* ---------- How to order ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 34px 28px;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.step-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.12); }
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  color: var(--yellow);
  display: block;
  margin-bottom: 14px;
}
.step-card h3 { font-family: var(--font-head); font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.step-card p { color: rgba(255, 255, 255, 0.82); font-size: 15px; }
.section-steps .section-title,
.section-steps .overline { color: #fff; }
.section-steps .overline { color: var(--yellow); }

/* ---------- Festival banner ---------- */
.festival-banner {
  position: relative;
  overflow: hidden;
  padding-block: 96px;
  text-align: center;
  background: linear-gradient(160deg, #2f9bff 0%, #6cc2ff 55%, #9ad6ff 100%);
}
.festival-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fb-cloud {
  position: absolute;
  width: 200px; height: 52px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  top: 12%;
  animation: drift 60s linear infinite;
}
.fb-cloud::before, .fb-cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.fb-cloud::before { width: 90px; height: 90px; top: -42px; left: 30px; }
.fb-cloud::after  { width: 60px; height: 60px; top: -26px; right: 32px; }
.fc-1 { left: -220px; animation-duration: 55s; }
.fc-2 { top: 64%; left: -260px; animation-duration: 78s; animation-delay: -20s; }

.fb-kite { position: absolute; filter: drop-shadow(0 12px 14px rgba(11, 43, 69, 0.2)); animation: floaty 6s var(--ease) infinite; }
.fb-kite img { width: 100%; }
.fk-1 { width: 120px; top: 12%; left: 8%; }
.fk-2 { width: 90px; top: 58%; right: 12%; animation-delay: -2.4s; }
.fk-3 { width: 70px; top: 16%; right: 26%; animation-delay: -4s; }

.festival-inner { position: relative; z-index: 2; }
.festival-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 24px rgba(11, 43, 69, 0.25);
}
.festival-text {
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 500;
  margin: 12px auto 30px;
  max-width: 520px;
}
.festival-inner .btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--amber));
  color: var(--deep);
  box-shadow: 0 14px 30px rgba(255, 217, 59, 0.4);
}
.festival-inner .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 38px rgba(255, 217, 59, 0.55);
}

/* ---------- About ---------- */
.section-about { background: var(--white); }
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.about-visual { position: relative; }
.about-card-1, .about-card-2 {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--sky-mist);
}
.about-card-1 { width: 78%; }
.about-card-2 {
  position: absolute;
  right: 0;
  bottom: -34px;
  width: 46%;
  animation: floaty 7s var(--ease) infinite;
}
.about-spark {
  position: absolute;
  top: -26px;
  right: 6%;
  font-size: 46px;
  filter: drop-shadow(0 8px 12px rgba(11, 43, 69, 0.2));
  animation: floaty 5s var(--ease) infinite;
}
.about-text p { color: var(--ink-soft); font-size: 16.5px; margin-top: 6px; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.about-badges span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sky-mist);
  color: var(--deep);
  border: 1px solid rgba(47, 155, 255, 0.2);
}

/* ---------- Contact ---------- */
.section-contact { background: var(--sky-mist); }
.contact-wrap { text-align: center; }
.contact-inner { max-width: 620px; margin-inline: auto; }
.contact-inner .section-sub { margin-bottom: 30px; }
.contact-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: #6a7f94;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #dce9f5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-block: 56px 44px;
}
.logo-footer .logo-text { color: #fff; }
.logo-footer .logo-text em { color: var(--yellow); }
.logo-footer .logo-mark { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.15); }
.footer-brand p { margin-top: 16px; color: #a9c3d9; font-size: 15px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; color: #a9c3d9; font-size: 15px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 18px;
  text-align: center;
  font-size: 13.5px;
  color: #8fa9c0;
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--wa), var(--wa-deep));
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: waPulse 3s ease-in-out infinite;
}
.float-wa:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55); }
.float-wa-icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #1da851;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45); }
  50%      { box-shadow: 0 12px 34px rgba(37, 211, 102, 0.65); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Product details modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal.is-open { opacity: 1; pointer-events: auto; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 43, 69, 0.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-panel {
  position: relative;
  width: min(900px, 100%);
  max-height: min(92vh, 740px);
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s var(--ease);
}
.modal.is-open .modal-panel { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease), color 0.2s;
  backdrop-filter: blur(4px);
}
.modal-close:hover { transform: rotate(90deg); color: var(--orange); }

.modal-media { position: relative; background: var(--sky-mist); }
.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
}

.modal-body {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.modal-type {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-soft);
}
.modal-name {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-top: 6px;
}
.modal-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.modal-id {
  font-size: 13px;
  font-weight: 600;
  color: #8094a8;
  background: var(--sky-mist);
  padding: 5px 12px;
  border-radius: 8px;
}
.modal-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  color: var(--orange);
}
.modal-avail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 13px;
  border-radius: 999px;
  margin-top: 14px;
}
.modal-avail .dot { width: 9px; height: 9px; border-radius: 50%; }
.modal-avail.status-available { color: var(--green-ok); background: var(--green-bg); }
.modal-avail.status-available .dot { background: var(--green-ok); }
.modal-avail.status-limited { color: var(--amber-lim); background: var(--amber-bg); }
.modal-avail.status-limited .dot { background: var(--amber); }
.modal-avail.status-soldout { color: var(--red-off); background: var(--red-bg); }
.modal-avail.status-soldout .dot { background: var(--red-off); }

.modal-desc { margin-top: 16px; color: var(--ink-soft); font-size: 15.5px; }

.modal-order { width: 100%; margin-top: auto; padding-top: 26px; }
.modal-note { margin-top: 12px; font-size: 12.5px; color: #8094a8; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    padding: 18px 6%;
    border-bottom: 1px solid rgba(11, 43, 69, 0.1);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.3s;
    overflow-y: auto;
    max-height: calc(100vh - 72px);
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav .nav-link { padding: 14px 18px; font-size: 17px; border-radius: 12px; }
  .btn-nav-cta { margin-top: 8px; justify-content: center; }

  .hero-inner { padding-block: 80px 60px; }
  .about-wrap { grid-template-columns: 1fr; gap: 44px; }
  .about-visual { max-width: 420px; }
}

@media (max-width: 700px) {
  .section { padding-block: 58px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-actions .btn { width: min(100%, 320px); }
  .collection-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature-card { padding: 24px 18px; }
  .feature-card h3 { font-size: 18px; }
  .kite-c { left: 60%; bottom: 8%; }

  .modal-panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
  .modal-media img { aspect-ratio: 4 / 3; }
  .modal-body { padding: 24px 22px 26px; }
  .modal-order { padding-top: 22px; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-info { padding: 13px 13px 15px; }
  .product-type { font-size: 11px; }
  .product-name { font-size: 15.5px; margin-bottom: 9px; }
  .product-meta { margin-bottom: 12px; }
  .product-price { font-size: 19px; }
  .product-id { font-size: 11px; padding: 3px 8px; }
  .product-card .btn { padding: 12px 10px; font-size: 12.5px; }
  .collection-grid { grid-template-columns: 1fr; }
  .float-wa-text { display: none; }
  .float-wa { padding: 13px; border-radius: 50%; }
  .float-wa-icon { width: auto; height: auto; background: none; }
  .hero-strip { font-size: 12.5px; }
  .filter-chip { font-size: 13px; padding: 9px 14px; }
}