:root {
  --navy: #000c52;
  --navy-text: #0b1550;
  --blue: #004cfd;
  --blue-dark: #0040d6;
  --purple: #5b12bd;
  --green: #037133;
  --orange: #ce7233;
  --red: #d93357;
  --lightblue: #3b82c4;
  --gold: #f5b942;
  --gold-dark: #d4a017;
  --gold-text: #4a3300;
  --page-bg: #f0f5fe ;
  --bg-tint: #e2eafc;
  --bg-tint-2: #dce6fb;
  --border: #dde3f4;
  --white: #ffffff;
  --text-muted: #6b7280;
  --card-shadow: 0 3px 14px rgba(11, 21, 80, 0.07);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', 'Noto Sans Bengali', sans-serif;
  color: var(--navy-text);
  background: var(--page-bg);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #dfe3f7;
  font-size: 11.5px;
  font-weight: 400;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
}
.topbar-left, .topbar-right {
  display: flex;
}
.topbar-left {
  gap: 48px;
}
.topbar-right {
  gap: 18px;
}
.topbar-left li, .topbar-right li {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.tb-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo img { height: 44px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-text);
}
.logo-title sup {
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
}
.logo-tagline {
  font-size: 11px;
  color: var(--text-muted);
}

.search-group {
  flex: 1;
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 600px;
}
.all-categories {
  background: #f6f7fc;
  border-right: 1px solid var(--border);
  padding: 0 14px;
  font-size: 13.5px;
  color: var(--navy-text);
  white-space: nowrap;
}
.search-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 13.5px;
  font-family: inherit;
}
.search-btn {
  background: var(--blue);
  color: white;
  width: 52px;
  font-size: 15px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.action-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}
.icon-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: var(--navy-text);
}
.icon-link .icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--navy-text);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-label { margin-top: 3px; }
.badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Global toast (cart / wishlist feedback) ---------- */
.gg-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 12px);
  background: var(--navy);
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 30px;
  box-shadow: var(--card-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
}
.gg-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.magic-wish-btn {
  background: var(--purple);
  color: white;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

.main-nav {
  border-top: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  gap: 26px;
  padding: 12px 24px;
  font-size: 13.5px;
  font-weight: 500;
  overflow-x: auto;
}
.nav-inner a { white-space: nowrap; color: var(--navy-text); }
.nav-inner a.active { color: var(--blue); font-weight: 600; }
.nav-inner a:hover { color: var(--blue); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 40%, rgba(255,255,255,0.3) 65%, rgba(255,255,255,0) 85%);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.is-active { opacity: 1; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(11, 21, 80, 0.25);
  padding: 0;
}
.hero-dot.is-active { background: var(--navy-text); width: 20px; border-radius: 5px; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy-text);
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 20, 80, 0.15);
}
.hero-arrow-prev { left: 14px; }
.hero-arrow-next { right: 14px; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-text { flex: 1.1; min-width: 380px; }
.hero-text h1 {
  font-size: 40px;
  line-height: 1.18;
  margin: 0 0 14px;
  color: #0b1550;
  font-weight: 700;
}
.hero-text h1 em {
  font-family: 'Caveat', cursive;
  color: var(--blue);
  font-style: normal;
  font-size: 46px;
}
.hero-text p {
  font-size: 15px;
  color: #33406b;
  max-width: 460px;
  margin: 0 0 22px;
}
.hero-trust {
  display: flex;
  gap: 22px;
  margin-bottom: 26px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-text);
}
.hero-trust li { display: flex; flex-direction: column; gap: 4px; }
.hero-trust .ico { font-size: 18px; color: var(--blue); }
.hero-trust small { font-weight: 400; color: var(--text-muted); }

