/* =============================================
   THE BLU PRO — Premium Design System
   ============================================= */

/* =============================================
   Full-page dark brochure stripe background
   ============================================= */
.seafood-watermark {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #050a14;
  background-image: url('../assets/brochure-stripe-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .seafood-watermark {
    background-position: center 38%;
  }
}

:root {
  --blue: #0B36B8;
  --blue-light: #1a4fd4;
  --blue-dark: #082a94;
  --orange: #FA8150;
  --orange-light: #ffb088;
  --orange-subtle: rgba(250, 129, 80, 0.12);
  --white: #FFFFFF;
  --neutral: #F8F8F8;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: #999999;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 50px rgba(11, 54, 184, 0.1), 0 8px 20px rgba(0, 0, 0, 0.06);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
  --bg-dark: #050a14;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-dark);
  overflow-x: hidden;
  position: relative;
}

/* Content tile — white panel floating over dark illustrated background */
.section-tile {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: 72px 64px;
  box-shadow: 0 12px 56px rgba(0, 0, 0, 0.32), 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

ul {
  list-style: none;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(11, 54, 184, 0.25);
}

.btn--primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11, 54, 184, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.section-header__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header__qmark {
  color: var(--orange);
  margin-left: 2px;
}

.nav__qmark {
  color: var(--orange);
  margin-left: 1px;
}

.section-header__desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-header--light .section-header__title {
  color: var(--white);
}

.section-header--light .section-header__eyebrow {
  color: var(--orange-light);
}

/* =============================================
   Header / Navigation
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  isolation: isolate;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.nav__logo-img {
  height: 64px;
  width: auto;
}

.nav__brand {
  display: none;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--orange);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
}

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

/* FSSAI certification badge */
.fssai-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  background: var(--white);
  border: 2px solid #1b7a3a;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(27, 122, 58, 0.12);
  cursor: default;
  user-select: none;
}

.fssai-badge__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 6px;
}

.fssai-badge__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.fssai-badge__label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b7a3a;
}

.fssai-badge__no {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

/* =============================================
   Ghost button (brochure download)
   ============================================= */
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
}

.btn--ghost:hover {
  background: var(--neutral);
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

/* Orange CTA — used for WhatsApp / order buttons */
.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(250, 129, 80, 0.35);
}

.btn--orange:hover {
  background: #e86e3a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(250, 129, 80, 0.45);
}

/* =============================================
   Section header muted desc (on dark bg)
   ============================================= */
.section-header__desc--muted {
  color: rgba(255, 255, 255, 0.65);
}

/* =============================================
   Nutritional Benefits Section
   ============================================= */
.nutrition {
  padding: 80px 0;
  background: rgba(8, 42, 148, 0.94);
  position: relative;
}

.nutrition .section-header__title {
  color: var(--white);
}

.nutrition .section-header__eyebrow {
  color: var(--orange-light);
}

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

.nutrition__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.nutrition__icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: background var(--transition);
}

.nutrition__item:hover .nutrition__icon {
  background: rgba(250, 129, 80, 0.15);
}

.nutrition__icon svg {
  width: 26px;
  height: 26px;
}

.nutrition__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
}

.nutrition__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* =============================================
   Product price small unit
   ============================================= */
.product-card__price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

/* =============================================
   Footer brochure link
   ============================================= */
.footer__brochure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  border: 1px solid rgba(11, 54, 184, 0.25);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.footer__brochure:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* =============================================
   Main content above watermark layer
   ============================================= */
main, .footer {
  position: relative;
  z-index: 1;
}

/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 12px) 40px 12px;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
}

.hero .section-tile,
.hero__grid.section-tile {
  padding: 40px 48px;
}

