@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;600;700&family=Sora:wght@400;600;700&display=swap');

:root {
  --bg: #06080d;
  --ink: #eef3fb;
  --muted: #9fb0c4;
  --black: #0a0d12;
  --blue: #356dff;
  --blue-dark: #0b2558;
  --lime: #7bdc00;
  --cyan: #28d7ff;
  --pink: #111111;
  --orange: #ff9b54;
  --gold: #ffd166;
  --card: #101722;
  --stroke: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  --radius: 18px;
  --radius-sm: 12px;
}

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

img,
svg {
  max-width: 100%;
}

html, body {
  height: 100%;
}

body {
  font-family: "Hind Siliguri", "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(53, 109, 255, 0.2), transparent 38%),
    radial-gradient(circle at 85% 10%, rgba(17, 17, 17, 0.22), transparent 30%),
    radial-gradient(circle at 70% 65%, rgba(40, 215, 255, 0.1), transparent 26%),
    var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

html[lang="bn"] body,
body [data-lang="bn"] {
  font-family: "Hind Siliguri", "Sora", sans-serif;
}

body.drawer-open {
  overflow: hidden;
}

.page {
  min-height: 100vh;
  padding-bottom: 90px;
  position: relative;
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

.page::before {
  top: -80px;
  left: -80px;
  background: rgba(17, 17, 17, 0.34);
}

.page::after {
  right: -100px;
  bottom: 120px;
  background: rgba(40, 215, 255, 0.45);
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background:
    linear-gradient(135deg, rgba(10, 13, 18, 0.92), rgba(12, 28, 56, 0.88)),
    var(--black);
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: center;
}

.brand-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #0b1a33;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 10px rgba(31, 111, 255, 0.6), 0 6px 16px rgba(0, 0, 0, 0.35);
}

.logo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2c7bff 0%, #0c2c6d 45%, #05070c 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  box-shadow: inset 0 0 12px rgba(41, 140, 255, 0.8), 0 8px 14px rgba(0, 0, 0, 0.4);
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px dashed rgba(126, 195, 255, 0.8);
}

.logo-mark::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8dd7ff, transparent);
  box-shadow: 0 -8px 0 rgba(126, 195, 255, 0.8), 0 8px 0 rgba(126, 195, 255, 0.8);
}

.logo-mark .node {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c2e2ff;
  box-shadow: 0 0 6px rgba(126, 195, 255, 0.9);
}

.logo-mark .n1 { top: 9px; left: 22px; }
.logo-mark .n2 { bottom: 9px; left: 12px; }
.logo-mark .n3 { bottom: 12px; right: 12px; }

.brand-text {
  display: grid;
  line-height: 1;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 20px;
  background: linear-gradient(90deg, #6fb4ff, #ffffff 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 18px rgba(31, 111, 255, 0.35);
}

.brand-sub {
  font-size: 11px;
  color: #c7d4e2;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  background: rgba(31, 111, 255, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}

.icon-btn {
  background: transparent;
  border: none;
  color: inherit;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon-btn,
.lang-btn,
.btn,
.drawer-item,
.category,
.collection-card,
.product-card,
.service-card,
.promo-card,
.highlight-card,
.nav-item,
.section-link {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  content: "";
  position: relative;
}

.hamburger::before { top: -6px; position: absolute; }
.hamburger::after { top: 6px; position: absolute; }

.search::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  left: 1px;
  top: 1px;
}

.search::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  right: 1px;
  bottom: 1px;
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 16px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  top: 2px;
}

.heart::before { left: 2px; transform: rotate(-45deg); }
.heart::after { right: 2px; transform: rotate(45deg); }

.close::before,
.close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  top: 9px;
  left: 0;
}

.close::before { transform: rotate(45deg); }
.close::after { transform: rotate(-45deg); }

