:root {
  --primary: #2f33a4;
  --primary-dark: #20267d;
  --accent: #f58220;
  --accent-dark: #df6d0f;
  --text: #111318;
  --muted: #5b6270;
  --border: #e8e8ef;
  --bg: #ffffff;
  --soft: #f7f8fc;
  --soft-indigo: #eef0ff;
  --soft-orange: #fff3e8;
  --success: #1fb874;
  --shadow: 0 12px 28px rgba(25, 30, 85, 0.08);
  --radius: 18px;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2,
.page-header h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.section-head p,
.lead {
  color: var(--muted);
  max-width: 640px;
}

.topbar {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  padding: 10px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 15, 25, 0.06);
}

.site-header.scrolled {
  box-shadow: 0 10px 25px rgba(22, 25, 70, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  font-size: 0.98rem;
  position: relative;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.icon-btn,
.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  cursor: pointer;
}

.icon-btn:hover,
.icon-circle:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.icon-btn svg,
.icon-circle svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
}

.mobile-toggle {
  display: none;
}

.hero {
  padding: 28px 0 10px;
}

.hero-banner {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-banner img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.quick-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.quick-card {
  background: linear-gradient(180deg, #fff, var(--soft));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(29, 34, 99, 0.05);
}

.quick-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
  background: var(--soft-indigo);
}

.quick-card:nth-child(2) span,
.quick-card:nth-child(4) span {
  background: var(--soft-orange);
}

.quick-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.quick-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.banner-strip {
  margin-top: 24px;
  border-radius: 22px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #121741 70%);
}

.banner-strip h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.btn,
.btn-outline,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(245, 130, 32, 0.24);
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--border);
}

.btn-outline:hover,
.btn-light:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.25s ease;
  box-shadow: 0 10px 24px rgba(16, 20, 60, 0.05);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(16, 20, 60, 0.10);
}

.product-image {
  position: relative;
  overflow: hidden;
  background: #fafafa;
}

.product-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.badge,
.badge-soft {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: 999px;
}

.badge {
  background: #ff5c5c;
  color: #fff;
}

.badge-soft {
  background: rgba(47, 51, 164, 0.1);
  color: var(--primary);
}

.product-info {
  padding: 18px;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.product-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 14px;
}

.old-price {
  color: #888d98;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.new-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.discount-tag {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(245, 130, 32, 0.12);
  color: var(--accent-dark);
  font-weight: 700;
}

.card-actions {
  display: flex;
  gap: 10px;
}

.card-actions .btn,
.card-actions .btn-outline {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
}

.feature-panel {
  border-radius: 28px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(47, 51, 164, 0.08), rgba(245, 130, 32, 0.10));
  border: 1px solid rgba(47, 51, 164, 0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
}

.feature-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--soft-indigo), var(--soft-orange));
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 22, 60, 0.04);
}

.stars {
  color: #f5ad20;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.review-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

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

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.review-author strong {
  display: block;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  border-radius: 24px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(17, 22, 61, 0.05);
}

.stat-card:nth-child(1) {
  background: #edf9f2;
}

.stat-card:nth-child(2) {
  background: #eef0ff;
}

.stat-card:nth-child(3) {
  background: #fff1e8;
}

.stat-card:nth-child(4) {
  background: #fff8de;
}

.stat-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--muted);
}

.newsletter {
  border-radius: 30px;
  padding: 44px 32px;
  background: linear-gradient(135deg, rgba(47, 51, 164, 0.08), rgba(245, 130, 32, 0.18));
  text-align: center;
  border: 1px solid rgba(47, 51, 164, 0.08);
}

.newsletter h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 10px;
}

.newsletter p {
  max-width: 720px;
  color: var(--muted);
  margin: 0 auto 22px;
}

.newsletter-form {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  height: 58px;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 0 18px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.page-banner {
  padding: 42px 0 8px;
}

.page-banner-card {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), #151a46 78%);
  color: #fff;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
}

.page-banner-card h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.page-banner-card p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
}