/* Hero-only seafood background — portrait crop, soft (not HD) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/hero-seafood-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  filter: blur(0.5px);
  transform: scale(1.02);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.82) 55%,
    rgba(255, 255, 255, 0.92) 100%
  );
}

@media (orientation: portrait) {
  .hero::before {
    background-position: center 30%;
  }

  .hero::after {
    background: rgba(255, 255, 255, 0.86);
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 0;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--blue);
  margin-bottom: 16px;
}

.hero__line {
  display: block;
}

.hero__line--accent {
  color: var(--orange);
}

.hero__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  align-items: center;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: linear-gradient(145deg, #ffffff 0%, #faf8f5 100%);
  border-radius: 24px;
  padding: 6%;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 20px 50px rgba(11, 54, 184, 0.12),
    0 8px 24px rgba(250, 129, 80, 0.15),
    0 0 0 1px rgba(11, 54, 184, 0.06);
  animation: heroFloat 5s ease-in-out infinite;
  transform-origin: center center;
}

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

/* Decorative graphics */
.hero__graphics {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__bubble {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(11, 54, 184, 0.15);
  background: rgba(250, 129, 80, 0.08);
  animation: bubbleDrift 6s ease-in-out infinite;
}

.hero__bubble--1 { width: 48px; height: 48px; top: 12%; left: 8%; animation-delay: 0s; }
.hero__bubble--2 { width: 28px; height: 28px; top: 68%; right: 10%; animation-delay: 1.2s; }
.hero__bubble--3 { width: 20px; height: 20px; top: 22%; right: 14%; animation-delay: 2.4s; }

@keyframes bubbleDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(6px, -10px) scale(1.08); opacity: 1; }
}

.hero__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed rgba(11, 54, 184, 0.12);
  border-radius: 50%;
  animation: ringSpin 24s linear infinite;
}

@keyframes ringSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__deco {
  position: absolute;
  color: rgba(11, 54, 184, 0.2);
}

.hero__deco--fish {
  width: 40px;
  bottom: 14%;
  left: 10%;
  animation: decoBob 4s ease-in-out infinite;
}

.hero__deco--wave {
  width: 64px;
  bottom: 10%;
  right: 8%;
  color: rgba(250, 129, 80, 0.35);
  animation: decoBob 5s ease-in-out infinite reverse;
}

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

.hero__spark {
  position: absolute;
  color: var(--orange);
  font-size: 14px;
  opacity: 0.6;
  animation: sparkPulse 2.5s ease-in-out infinite;
}

.hero__spark--1 { top: 18%; right: 18%; animation-delay: 0.5s; }
.hero__spark--2 { bottom: 24%; left: 16%; font-size: 11px; animation-delay: 1.8s; }

@keyframes sparkPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Soft ambient glow */
.hero__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, rgba(250, 129, 80, 0.18) 0%, rgba(250, 129, 80, 0.06) 45%, transparent 72%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

.hero__visual::after { display: none; }

.hero__logo-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
}

.hero__logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: reduce) {
  .hero__visual,
  .hero__bubble,
  .hero__ring,
  .hero__deco,
  .hero__spark {
    animation: none !important;
  }
}

/* =============================================
   Why THE BLU PRO — highlight showcase
   ============================================= */
.why {
  padding: 60px 40px;
  background: transparent;
}

.why .section-header {
  max-width: 620px;
  margin-bottom: 48px;
}

.why .section-header__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  background: linear-gradient(180deg, var(--white) 0%, #f8faff 100%);
  padding: 28px 24px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid rgba(11, 54, 184, 0.08);
  border-top: 4px solid var(--orange);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(11, 54, 184, 0.12);
  border-color: rgba(11, 54, 184, 0.14);
}

.feature-card__index {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(11, 54, 184, 0.18);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(250, 129, 80, 0.35);
  transition: transform var(--transition), background var(--transition);
}

.feature-card:hover .feature-card__icon {
  background: #e86e3a;
  transform: scale(1.06);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--blue);
  margin-bottom: 10px;
  max-width: 240px;
}