.badge {
  position: absolute;
  top: 4px;
  right: 6px;
  background: #ff3d67;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 12, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: min(360px, 86vw);
  background:
    radial-gradient(circle at top left, rgba(53, 109, 255, 0.22), transparent 36%),
    linear-gradient(180deg, #0b0f14, #111b2d);
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 30;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 16px 0;
  box-shadow: 12px 0 30px rgba(0, 0, 0, 0.35);
}

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

.drawer-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-nav {
  display: grid;
  gap: 6px;
  padding: 8px 0;
}

.drawer-item {
  background: transparent;
  border: none;
  color: inherit;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 0.35px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}

.drawer-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.drawer-item.is-home {
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.drawer-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: #0b1a33;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.drawer-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.drawer-label {
  display: grid;
  gap: 2px;
  justify-self: start;
}

.drawer-plus {
  font-size: 20px;
  color: #7bdc00;
  justify-self: end;
}

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #c9d4e2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-btn.is-active {
  background: linear-gradient(135deg, #ffffff, #cde5ff);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(53, 109, 255, 0.24);
}

main {
  display: grid;
  gap: 26px;
  padding: 22px 18px 40px;
}

main > section,
.promo-card,
.service-card,
.category,
.collection-card,
.product-card,
.cta-banner,
.highlight-card {
  min-width: 0;
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(53, 109, 255, 0.22), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(17, 17, 17, 0.22), transparent 35%),
    radial-gradient(circle at 80% 75%, rgba(40, 215, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #0d1320, #121c31 48%, #161a24 100%);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(53, 109, 255, 0.2);
  border: 1px solid rgba(53, 109, 255, 0.28);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% auto -20% -16%;
  width: 34%;
  background: linear-gradient(110deg, transparent 18%, rgba(111, 246, 255, 0.16) 50%, transparent 82%);
  transform: skewX(-18deg);
  filter: blur(16px);
  pointer-events: none;
  animation: heroAmbientSweep 10s linear infinite;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.hero-slide {
  display: grid;
  gap: 20px;
  align-items: center;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  position: absolute;
  inset: 0;
  padding: 8px 6px 6px;
  min-width: 0;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 26%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 22%, rgba(126, 221, 255, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 74%, rgba(255, 198, 104, 0.12) 0 1px, transparent 2px);
  opacity: 0.38;
  pointer-events: none;
  animation: heroSparkleDrift 12s linear infinite;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
  animation: slideIn 0.6s ease;
}

.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(53, 109, 255, 0.12), rgba(17, 17, 17, 0.08));
  color: #c9d8ee;
  font-size: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(53, 109, 255, 0.12);
  box-shadow: 0 0 0 rgba(111, 246, 255, 0);
  animation: heroTagPulse 4.2s ease-in-out infinite;
}

.hero-text h1 {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
  text-shadow: 0 0 16px rgba(143, 196, 255, 0.08);
  animation: heroTitleGlow 5.2s ease-in-out infinite;
}

.hero-text p {
  color: var(--muted);
  font-size: 15px;
  word-break: break-word;
  animation: heroCopyFloat 5.6s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: #fff;
  box-shadow: 0 14px 26px rgba(53, 109, 255, 0.28);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(53, 109, 255, 0.15);
  color: var(--ink);
}

.btn.mini {
  padding: 8px 14px;
  font-size: 12px;
  background: linear-gradient(135deg, #1f6fff, #28d7ff);
  color: #fff;
}

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

.btn.neon-border {
  border: 1px solid #6ff6ff;
  box-shadow:
    0 0 12px rgba(111, 246, 255, 0.7),
    0 0 28px rgba(111, 246, 255, 0.45);
}

.hero-art {
  position: relative;
  min-height: 180px;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(17, 22, 34, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.18), 0 18px 30px rgba(31, 67, 141, 0.12);
  animation: heroMediaFloat 6.8s ease-in-out infinite;
}

.hero-media.is-empty {
  background: linear-gradient(135deg, var(--accent, #1f6fff), #0b0f14);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -15% auto -15% -18%;
  width: 28%;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.22) 48%, transparent 82%);
  transform: skewX(-20deg);
  filter: blur(10px);
  animation: heroMediaSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-ring {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  border: 2px solid rgba(255, 77, 109, 0.35);
}

.hero-card {
  position: absolute;
  right: 24px;
  bottom: 12px;
  background: rgba(10, 14, 22, 0.84);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(12px);
  animation: heroCardBob 5.8s ease-in-out infinite;
}

.hero-stat {
  font-size: 36px;
  font-family: "Sora", sans-serif;
  color: var(--accent, #ff4d6d);
}

.hero-stat-sub {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 120px;
}

.mini-card {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 12px;
  text-align: center;
}

.hero-chip {
  position: absolute;
  inset: 20px;
  border-radius: 18px;
  border: 2px solid rgba(43, 144, 255, 0.6);
  background: linear-gradient(135deg, rgba(43, 144, 255, 0.1), rgba(43, 144, 255, 0.4));
  box-shadow: inset 0 0 30px rgba(43, 144, 255, 0.4);
}

.hero-chip::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 12px;
  border: 2px dashed rgba(255, 255, 255, 0.6);
}

.delivery-card {
  position: absolute;
  inset: 30px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: center;
  box-shadow: var(--shadow);
}

.delivery-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00c389, #00e1a7);
  position: relative;
}

.delivery-icon::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 12px;
  border: 2px solid #fff;
  border-left: none;
  border-radius: 0 6px 6px 0;
  left: 10px;
  top: 12px;
}

.delivery-text {
  font-size: 14px;
  color: var(--muted);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.dot {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: #d9dee8;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.dot.is-active {
  background: linear-gradient(90deg, var(--blue), var(--pink));
  box-shadow: 0 0 0 3px rgba(53, 109, 255, 0.12);
  animation: heroDotPulse 2.8s ease-in-out infinite;
}

.highlight-strip {
  display: grid;
  gap: 14px;
}

.highlight-card {
  border-radius: var(--radius);
  padding: 18px;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: auto -20px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(6px);
}

.highlight-card.sunrise {
  background: linear-gradient(135deg, #ff8a5b, #1a1a1a);
}

.highlight-card.aurora {
  background: linear-gradient(135deg, #356dff, #28d7ff);
}

.highlight-card.candy {
  background: linear-gradient(135deg, #6842ff, #121212);
}

.highlight-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.highlight-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  word-break: break-word;
}

.promo-grid {
  display: grid;
  gap: 16px;
}

.promo-card {
  background: linear-gradient(135deg, #101722, #172235);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.promo-card:hover,
.service-card:hover,
.category:hover,
.collection-card:hover,
.product-card:hover,
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(10, 20, 40, 0.14);
}

.promo-card.blue {
  background: linear-gradient(135deg, #0b2b62, #1f6fff);
  color: #fff;
}

.promo-card.dark {
  background: linear-gradient(135deg, #0f1117, #1a2435);
  color: #fff;
}

.promo-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  margin-bottom: 6px;
  word-break: break-word;
}

.promo-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.promo-list {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 4px;
  font-size: 12px;
}

.promo-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.promo-image.has-image {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.promo-image.avatar {
  background: radial-gradient(circle at 30% 30%, #a7d4ff, rgba(255, 255, 255, 0));
}

.promo-image.ssd {
  background: linear-gradient(135deg, rgba(255, 200, 50, 0.25), rgba(255, 255, 255, 0));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  background: linear-gradient(180deg, rgba(16,23,34,0.98), rgba(18,27,41,0.96));
  border-radius: var(--radius-sm);
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
}

.service-card h4 {
  font-family: "Sora", sans-serif;
  font-size: 16px;
}

.service-card p {
  font-size: 12px;
  color: var(--muted);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lime), #14d99b);
  position: relative;
  box-shadow: 0 12px 24px rgba(20, 217, 155, 0.18);
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.service-icon.phone::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 4px;
  top: 12px;
  left: 16px;
}

.service-icon.support::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 12px;
  left: 13px;
}

.service-icon.card::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 4px;
  top: 15px;
  left: 11px;
}

.service-icon.truck::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 2px;
  top: 16px;
  left: 12px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.section-title {
  background: linear-gradient(135deg, #0f1726, #26457d, #111111);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 999px 999px 0;
  font-family: "Sora", sans-serif;
  font-size: 16px;
}

.section-link {
  color: #284fe2;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
}

.section-link:hover {
  color: var(--pink);
}

.categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.category {
  background: linear-gradient(180deg, #101722, #172235);
  border-radius: 14px;
  padding: 12px 8px;
  display: grid;
  gap: 8px;
  place-items: center;
  box-shadow: var(--shadow);
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  color: #d9e5f7;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(53, 109, 255, 0.14), rgba(40, 215, 255, 0.08));
  display: grid;
  place-items: center;
}

.category-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #4d7cff;
  stroke-width: 2.5;
}

.category span {
  color: #dbe7fb;
  font-weight: 600;
}

.category:hover span {
  color: #ffffff;
}

.category:hover .category-icon {
  background: linear-gradient(135deg, rgba(77, 124, 255, 0.18), rgba(40, 215, 255, 0.12));
}

.category:hover .category-icon svg {
  stroke: #78a8ff;
}

.collections {
  display: grid;
  gap: 14px;
}

.collection-card {
  background: linear-gradient(135deg, #101722, #172235 55%, #1a202c);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  border: 1px solid rgba(53, 109, 255, 0.08);
}

.collection-tag {
  font-size: 12px;
  font-weight: 700;
  color: #8db0ff;
  text-transform: uppercase;
}

.collection-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
}

.collection-card p {
  color: var(--muted);
  font-size: 13px;
}

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  background: linear-gradient(180deg, #101722, #172235);
  border-radius: var(--radius-sm);
  padding: 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  text-align: center;
  border: 1px solid rgba(53, 109, 255, 0.08);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f8fd, #dfe8f7);
  display: grid;
  place-items: center;
  padding: 14px;
  box-shadow: inset 0 0 0 1px rgba(20, 35, 59, 0.08);
}

.product-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(86, 209, 255, 0.22), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(123, 220, 0, 0.16), transparent 30%),
    linear-gradient(135deg, #111b2c, #1c2a40);
}

.product-placeholder-glow {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  filter: blur(6px);
}

.product-badge {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 20px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #eef3fb;
  background: linear-gradient(135deg, rgba(53, 109, 255, 0.8), rgba(40, 215, 255, 0.55));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(20, 35, 59, 0.18));
}

.product-category {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}

.product-name {
  font-size: 12px;
  color: var(--muted);
  min-height: 34px;
  word-break: break-word;
}

.product-price {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #b9d0ff;
}

.product-save {
  font-size: 12px;
  color: #c32c86;
  font-weight: 600;
}

.product-action {
  width: 100%;
  justify-content: center;
  text-decoration: none;
  margin-top: 2px;
}

.cta-banner {
  position: relative;
  border-radius: 28px;
  padding: 24px 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 209, 102, 0.32), transparent 26%),
    radial-gradient(circle at 82% 28%, rgba(40, 215, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #0d1630, #17346f 52%, #121212 100%);
  color: #fff;
  display: grid;
  gap: 18px;
  align-items: center;
  box-shadow: 0 24px 50px rgba(11, 37, 88, 0.3);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 26% 62%, rgba(130, 220, 255, 0.22) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 58% 22%, rgba(255, 198, 104, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 68%, rgba(186, 116, 255, 0.24) 0 1.3px, transparent 2.4px),
    radial-gradient(circle at 88% 34%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px);
  opacity: 0.42;
  pointer-events: none;
  animation: ctaSparkleDrift 10s linear infinite;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -18%;
  width: 38%;
  background: linear-gradient(115deg, transparent 12%, rgba(160, 225, 255, 0.12) 50%, transparent 88%);
  transform: skewX(-18deg);
  filter: blur(10px);
  pointer-events: none;
  animation: ctaAmbientSweep 8.5s linear infinite;
}

.cta-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.cta-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: ctaTextReveal 0.9s ease forwards;
}

.cta-copy > *:nth-child(1) { animation-delay: 0.08s; }
.cta-copy > *:nth-child(2) { animation-delay: 0.18s; }
.cta-copy > *:nth-child(3) { animation-delay: 0.28s; }
.cta-copy > *:nth-child(4) { animation-delay: 0.38s; }

.cta-pill {
  display: inline-flex;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
  animation: ctaPillPulse 3.4s ease-in-out infinite;
}

.cta-banner h2 {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  line-height: 1.3;
  text-shadow: 0 0 16px rgba(143, 196, 255, 0.1);
  animation:
    ctaTextReveal 0.9s ease forwards,
    ctaHeadlineGlow 4.6s ease-in-out infinite 1.1s;
}

.cta-headline {
  position: relative;
  display: inline-block;
}

.cta-headline::after {
  content: "";
  position: absolute;
  inset: -8% -6%;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.45) 48%, rgba(126, 221, 255, 0.24) 52%, transparent 68%);
  transform: translateX(-155%) skewX(-18deg);
  mix-blend-mode: screen;
  filter: blur(1px);
  pointer-events: none;
  animation: ctaHeadlineSweep 5.8s ease-in-out infinite 1.6s;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  animation: ctaTextReveal 0.9s ease forwards, ctaCopyFloat 5s ease-in-out infinite 1.2s;
}

.cta-orbs {
  min-height: 110px;
  position: relative;
  z-index: 1;
  filter: saturate(1.1);
}

.cta-orbs span {
  position: absolute;
  border-radius: 50%;
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.18),
    0 0 22px rgba(255, 255, 255, 0.08);
  animation: ctaOrbPulse 4.2s ease-in-out infinite;
}