.page-banner-card img {
  border-radius: 22px;
  max-height: 360px;
  width: 100%;
  object-fit: cover;
}

.page-header {
  margin-bottom: 28px;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.kids-highlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  background: linear-gradient(135deg, #fff, var(--soft));
  box-shadow: var(--shadow);
}

.kids-highlight img {
  width: 100%;
  border-radius: 22px;
  max-height: 440px;
  object-fit: cover;
}

.kids-highlight h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.kids-highlight p {
  color: var(--muted);
  margin-bottom: 20px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}

.store-card,
.map-card,
.info-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(18, 22, 60, 0.05);
}

.store-list {
  display: grid;
  gap: 18px;
}

.store-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  transition: 0.2s ease;
}

.store-item:hover {
  border-color: rgba(47, 51, 164, 0.18);
  background: var(--soft);
}

.store-item h3 {
  margin-bottom: 8px;
}

.store-item p,
.store-item li,
.info-card p,
.info-card li {
  color: var(--muted);
}

.store-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: var(--soft-orange);
  color: var(--accent-dark);
}

.map-placeholder {
  height: 100%;
  min-height: 460px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 30%, rgba(245,130,32,0.18) 0 10%, transparent 11%),
    radial-gradient(circle at 70% 25%, rgba(47,51,164,0.16) 0 11%, transparent 12%),
    radial-gradient(circle at 55% 72%, rgba(245,130,32,0.18) 0 9%, transparent 10%),
    linear-gradient(135deg, #f9fbff, #eef1ff);
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.map-grid-line {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,51,164,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,51,164,0.06) 1px, transparent 1px);
  background-size: 70px 70px;
}

.map-road {
  position: absolute;
  background: rgba(47, 51, 164, 0.10);
  border-radius: 999px;
}

.map-road.one {
  width: 130%;
  height: 20px;
  top: 38%;
  left: -10%;
  transform: rotate(12deg);
}

.map-road.two {
  width: 110%;
  height: 18px;
  top: 62%;
  left: -8%;
  transform: rotate(-14deg);
}

.map-road.three {
  width: 18px;
  height: 110%;
  top: -5%;
  left: 42%;
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(245,130,32,0.24);
}

.map-pin::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.map-card-header {
  position: relative;
  z-index: 1;
  max-width: 280px;
  padding: 18px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.6);
}

.site-footer {
  margin-top: 50px;
  background: #101423;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 30px;
  padding: 56px 0 24px;
}

.footer-brand img {
  width: 220px;
  filter: brightness(1.1);
  margin-bottom: 16px;
}

.footer-brand p,
.footer-list a,
.footer-list li {
  color: rgba(255,255,255,0.72);
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col h3 {
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.76);
}

.payment-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.payment-icons span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  text-align: center;
  padding: 10px 8px;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.28);
  z-index: 100;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.spacer-16 { margin-top: 16px; }
.spacer-24 { margin-top: 24px; }
.center { text-align: center; }
.hidden-desktop { display: none; }

@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews, .feature-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-categories { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .navbar {
    min-height: 76px;
    flex-wrap: wrap;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .brand img { width: 180px; }

  .nav-menu {
    width: 100%;
    display: none;
    padding: 6px 0 18px;
  }

  .nav-menu.open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .nav-links a::after {
    bottom: -4px;
  }

  .nav-actions .desktop-only { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .page-banner-card,
  .kids-highlight,
  .location-grid,
  .banner-strip {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 700px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .section { padding: 50px 0; }
  .hero { padding-top: 18px; }
  .quick-categories,
  .product-grid,
  .reviews,
  .feature-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .product-image img { height: 290px; }
  .page-banner-card,
  .kids-highlight,
  .feature-panel,
  .newsletter,
  .store-card,
  .map-card,
  .info-card { padding: 22px; }
  .brand img { width: 170px; }
  .nav-actions { gap: 8px; }
  .nav-actions .icon-btn:not(.mobile-toggle) { width: 38px; height: 38px; }
  .banner-strip { padding: 22px; }
  .hero-banner img { min-height: 220px; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .whatsapp-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}