.feature-card__highlight {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.feature-card__desc {
  flex: 1;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
}

/* =============================================
   Our Store
   ============================================= */
.store {
  padding: 80px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.store__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.store__panel {
  width: 100%;
  max-width: 960px;
  background: var(--white);
  border-radius: 24px;
  padding: 48px 48px 48px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.store__header {
  margin-bottom: 0;
}

.store__figure {
  margin: 0;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.store__photo {
  display: block;
  width: 100%;
  height: auto;
}

.store__actions {
  margin-top: 4px;
}

@media (max-width: 768px) {
  .store {
    padding: 64px 0;
  }

  .store__panel {
    padding: 32px 20px 28px;
    border-radius: 16px;
    gap: 24px;
  }

  .store__figure {
    border-radius: 10px;
  }
}

/* =============================================
   Products
   ============================================= */
.products {
  padding: 60px 40px;
  background: transparent;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

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

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--neutral) 0%, #f0f0f0 100%);
  transition: transform var(--transition);
}

.product-card__placeholder img {
  opacity: 0.25;
  transition: all var(--transition);
}

.product-card:hover .product-card__placeholder {
  transform: scale(1.03);
}

.product-card:hover .product-card__placeholder img {
  opacity: 0.4;
  transform: scale(1.1);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  border-radius: 100px;
}

.product-card__badge--accent {
  background: var(--orange);
}

.product-card__body {
  padding: 24px;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
}

.product-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
}

.product-card__order {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.product-card__order:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

/* =============================================
   Trust Bar
   ============================================= */
.trust-bar {
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

.trust-bar__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: trustMarquee 32s linear infinite;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-bar__track span::after {
  content: '◆';
  margin-left: 48px;
  font-size: 8px;
  color: var(--orange);
}

.trust-bar__highlight {
  color: var(--orange-light);
}

@keyframes trustMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   Shop by Category
   ============================================= */
.categories {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.categories .section-header__title {
  color: var(--white);
}

.categories .section-header__desc {
  color: rgba(255, 255, 255, 0.72);
}

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

.category-card {
  text-align: left;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(11, 54, 184, 0.15);
  outline: none;
}

.category-card__img-wrap {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--neutral);
}

.category-card__img-wrap--cover {
  background: #f5f0e8;
}

.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
}

.category-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}

.category-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.category-card--brochure {
  text-decoration: none;
  color: inherit;
  border-color: rgba(250, 129, 80, 0.25);
  background: linear-gradient(135deg, #fff 0%, rgba(250, 129, 80, 0.06) 100%);
}

/* =============================================
   Top Sellers
   ============================================= */
.featured {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.featured__scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.featured-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.featured-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f5f0e8;
  margin-bottom: 14px;
}

.featured-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  border-radius: 100px;
}

.featured-card__badge--accent {
  background: var(--orange);
}

.featured-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 6px;
}

.featured-card__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.featured-card__price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.featured-card__btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}

.featured-card__btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* =============================================
   Who Are We
   ============================================= */
.about {
  padding: 64px 40px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.about .section-tile {
  padding: 40px 48px;
}

.about__header {
  text-align: left;
  margin: 0 0 28px;
  max-width: none;
}

.about__header .section-header__title {
  margin-bottom: 0;
}

.about__founder-layout {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 32px 48px;
  align-items: start;
  width: 100%;
}

.about__founder-profile {
  margin: 0;
  justify-self: start;
}

.about__founder-photo {
  width: 148px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(11, 54, 184, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.about__founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
}

.about__founder-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
  text-align: left;
}

.about__founder-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.3;
}

.about__founder-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.about__founder-text {
  max-width: none;
}

.about__founder-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-align: left;
}

.about__founder-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about {
    padding: 48px 0;
  }

  .about .section-tile {
    padding: 32px 20px;
  }

  .about__header {
    text-align: center;
    margin-bottom: 24px;
  }

  .about__founder-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__founder-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
  }

  .about__founder-caption {
    text-align: center;
  }
}