.cta-orbs .orb::before,
.cta-orbs .orb::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-orbs .orb::before {
  width: 160%;
  height: 32%;
  opacity: 0.52;
  filter: blur(16px);
}

.cta-orbs .orb::after {
  width: 190%;
  height: 190%;
  opacity: 0.36;
  filter: blur(22px);
}

.cta-orbs .orb {
  will-change: transform, filter;
}

.cta-orbs span:nth-child(1) {
  width: 86px;
  height: 86px;
  left: 8px;
  top: 18px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow:
    0 16px 26px rgba(0, 0, 0, 0.2),
    0 0 22px rgba(255, 188, 92, 0.35),
    0 0 52px rgba(255, 145, 77, 0.2);
  animation:
    ctaOrbPulse 4.2s ease-in-out infinite,
    ctaOrbFloatLeft 6.5s ease-in-out infinite;
}

.cta-orbs .orb-gold::before {
  background: linear-gradient(90deg, rgba(255, 190, 92, 0), rgba(255, 190, 92, 0.45), rgba(255, 128, 58, 0));
}

.cta-orbs .orb-gold::after {
  background: radial-gradient(circle, rgba(255, 196, 100, 0.38), rgba(255, 196, 100, 0));
}

.cta-orbs span:nth-child(2) {
  width: 118px;
  height: 118px;
  left: 76px;
  top: 0;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.24),
    0 0 26px rgba(86, 209, 255, 0.38),
    0 0 60px rgba(70, 120, 255, 0.24);
  animation:
    ctaOrbPulse 4.8s ease-in-out infinite,
    ctaOrbFloatCenter 7.2s ease-in-out infinite;
}

