/* ============================================================
   SkySpin Kites — Premium WhatsApp Kite Store
   Mobile-first stylesheet
   ============================================================ */

:root {
  --sky: #0ea5e9;
  --sky-600: #0284c7;
  --sky-deep: #0369a1;
  --indigo: #6366f1;
  --violet: #8b5cf6;
  --pink: #ec4899;
  --orange: #f97316;
  --amber: #f59e0b;
  --green: #22c55e;
  --red: #ef4444;
  --wa: #25d366;
  --wa-dark: #1eb857;
  --ink: #0f1b33;
  --ink-2: #33415c;
  --body: #52627c;
  --muted: #8b98ad;
  --line: #e9eef5;
  --bg-soft: #f6f9fd;
  --white: #ffffff;
  --pri-grad: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  --fiery-grad: linear-gradient(135deg, #ff5f6d 0%, #ffa751 100%);
  --wa-grad: linear-gradient(135deg, #2ee066 0%, #1eb857 100%);
  --shadow-sm: 0 2px 10px rgba(15, 42, 98, 0.06);
  --shadow: 0 10px 30px rgba(15, 42, 98, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 42, 98, 0.16);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 30px;
  --font-display: "Fredoka", "Poppins", sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

input,
button {
  font-family: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  will-change: transform;
}

.btn:active {
  transform: scale(0.97);
}

.btn svg {
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--pri-grad);
  color: #fff;
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.45);
}

.btn-whatsapp {
  background: var(--wa-grad);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--sky-600);
  border: 2px solid rgba(14, 165, 233, 0.45);
}

.btn-outline:hover {
  background: rgba(14, 165, 233, 0.08);
  border-color: var(--sky);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13.5px;
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 238, 245, 0.9);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 8px 30px rgba(15, 42, 98, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: var(--pri-grad);
  border-radius: 13px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.4);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-accent {
  background: var(--fiery-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: none;
}

.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  padding: 8px 2px;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--fiery-grad);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--sky-600);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--ink-2);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.icon-btn:hover {
  background: var(--bg-soft);
  color: var(--sky-600);
}

.search-toggle,
.cart-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--ink-2);
  transition: background 0.2s ease, color 0.2s ease;
}

.search-toggle:hover,
.cart-toggle:hover {
  background: var(--bg-soft);
  color: var(--sky-600);
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--fiery-grad);
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(255, 95, 109, 0.45);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.cart-toggle {
  position: relative;
}

.cart-badge.show {
  transform: scale(1);
}

.bump {
  animation: bump 0.35s ease;
}

@keyframes bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.header-whatsapp {
  padding: 11px 20px;
  font-size: 14px;
  margin-left: 4px;
}

.hamburger {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
  border-radius: 13px;
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: var(--bg-soft);
}

.hamburger span {
  width: 20px;
  height: 2.5px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--white);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 22px 44px rgba(15, 42, 98, 0.16);
  padding: 16px 20px 22px;
}

.mobile-nav.show {
  display: block;
}

.mobile-nav .nav-list {
  display: flex;
  flex-direction: column;
}

.mobile-nav .nav-link {
  padding: 13px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav .nav-link::after {
  display: none;
}

.mobile-nav .mobile-wa {
  margin-top: 16px;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(15, 27, 51, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 985;
  backdrop-filter: blur(2px);
}

.mobile-nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--white);
  z-index: 1100;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 26px rgba(15, 42, 98, 0.12);
}

.search-overlay.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-overlay-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  padding: 8px 0;
}

.search-input::placeholder {
  color: var(--muted);
}

.search-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--ink-2);
  transition: background 0.2s ease;
}

.search-close:hover {
  background: var(--bg-soft);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(59, 182, 243, 0.9) 0%, rgba(125, 211, 252, 0.72) 45%, rgba(224, 242, 254, 0.86) 80%, var(--bg-soft) 100%),
    url("../images/hero-kites.jpg") center 30% / cover no-repeat;
  overflow: hidden;
  padding: 84px 0 96px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sun-glow {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 180, 0.9) 0%, rgba(255, 214, 100, 0.35) 45%, transparent 70%);
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  filter: blur(1px);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.c1 {
  width: 150px;
  height: 46px;
  top: 18%;
  left: -60px;
  animation: drift 40s linear infinite;
}