.hero-buttons { display: flex; gap: 14px; }
.btn-primary {
  background: var(--blue);
  color: white;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
}
.btn-outline {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--navy-text);
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-pill {
  background: var(--red);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.hero-media {
  flex: 1;
  min-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ph-platter {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffffcc, #dfe6ff 55%, #b9c6f5 100%);
  border: 6px solid white;
  box-shadow: 0 20px 40px rgba(0,20,80,0.18);
}
.hero-mascot {
  position: absolute;
  right: -10px;
  bottom: -30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mascot-img { width: 150px; }
.wish-bubble {
  background: white;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  max-width: 170px;
  box-shadow: 0 10px 24px rgba(0,20,80,0.15);
  margin-bottom: 6px;
}
.btn-make-wish {
  display: block;
  margin: 10px auto 0;
  background: var(--purple);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

/* ---------- Placeholder image blocks ---------- */
.ph-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #eef1fb;
  border: 1px dashed #c3cbe8;
  border-radius: 10px;
  color: #8992b8;
  position: relative;
}
.ph-emoji { font-size: 26px; filter: grayscale(0); }
.ph-label { font-size: 10px; font-weight: 600; letter-spacing: .02em; }
.ph-product { width: 100%; aspect-ratio: 4/3; }
.ph-pool { width: 100%; aspect-ratio: 16/10; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

/* ---------- Categories ---------- */
.categories { padding: 36px 0 10px; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.cat-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--card-shadow);
}
.cat-photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.cat-scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72%;
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.65) 70%, rgba(255,255,255,0) 100%);
}
.cat-label {
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  z-index: 1;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
}
.cat-label strong { display: block; font-size: 12.5px; margin-top: 1px; }
.cat-arrow {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: white;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,20,80,0.18);
}
.cat-blue      .cat-photo { background: linear-gradient(135deg, color-mix(in srgb, var(--blue) 22%, white) 0%, white 75%); } .cat-blue .cat-label { color: var(--blue); }      .cat-blue .cat-arrow { background: var(--blue); }
.cat-lightblue .cat-photo { background: linear-gradient(135deg, color-mix(in srgb, var(--lightblue) 22%, white) 0%, white 75%); } .cat-lightblue .cat-label { color: var(--lightblue); } .cat-lightblue .cat-arrow { background: var(--lightblue); }
.cat-green     .cat-photo { background: linear-gradient(135deg, color-mix(in srgb, var(--green) 22%, white) 0%, white 75%); } .cat-green .cat-label { color: var(--green); }    .cat-green .cat-arrow { background: var(--green); }
.cat-orange    .cat-photo { background: linear-gradient(135deg, color-mix(in srgb, var(--orange) 22%, white) 0%, white 75%); } .cat-orange .cat-label { color: var(--orange); }  .cat-orange .cat-arrow { background: var(--orange); }
.cat-red       .cat-photo { background: linear-gradient(135deg, color-mix(in srgb, var(--red) 22%, white) 0%, white 75%); } .cat-red .cat-label { color: var(--red); }        .cat-red .cat-arrow { background: var(--red); }
.cat-purple    .cat-photo { background: linear-gradient(135deg, color-mix(in srgb, var(--purple) 22%, white) 0%, white 75%); } .cat-purple .cat-label { color: var(--purple); }  .cat-purple .cat-arrow { background: var(--purple); }
.cat-green2    .cat-photo { background: linear-gradient(135deg, color-mix(in srgb, #1c7a42 22%, white) 0%, white 75%); } .cat-green2 .cat-label { color: #1c7a42; }        .cat-green2 .cat-arrow { background: #1c7a42; }

.cat-viewall {
  background: #f6f7fc;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--navy-text);
  font-size: 13px;
}
.viewall-icon { font-size: 22px; color: var(--blue); }

/* ---------- Features strip ---------- */
.features-strip {
  background: var(--bg-tint);
  margin: 30px 0;
  padding: 20px 0;
  border-radius: 14px;
}
.features-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.feature-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
  flex-shrink: 0;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.feature small { font-weight: 400; color: var(--text-muted); }
.f-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Today's Catch ---------- */
.todays-catch { padding: 20px 0 40px; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.view-all { font-size: 13.5px; font-weight: 600; color: var(--blue); }

.catch-grid {
  display: flex;
  align-items: stretch;
  gap: 14px;
}
.catch-track {
  display: flex;
  gap: 14px;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
}
.catch-track::-webkit-scrollbar { display: none; }
.catch-track { scrollbar-width: none; }
.scroll-btn {
  flex-shrink: 0;
  align-self: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  font-size: 18px;
  color: var(--navy-text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,20,80,0.12);
}
.product-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  width: 230px;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: var(--card-shadow);
}
.badge-pick, .badge-off {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  color: white;
}
.badge-pick { background: var(--gold); color: var(--gold-text); }
.badge-off { background: var(--red); }
.product-info { padding: 10px 12px 12px; }
.product-name {
  font-size: 12px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--navy-text);
}
.product-name strong { display: block; font-size: 12.5px; }
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price { font-weight: 700; font-size: 13.5px; }
.cart-btn {
  background: var(--blue);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ico-cart {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-btn .ico-cart { width: 14px; height: 14px; }
a.btn-primary .ico-cart, button.btn-addcart .ico-cart { margin-right: 6px; vertical-align: -2px; }

.pool-card {
  flex-shrink: 0;
  width: 240px;
  background: var(--navy);
  color: white;
  border-radius: 14px;
  padding: 16px;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 8px 22px rgba(0,12,82,0.22);
}
.new-pill {
  background: #1e9bd7;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
}
.pool-card h3 { font-size: 12px; margin: 8px 0 2px; opacity: .85; font-weight: 500; }
.pool-headline { font-size: 17px; font-weight: 700; line-height: 1.3; margin: 0 0 10px; }
.pool-save { font-size: 12.5px; margin: 10px 0; }
.pool-bottom { display: flex; align-items: center; justify-content: space-between; }
.btn-join-pool {
  background: var(--green);
  color: white;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12.5px;
}
.avatars { display: flex; }
.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #3a4a8f;
  border: 2px solid var(--navy);
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  font-weight: 700;
}
.avatar:first-child { margin-left: 0; }

/* ---------- Footer strip ---------- */
.footer-strip {
  background: var(--bg-tint-2);
  padding: 22px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.footer-item small { display: block; font-weight: 400; color: var(--text-muted); }
.subscribe-form {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 340px;
}
.subscribe-form input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
  font-size: 13px;
  font-family: inherit;
}
.subscribe-form .btn-primary { padding: 10px 18px; font-size: 13px; }

.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(0,20,80,0.25);
}

/* ---------- General footer ---------- */
.site-footer {
  background: var(--navy);
  color: #b9c0e6;
  padding: 44px 0 0;
}
.footer-columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 24px;
  padding-bottom: 36px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-title { color: white; }
.footer-brand .logo-tagline { color: #8a92c4; }
.footer-blurb {
  font-size: 13px;
  line-height: 1.6;
  color: #b9c0e6;
  margin: 0 0 16px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: white;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-col h4 {
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  margin: 0 0 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: #b9c0e6; }
.footer-col a:hover { color: white; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
}
.fc-ico {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 12px;
  color: #8a92c4;
}
.footer-payments { display: flex; gap: 8px; }
.footer-payments span {
  background: rgba(255,255,255,0.08);
  color: #dfe3f7;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
}

@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
}