.cta-orbs .orb-blue::before {
  background: linear-gradient(90deg, rgba(86, 209, 255, 0), rgba(86, 209, 255, 0.5), rgba(70, 120, 255, 0));
}

.cta-orbs .orb-blue::after {
  background: radial-gradient(circle, rgba(86, 209, 255, 0.4), rgba(86, 209, 255, 0));
}

.cta-orbs span:nth-child(3) {
  width: 72px;
  height: 72px;
  right: 12px;
  bottom: 4px;
  background: linear-gradient(135deg, var(--pink), #8d4dff);
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(197, 92, 255, 0.34),
    0 0 54px rgba(123, 66, 255, 0.22);
  animation:
    ctaOrbPulse 4.4s ease-in-out infinite,
    ctaOrbFloatRight 6.1s ease-in-out infinite;
}

.cta-orbs .orb-purple::before {
  background: linear-gradient(90deg, rgba(197, 92, 255, 0), rgba(197, 92, 255, 0.44), rgba(123, 66, 255, 0));
}

.cta-orbs .orb-purple::after {
  background: radial-gradient(circle, rgba(197, 92, 255, 0.34), rgba(197, 92, 255, 0));
}

@keyframes ctaTextReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaHeadlineGlow {
  0%, 100% {
    text-shadow: 0 0 16px rgba(143, 196, 255, 0.1);
  }
  50% {
    text-shadow: 0 0 18px rgba(143, 196, 255, 0.26), 0 0 38px rgba(75, 154, 255, 0.18);
  }
}

@keyframes ctaSparkleDrift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.24;
  }
  30% {
    opacity: 0.44;
  }
  60% {
    transform: translate3d(-10px, 8px, 0);
    opacity: 0.34;
  }
  100% {
    transform: translate3d(8px, -10px, 0);
    opacity: 0.24;
  }
}