.c2 {
  width: 210px;
  height: 60px;
  top: 46%;
  right: -80px;
  animation: drift 56s linear infinite reverse;
}

.c3 {
  width: 120px;
  height: 38px;
  top: 8%;
  right: 14%;
  animation: drift 34s linear infinite;
}

.cloud::before {
  width: 60%;
  height: 180%;
  top: -90%;
  left: 16%;
}

.cloud::after {
  width: 42%;
  height: 140%;
  top: -60%;
  right: 14%;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(240px); }
}

.hero-kite {
  position: absolute;
  font-size: 44px;
  filter: drop-shadow(0 14px 20px rgba(15, 42, 98, 0.28));
  line-height: 1;
  animation: sway 6s ease-in-out infinite;
}

.hk1 { top: 16%; left: 8%; font-size: 46px; animation-delay: 0s; transform: rotate(-18deg); }
.hk2 { top: 26%; right: 10%; font-size: 38px; animation-delay: 1.2s; transform: rotate(14deg); }
.hk3 { top: 56%; left: 5%; font-size: 34px; animation-delay: 2.2s; transform: rotate(-10deg); }
.hk4 { top: 68%; right: 5%; font-size: 40px; animation-delay: 0.6s; transform: rotate(16deg); }
.hk5 { top: 8%; right: 38%; font-size: 30px; animation-delay: 3s; transform: rotate(-8deg); }