/* =============================================
   Reviews
   ============================================= */
.reviews {
  padding: 100px 0;
  background: rgba(11, 54, 184, 0.96);
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reviews__carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
}

.reviews__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.reviews__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card--slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.reviews__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 2;
}

.reviews__nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.reviews__nav--prev { left: 0; }
.reviews__nav--next { right: 0; }

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}

.reviews__dot--active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

.review-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.review-card__stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.review-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 24px;
}

.review-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.review-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(250, 129, 80, 0.2);
  color: var(--orange-light);
  border-radius: 100px;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* =============================================
   CTA Banner
   ============================================= */
.cta-banner {
  padding: 64px 0;
  background: transparent;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  padding: 40px 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.cta-banner__logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.cta-banner__content {
  flex: 1;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}

.cta-banner__desc {
  font-size: 15px;
  color: var(--text-muted);
}

/* =============================================
   Footer
   ============================================= */
.footer {
  padding: 64px 0 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 52px;
  width: auto;
}

.footer__logo span {
  display: none;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--blue);
}

.footer__list li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer__list a {
  transition: color var(--transition);
}

.footer__list a:hover {
  color: var(--blue);
}

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-light);
}

/* =============================================
   Real Logo (JPEG — multiply removes white bg on light surfaces)
   ============================================= */
.nav__logo-img,
.hero__logo,
.footer__logo-img {
  mix-blend-mode: multiply;
}

/* =============================================
   Product Card — Circular brochure-style images
   ============================================= */
.product-card__img {
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  border: 5px solid var(--orange);
  padding: 0;
  background: #f5f0e8;
  transition: transform var(--transition);
  display: block;
  flex-shrink: 0;
}

.product-card:hover .product-card__img {
  transform: scale(1.02);
}

.product-card--dark .product-card__img {
  border-color: var(--orange);
  object-fit: contain;
  background: #f5f0e8;
}

/* Fish grid tiles — full sandy aesthetic, no circular crop */
.product-card:has(.product-card__img[src*="product-imgs/fish"]) .product-card__image {
  aspect-ratio: unset;
  height: auto;
  display: block;
  background: #f5f0e8;
  padding: 0;
  overflow: visible;
}

.product-card:has(.product-card__img[src*="product-imgs/fish"]) .product-card__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: none;
  background: transparent;
  display: block;
  vertical-align: top;
}

.product-card:has(.product-card__img[src*="product-imgs/fish"]):hover .product-card__img {
  transform: none;
}

.product-card:has(.product-card__img[src*="product-imgs/fish"]) .product-card__badge {
  display: none;
}

/* =============================================
   Scroll Animations
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
    gap: 48px;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: 260px;
  }

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

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

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

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

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 1100px) {
  .fssai-badge__text {
    display: none;
  }

  .fssai-badge {
    padding: 4px;
  }
}

@media (max-width: 768px) {
  .section-tile {
    padding: 32px 20px;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__right .nav__cta {
    display: none;
  }

  .nav__right {
    position: fixed;
    top: 14px;
    right: 52px;
    z-index: 101;
  }

  .fssai-badge {
    padding: 3px;
    border-width: 1.5px;
    border-radius: 8px;
  }

  .fssai-badge__text {
    display: none;
  }

  .fssai-badge__icon {
    width: 34px;
    height: 34px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav--open .nav__right .nav__cta {
    display: inline-flex;
    position: absolute;
    top: calc(var(--header-height) + 200px);
    left: 24px;
    right: 24px;
    justify-content: center;
  }

  .hero {
    padding-bottom: 48px;
  }

  .hero::before {
    background-size: cover;
    background-position: center 35%;
  }

  .hero::after {
    background: rgba(255, 255, 255, 0.88);
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .why__grid,
  .products__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

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

  .reviews__carousel {
    padding: 0 36px;
  }

  .reviews__nav--prev { left: -4px; }
  .reviews__nav--next { right: -4px; }

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

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }
}