@keyframes ctaAmbientSweep {
  0% {
    transform: translateX(-8%) skewX(-18deg);
    opacity: 0;
  }
  16% {
    opacity: 0.65;
  }
  50% {
    transform: translateX(210%) skewX(-18deg);
    opacity: 0.26;
  }
  100% {
    transform: translateX(330%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes ctaHeadlineSweep {
  0%, 72%, 100% {
    transform: translateX(-155%) skewX(-18deg);
    opacity: 0;
  }
  78% {
    opacity: 0.9;
  }
  90% {
    transform: translateX(120%) skewX(-18deg);
    opacity: 0.7;
  }
}

@keyframes ctaCopyFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes ctaPillPulse {
  0%, 100% {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
  }
  50% {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 24px rgba(130, 198, 255, 0.18);
  }
}

@keyframes ctaOrbPulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
}

@keyframes ctaOrbFloatLeft {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -8px, 0) scale(1.04);
  }
}

@keyframes ctaOrbFloatCenter {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-8px, 10px, 0) scale(1.05);
  }
}

@keyframes ctaOrbFloatRight {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-12px, -10px, 0) scale(1.06);
  }
}

@keyframes heroAmbientSweep {
  0% {
    transform: translateX(-8%) skewX(-18deg);
    opacity: 0;
  }
  18% {
    opacity: 0.7;
  }
  52% {
    transform: translateX(220%) skewX(-18deg);
    opacity: 0.22;
  }
  100% {
    transform: translateX(330%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes heroSparkleDrift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.22;
  }
  50% {
    transform: translate3d(-8px, 6px, 0);
    opacity: 0.4;
  }
  100% {
    transform: translate3d(8px, -10px, 0);
    opacity: 0.24;
  }
}

@keyframes heroTagPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(111, 246, 255, 0);
  }
  50% {
    box-shadow: 0 0 18px rgba(111, 246, 255, 0.12);
  }
}