@keyframes sway {
  0%, 100% { transform: translateY(0) rotate(var(--rot, -12deg)); }
  50% { transform: translateY(-18px) rotate(var(--rot, -12deg)); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-deep);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(34px, 7vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #05334f;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.35);
}

.hero-title .grad-text {
  background: linear-gradient(120deg, #ff5f6d, #ff8a3d, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-text {
  margin: 18px auto 30px;
  font-size: 16.5px;
  max-width: 560px;
  color: #075985;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 38px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #064e6b;
}

.trust-item span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Sections ---------- */
.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.section-badge {
  display: inline-block;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sky-600);
  background: rgba(14, 165, 233, 0.1);
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-badge.badge-fire {
  color: #c2410c;
  background: rgba(249, 115, 22, 0.12);
}

.section-title {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.section-text {
  font-size: 15.5px;
  color: var(--body);
}

/* ---------- Categories ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-card:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

.category-img {
  position: relative;
  height: 120px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.category-img::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  filter: blur(8px);
}

.cat-emoji {
  font-size: 52px;
  filter: drop-shadow(0 8px 10px rgba(15, 42, 98, 0.22));
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.category-card:hover .cat-emoji {
  transform: translateY(-6px) rotate(-6deg) scale(1.08);
}

.category-info {
  padding: 16px 14px 18px;
}

.category-info h3 {
  font-size: 17px;
  margin-bottom: 3px;
}

.category-info p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 34px;
}

.filter-btn {
  padding: 9px 18px;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 999px;
  color: var(--ink-2);
  background: #fff;
  border: 1.5px solid var(--line);
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--sky);
  color: var(--sky-600);
}

.filter-btn.active {
  background: var(--pri-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.35);
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card.hide {
  display: none;
}

.product-thumb {
  position: relative;
  display: block;
  padding: 20px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f7ff 0%, #f8fbff 60%, #fff 100%);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(15, 42, 98, 0.2);
}

.badge-bestseller { background: var(--fiery-grad); }
.badge-new { background: var(--pri-grad); }
.badge-limited { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.badge-popular { background: linear-gradient(135deg, #10b981, #22c55e); }

.quickview-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%, 14px);
  z-index: 2;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 42, 98, 0.2);
  opacity: 0;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.product-card:hover .quickview-btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-info {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sky-600);
}

.product-name {
  font-size: 19px;
  font-weight: 600;
}

.product-desc {
  font-size: 13.5px;
  color: var(--body);
  min-height: 40px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 2px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

.product-unit {
  font-size: 12.5px;
  color: var(--muted);
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 3px;
  flex-shrink: 0;
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--sky-600);
  border-radius: 9px;
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: rgba(14, 165, 233, 0.12);
}

.qty-input {
  width: 38px;
  height: 32px;
  border: none;
  outline: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-cart-btn {
  flex: 1;
  padding: 11px 14px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: var(--pri-grad);
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.3);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(14, 165, 233, 0.4);
}

.add-cart-btn:active {
  transform: scale(0.97);
}

.no-results {
  text-align: center;
  padding: 50px 20px;
  color: var(--muted);
}

.no-results-icon {
  font-size: 54px;
  margin-bottom: 10px;
}

.no-results h3 {
  color: var(--ink);
  margin-bottom: 4px;
}

/* ---------- Offers ---------- */
.offers {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 244, 230, 0.88) 100%),
    url("../images/offers-bg.jpg") center / cover no-repeat;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.offer-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.offer-card::before {
  content: "🪁";
  position: absolute;
  font-size: 120px;
  opacity: 0.16;
  bottom: -24px;
  right: -18px;
  transform: rotate(-20deg);
}

.offer-1 {
  background: linear-gradient(135deg, #ff5f6d, #ff8a3d);
}

.offer-2 {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.offer-3 {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.offer-tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  margin-bottom: 14px;
}

.offer-card h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 6px;
}

.offer-price {
  font-size: 15px;
  opacity: 0.94;
  margin-bottom: 10px;
}

.offer-price strong {
  font-size: 24px;
  font-family: var(--font-display);
}

.offer-desc {
  font-size: 13.5px;
  opacity: 0.88;
  margin-bottom: 22px;
  min-height: 38px;
}

.offer-card .btn-whatsapp {
  background: #fff;
  color: #0f3a1e;
  box-shadow: none;
  font-weight: 700;
}

.offer-card .btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

/* ---------- Why choose us ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-size: 30px;
  background: linear-gradient(135deg, #e0f2fe, #eef2ff);
  border-radius: 18px;
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #d1fae5, #ecfdf5);
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #fff1cf, #fff7ed);
}

.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #fce7f3, #fdf4ff);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--body);
}

/* ---------- Festival banner ---------- */
.festival {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 84px 0;
}

.festival-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 213, 79, 0.5) 0%, transparent 42%),
    radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.52) 0%, transparent 45%),
    radial-gradient(circle at 60% 90%, rgba(34, 211, 238, 0.4) 0%, transparent 45%),
    linear-gradient(135deg, rgba(49, 46, 129, 0.9) 0%, rgba(109, 40, 217, 0.86) 45%, rgba(190, 24, 93, 0.9) 100%),
    url("../images/festival-bg.jpg") center / cover no-repeat;
}

.festival-bg::after {
  content: "🪁";
  position: absolute;
  font-size: 150px;
  opacity: 0.14;
  top: -30px;
  left: 6%;
  transform: rotate(-18deg);
}

.festival-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}

.festival-title {
  color: #fff;
  font-size: clamp(30px, 5vw, 46px);
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.festival-text {
  font-size: 16px;
  opacity: 0.92;
  margin-bottom: 28px;
}

/* ---------- How to order ---------- */
.steps-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  width: 100%;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: var(--fiery-grad);
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(255, 95, 109, 0.4);
}

.step-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--body);
}

.step-arrow {
  font-size: 26px;
  color: var(--sky);
  transform: rotate(90deg);
}

/* ---------- Reviews ---------- */
.reviews {
  background: linear-gradient(180deg, #fff 0%, #f0f7ff 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.review-stars {
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--ink-2);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  background: var(--pri-grad);
  border-radius: 50%;
}

.review-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
}

.review-author span {
  font-size: 12.5px;
  color: var(--muted);
}

.reviews-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}

.reviews-note small {
  display: block;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}

.faq-item.open {
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  text-align: left;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--sky-600);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--body);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-size: 30px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 18px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 6px;
}