@keyframes heroTitleGlow {
  0%, 100% {
    text-shadow: 0 0 16px rgba(143, 196, 255, 0.08);
  }
  50% {
    text-shadow: 0 0 18px rgba(143, 196, 255, 0.2), 0 0 34px rgba(75, 154, 255, 0.14);
  }
}

@keyframes heroCopyFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes heroMediaFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes heroMediaSweep {
  0%, 100% {
    transform: translateX(-30%) skewX(-20deg);
    opacity: 0;
  }
  28% {
    opacity: 0.75;
  }
  55% {
    transform: translateX(300%) skewX(-20deg);
    opacity: 0.2;
  }
}

@keyframes heroCardBob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes heroDotPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(53, 109, 255, 0.12);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(53, 109, 255, 0.18), 0 0 16px rgba(111, 246, 255, 0.12);
  }
}

@keyframes navActiveFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero:hover {
    box-shadow: var(--shadow), 0 0 0 1px rgba(53, 109, 255, 0.28), 0 0 36px rgba(86, 209, 255, 0.08);
  }

  .hero:hover::before {
    animation-duration: 6.8s;
  }

  .hero:hover .hero-media {
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.18), 0 22px 34px rgba(31, 67, 141, 0.18);
  }

  .hero:hover .btn.primary {
    box-shadow: 0 18px 30px rgba(53, 109, 255, 0.34), 0 0 22px rgba(255, 77, 109, 0.12);
    filter: saturate(1.06);
  }

  .dot:hover {
    transform: scaleX(1.12);
    box-shadow: 0 0 0 3px rgba(53, 109, 255, 0.12), 0 0 12px rgba(86, 209, 255, 0.14);
  }

  .nav-item:hover {
    transform: translateY(-2px);
    color: #ffffff;
  }

  .nav-item:hover::before {
    opacity: 1;
    transform: translateY(0);
  }

  .cta-banner:hover {
    transform: translateY(-3px);
    filter: saturate(1.06);
    box-shadow:
      0 28px 60px rgba(11, 37, 88, 0.38),
      0 0 34px rgba(90, 180, 255, 0.12);
  }

  .cta-banner:hover::after {
    animation-duration: 5.6s;
    opacity: 0.9;
  }

  .cta-banner:hover .cta-headline::after {
    animation-duration: 3.2s;
  }

  .cta-banner:hover .orb-gold {
    box-shadow:
      0 18px 28px rgba(0, 0, 0, 0.22),
      0 0 28px rgba(255, 188, 92, 0.46),
      0 0 72px rgba(255, 145, 77, 0.28);
  }

  .cta-banner:hover .orb-blue {
    box-shadow:
      0 20px 34px rgba(0, 0, 0, 0.24),
      0 0 34px rgba(86, 209, 255, 0.48),
      0 0 84px rgba(70, 120, 255, 0.3);
  }

  .cta-banner:hover .orb-purple {
    box-shadow:
      0 16px 28px rgba(0, 0, 0, 0.24),
      0 0 28px rgba(197, 92, 255, 0.42),
      0 0 74px rgba(123, 66, 255, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero-slide::after,
  .hero-tag,
  .hero-text h1,
  .hero-text p,
  .hero-media,
  .hero-media::after,
  .hero-card,
  .dot.is-active,
  .nav-item.is-active .nav-icon,
  .cta-banner::before,
  .cta-banner::after,
  .cta-headline::after,
  .cta-copy > *,
  .cta-pill,
  .cta-banner h2,
  .cta-banner p,
  .cta-orbs span {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 110px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #1f6fff, #28d7ff);
  display: grid;
  place-items: center;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(40, 215, 255, 0.22);
  z-index: 5;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-logo {
  width: 28px;
  height: 28px;
  display: block;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0b0f14, #13203c);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 10px 6px 14px;
  gap: 6px;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.2);
  z-index: 6;
  overflow-x: clip;
  overflow-y: visible;
}

.bottom-nav::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111, 246, 255, 0.32), rgba(255, 77, 109, 0.28), transparent);
  box-shadow: 0 0 18px rgba(111, 246, 255, 0.16);
  pointer-events: none;
}

.nav-item {
  position: relative;
  background: transparent;
  border: none;
  color: inherit;
  display: grid;
  gap: 4px;
  place-items: center;
  font-size: 10px;
  cursor: pointer;
  text-decoration: none;
  min-width: 0;
  transition: transform 0.24s ease, color 0.24s ease, text-shadow 0.24s ease, background 0.24s ease;
}

.nav-item::before {
  content: "";
  position: absolute;
  inset: 4px 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(53, 109, 255, 0.02));
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: -1;
}

.nav-item.is-active {
  color: #7bdc00;
  text-shadow: 0 0 12px rgba(123, 220, 0, 0.35);
}

.nav-item.is-active::before {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(180deg, rgba(156, 240, 48, 0.14), rgba(53, 109, 255, 0.05));
}

.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 18px auto 26px;
  padding: 0;
  width: fit-content;
}

.category-hero-banner {
  background:
    radial-gradient(circle at top left, rgba(53, 109, 255, 0.2), transparent 38%),
    radial-gradient(circle at 85% 10%, rgba(40, 215, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #0f1726, #14233b);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
}

.category-back-link {
  width: fit-content;
}

.category-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.category-empty-state {
  background: linear-gradient(135deg, #101722, #18243a);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
}

.category-empty-state h3 {
  font-family: "Sora", sans-serif;
  font-size: 22px;
}

.category-empty-state p {
  color: var(--muted);
}

.nav-icon {
  width: 22px;
  height: 22px;
  position: relative;
}

.nav-item.is-active .nav-icon {
  filter: drop-shadow(0 0 10px rgba(156, 240, 48, 0.18));
  animation: navActiveFloat 3.2s ease-in-out infinite;
}

.nav-icon.screen::before {
  content: "";
  position: absolute;
  inset: 2px 1px 6px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.nav-icon.tag::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 4px 4px 4px 0;
  top: 2px;
  left: 3px;
  transform: rotate(-12deg);
}

.nav-icon.cart::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 2px;
  top: 6px;
  left: 3px;
}

.nav-icon.compare::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 2px;
  top: 3px;
  left: 4px;
}

.nav-icon.compare::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 2px;
  top: 5px;
  right: 4px;
}

.nav-icon.user::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 2px;
  left: 6px;
}

.nav-icon.user::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-radius: 0 0 10px 10px;
  bottom: 2px;
  left: 3px;
}

body [data-lang="en"],
body [data-lang="bn"] {
  display: none;
}