.contact-card .btn {
  margin-top: 12px;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #0b1e3f 0%, #0f1b33 100%);
  color: #a8b8d4;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 14px;
  color: #6f82a3;
  font-size: 14px;
}

.footer .logo-text {
  color: #fff;
}

.footer h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14.5px;
  transition: color 0.2s ease, padding 0.2s ease;
}

.footer-links a:hover {
  color: #7dd3fc;
  padding-left: 4px;
}

.footer-wa p {
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(168, 184, 212, 0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 13.5px;
  color: #6f82a3;
}

.footer-credits {
  margin: 10px auto 0;
  max-width: 760px;
  font-size: 11.5px;
  line-height: 1.7;
  color: #55688a;
}

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 940;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--wa-grad);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: pulse-ring 2.4s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-6px) rotate(-6deg) scale(1.06);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  position: relative;
  z-index: 1;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Cart ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 51, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1300;
}

.cart-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  z-index: 1310;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(15, 42, 98, 0.2);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.cart-header h3 {
  font-size: 20px;
}

.cart-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ink-2);
  transition: background 0.2s ease;
}

.cart-close:hover {
  background: var(--bg-soft);
  color: var(--red);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: var(--muted);
}

.cart-empty-icon {
  font-size: 64px;
}

.cart-empty p {
  font-weight: 600;
  color: var(--ink-2);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  padding: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h4 {
  font-size: 15px;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-price {
  font-size: 13px;
  color: var(--muted);
}

.cart-item-subtotal {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 17px;
  color: var(--muted);
  border-radius: 9px;
  transition: all 0.2s ease;
}

.cart-item-remove:hover {
  color: var(--red);
  background: rgba(239, 68, 68, 0.1);
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 3px 6px;
  margin-top: 6px;
}

.cart-qty button {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--sky-600);
  border-radius: 7px;
  transition: background 0.2s ease;
}

.cart-qty button:hover {
  background: rgba(14, 165, 233, 0.12);
}

.cart-qty .qty-val {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.cart-footer {
  padding: 20px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart-total span {
  font-size: 15px;
  color: var(--body);
}

.cart-total strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
}

.cart-msg {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 51, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--white);
  border-radius: 26px;
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal-overlay.show .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: var(--red);
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr;
}

.modal-image {
  background: linear-gradient(180deg, #eaf5ff 0%, #f8fbff 100%);
  display: grid;
  place-items: center;
  padding: 30px;
}

.modal-image img {
  max-height: 320px;
  object-fit: contain;
}

.modal-info {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-cat {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sky-600);
}

.modal-title {
  font-size: 28px;
}

.modal-price {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
}

.modal-desc {
  font-size: 14.5px;
  color: var(--body);
}

.modal-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-pill {
  padding: 6px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.modal-actions .add-cart-btn {
  flex: 1;
}

/* ---------- Toasts ---------- */
.toast-container {
  position: fixed;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 40px);
  max-width: 400px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: linear-gradient(135deg, #059669, #25d366);
}

.toast.whatsapp-toast {
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.toast-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 13px;
}

.toast a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}

/* ---------- Animations (reveal on scroll) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (min-width: 560px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  :root {
    --header-h: 80px;
  }

  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }

  .step-card {
    max-width: 300px;
  }

  .step-arrow {
    transform: rotate(0);
    align-self: center;
    font-size: 24px;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
  }

  .category-img {
    height: 150px;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 26px;
  }

  .mobile-nav,
  .mobile-nav-overlay,
  .hamburger {
    display: none;
  }

  .header-whatsapp {
    display: inline-flex;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    padding: 110px 0 130px;
  }

  .modal-body {
    grid-template-columns: 1fr 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 599px) {
  .header-whatsapp {
    width: 44px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    justify-content: center;
  }

  .header-whatsapp svg {
    flex: 0 0 auto;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .hero-kite {
    font-size: 30px;
  }

  .hk1 { top: 12%; left: 4%; }
  .hk3 { top: 52%; left: 2%; }
  .hk4 { top: 64%; right: 3%; }
  .hk5 { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- Focus visibility ---------- */
:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
  border-radius: 6px;
}