html[data-lang="bn"] body [data-lang="bn"],
html[data-lang="en"] body [data-lang="en"] {
  display: revert;
}

.lang-btn[data-lang] {
  display: inline-flex;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .top-bar {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 12px 12px;
  }

  .brand {
    justify-self: start;
    gap: 8px;
    min-width: 0;
  }

  .brand-text { min-width: 0; }

  .brand-name {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 38vw;
  }

  .brand-sub {
    display: inline-block;
    font-size: 10px;
    padding: 3px 7px;
    letter-spacing: 1.2px;
    max-width: 38vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-wrap { width: 40px; height: 40px; }

  .top-actions {
    gap: 4px;
    flex-wrap: nowrap;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .lang-switch { padding: 3px; }
  .lang-btn { padding: 5px 8px; font-size: 11px; }

  main {
    padding: 16px 12px 32px;
    gap: 20px;
  }

  .hero,
  .promo-card,
  .collection-card,
  .cta-banner,
  .highlight-card {
    padding: 14px;
  }

  .hero-slider {
    min-height: 260px;
  }

  .hero-slide {
    padding: 4px 2px 2px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-actions {
    gap: 8px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section-head {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
  }

  .section-link {
    width: 100%;
  }

  .section-title {
    max-width: 100%;
    font-size: 15px;
    padding: 10px 14px;
  }

  .highlight-strip,
  .collections {
    gap: 12px;
  }

  .promo-card {
    grid-template-columns: 1fr;
  }

  .promo-image {
    aspect-ratio: 16 / 9;
  }

  .cta-banner h2 {
    font-size: 22px;
  }

  .cta-orbs {
    min-height: 90px;
  }

  .bottom-nav {
    padding: 8px 2px calc(12px + env(safe-area-inset-bottom));
    gap: 2px;
  }

  .nav-item {
    font-size: 9px;
    padding: 0 2px;
  }

  .nav-item span:last-child,
  .nav-item span:nth-last-child(2) {
    line-height: 1.15;
    text-align: center;
    word-break: break-word;
  }
}

@media (max-width: 420px) {
  .page {
    padding-bottom: 96px;
  }

  .top-bar {
    gap: 8px;
  }

  .brand-name,
  .brand-sub {
    max-width: 34vw;
  }

  .lang-btn {
    padding: 4px 7px;
    font-size: 10px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .products {
    grid-template-columns: 1fr;
  }

  .category,
  .product-card {
    padding: 12px 10px;
  }

  .cta-banner h2 {
    font-size: 19px;
  }
}

@media (max-width: 390px) {
  main {
    padding: 14px 10px 28px;
    gap: 16px;
  }

  .hero,
  .promo-card,
  .collection-card,
  .cta-banner,
  .highlight-card,
  .service-card {
    padding: 12px;
  }

  .hero-text h1 {
    font-size: 21px;
  }

  .hero-tag,
  .highlight-kicker,
  .cta-pill {
    font-size: 10px;
  }

  .section-title {
    font-size: 14px;
    padding: 9px 12px;
  }

  .whatsapp {
    width: 50px;
    height: 50px;
    right: 12px;
    bottom: 102px;
  }

  .whatsapp-logo {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 360px) {
  .top-bar {
    padding: 10px 10px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
  }

  .hero-text h1 {
    font-size: 19px;
  }

  .hero-text p,
  .collection-card p,
  .product-name,
  .promo-card p {
    font-size: 11px;
  }

  .service-card {
    padding: 12px 10px;
  }

  .service-card h4 {
    font-size: 14px;
  }

  .category-icon {
    width: 50px;
    height: 50px;
  }

  .nav-item {
    font-size: 8px;
  }
}

@media (min-width: 900px) {
  .top-bar {
    padding: 18px 48px;
    grid-template-columns: auto 1fr auto;
  }

  .brand-name { font-size: 22px; }
  .brand-sub { font-size: 13px; }

  main {
    padding: 30px 48px 60px;
    gap: 30px;
  }

  .hero {
    padding: 24px;
  }

  .hero-slide {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .highlight-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .categories {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

  .products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cta-banner {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 30px 28px;
  }

  .bottom-nav {
    position: static;
    border-radius: var(--radius);
    margin: 0 48px 40px;
  }

  .page {
    padding-bottom: 0;
  }
}
