/* ── Variables ── */
:root {
  --navy: #0c1a2e;
  --navy-light: #152238;
  --cream: #f7f3ec;
  --cream-dark: #ebe4d6;
  --gold: #c4a052;
  --gold-light: #d4b872;
  --salmon: #e07a5f;
  --burgundy: #6b2737;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(12, 26, 46, 0.08);
  --shadow-lg: 0 12px 48px rgba(12, 26, 46, 0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --header-h: 120px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ── Typography ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

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

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 243, 236, 0.98);
  border-bottom: 1px solid rgba(12, 26, 46, 0.06);
  transition: box-shadow var(--transition);
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
  width: min(1400px, 96vw);
  margin-inline: auto;
  padding: 0 0.25rem;
}

.nav-overlay {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.85rem;
  min-width: 0;
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
}

.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-left: -0.15rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active { color: var(--navy); }

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.header-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(12, 26, 46, 0.08);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-switch {
  margin-left: 0;
  margin-right: 0;
}

.header-switch:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.header-switch--mobile {
  display: none;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background: #25d366;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid #25d366;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover {
  color: var(--white);
  background: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-1px);
}

.whatsapp-btn__icon {
  flex-shrink: 0;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: 0;
}

/* ── Shop title (mobile) ── */
.shop-title {
  display: none;
}

.shop-title__inner {
  text-align: center;
}

.shop-title__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5.5vw, 1.85rem);
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.shop-title__tagline {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.header__cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  transition: all var(--transition);
  flex-shrink: 0;
}

.admin-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.admin-btn__icon {
  width: 18px;
  height: 18px;
}

.account-btn-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.account-btn--signed-in {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.account-btn__tooltip {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 120;
  min-width: max-content;
  max-width: 14rem;
  padding: 0.45rem 0.7rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.25rem);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  pointer-events: none;
}

.account-btn__tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 0.85rem;
  border: 6px solid transparent;
  border-bottom-color: var(--navy);
}

.account-btn-wrap:hover .account-btn__tooltip,
.account-btn-wrap:focus-within .account-btn__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 0 2px 8px rgba(12, 26, 46, 0.08);
  text-decoration: none;
}

.btn--whatsapp:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12, 26, 46, 0.88) 0%, rgba(12, 26, 46, 0.65) 50%, rgba(107, 39, 55, 0.5) 100%),
    url('../nottinghill_export/images/fish/salmon-fillets-1.jpg') center/cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding: 4rem 0 5rem;
  color: var(--white);
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 48ch;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat__label {
  font-size: 0.8rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Departments (Home) ── */
.departments {
  padding: 5rem 0;
  background: var(--white);
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  border-radius: var(--radius) var(--radius) 0 0;
}

.departments__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.departments__intro {
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.7;
}

.departments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.dept-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.dept-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.dept-card:hover .dept-card__bg { transform: scale(1.05); }

.dept-card--fish .dept-card__bg {
  background-image: linear-gradient(to top, rgba(12, 26, 46, 0.92) 0%, rgba(12, 26, 46, 0.4) 100%),
    url('../nottinghill_export/images/fish/salmon-fillets-1.jpg');
}

.dept-card--meat .dept-card__bg {
  background-image: linear-gradient(to top, rgba(107, 39, 55, 0.92) 0%, rgba(107, 39, 55, 0.4) 100%),
    url('../nottinghill_export/images/meat/dry-aged-ribeye-steak-250g-x-2-1.jpg');
}

.dept-card__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: var(--white);
}

.dept-card__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.dept-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dept-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.dept-card__cta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

/* ── Page Hero (Fish / Meat) ── */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero--fish.page-hero--banner,
.page-hero--meat.page-hero--banner {
  width: 100%;
  min-height: clamp(420px, 42vw, 560px);
  padding: 0;
  margin-top: var(--header-h);
  display: block;
}

.page-hero--fish {
  min-height: 480px;
  display: flex;
  align-items: center;
}

.page-hero__slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.page-hero__slide.active {
  opacity: 1;
  z-index: 1;
}

.page-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-hero__slide--promo {
  background: var(--cream);
}

.page-hero__slide--promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(12, 26, 46, 0.72) 0%,
    rgba(12, 26, 46, 0.45) 50%,
    rgba(12, 26, 46, 0.65) 100%
  );
  pointer-events: none;
}

.page-hero__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.page-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.page-hero__dot.active,
.page-hero__dot:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.15);
}

.page-hero--banner .page-hero__dot {
  border-color: rgba(12, 26, 46, 0.45);
}

.page-hero--banner .page-hero__dot.active,
.page-hero--banner .page-hero__dot:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.page-hero--meat.page-hero--banner .page-hero__bg {
  background-image: url('../nottinghill_export/images/meat/dry-aged-ribeye-steak-250g-x-2-1.jpg');
}

.page-hero--fish .page-hero__content {
  position: relative;
  z-index: 4;
}

.page-hero--meat .page-hero__bg {
  background-image: linear-gradient(135deg, rgba(107, 39, 55, 0.9) 0%, rgba(60, 20, 30, 0.75) 100%),
    url('../nottinghill_export/images/meat/hg-walter®-beef-fillet-centre-cut-1.jpg');
}

.page-hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 640px;
}

.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.page-hero__switch {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(212, 184, 114, 0.4);
  padding-bottom: 2px;
  transition: color var(--transition);
}

.page-hero__switch:hover { color: var(--white); }

.about__card {
  text-decoration: none;
  transition: transform var(--transition);
}

.about__card:hover { transform: translateY(-4px); }

/* ── Features ── */
.features {
  padding: 5rem 0;
  background: var(--cream);
}

.features__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  background: var(--white);
  border: 1px solid rgba(12, 26, 46, 0.06);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
}

.feature__icon--fish {
  background: linear-gradient(145deg, #1a4a6e, var(--navy));
}

.feature__icon--meat {
  background: linear-gradient(145deg, var(--burgundy), #8a3347);
}

.feature__icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Catalog ── */
.page-hero--banner + .catalog {
  padding-top: 2.5rem;
}

.catalog {
  padding: 3rem 0 5rem;
}

.catalog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.catalog__count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.toolbar__filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover { color: var(--navy); }

.filter-btn.active {
  background: var(--navy);
  color: var(--white);
}

.toolbar__controls {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.toolbar__filters--meat {
  flex: 1;
  min-width: 0;
}

.toolbar__filters--fish {
  flex: 1;
  min-width: 0;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border-radius: 999px;
  min-width: 220px;
}

.search-box svg { color: var(--text-muted); flex-shrink: 0; }

.search-box input {
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  width: 100%;
  outline: none;
}

.sort-select {
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: var(--cream);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  outline: none;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fff;
  transition: transform 0.4s ease;
}

.product-card__img--contain,
.modal__img--contain {
  object-fit: contain !important;
  background-color: #fff !important;
}

.product-card__img--placeholder {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
}

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

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--white);
}

.product-card__badge--fish { background: var(--navy); }
.product-card__badge--meat { background: var(--burgundy); }
.product-card__badge--variety { background: #1a5f7a; }

.product-card__spec {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.product-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  flex: 1;
}

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

.product-card__price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.product-card__price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

.product-card__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  background: var(--white);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 2px solid var(--navy);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(12, 26, 46, 0.08);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.product-card__whatsapp:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── Static pages ── */
.main--page {
  padding-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
}

/* ── About ── */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.about__content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about__list {
  list-style: none;
  margin-top: 1.5rem;
}

.about__list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.about__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.about__address {
  margin-top: 1.5rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  font-style: normal;
}

.about__address a {
  color: var(--navy);
  font-weight: 600;
}

.about__address a:hover {
  color: var(--burgundy);
}

.about__visual {
  position: relative;
  align-self: stretch;
  min-height: 100%;
}

.about__video-wrap {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

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

.about__card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.about__card--fish {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  margin-top: 2rem;
}

.about__card--meat {
  background: linear-gradient(145deg, var(--burgundy), #8a3347);
}

.about__card-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.about__card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.about__card-desc {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 0.25rem;
}

/* ── Contact ── */
.contact {
  padding: 5rem 0;
}

.contact__inner {
  max-width: 32rem;
  margin-inline: auto;
}

.contact__info {
  background: var(--white);
  border: 1px solid rgba(12, 26, 46, 0.06);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact__info address {
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 1.5rem 0;
}

.contact__info a:hover { color: var(--navy); }

.contact__hours h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact__hours dl div {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--cream-dark);
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr) auto;
  align-items: start;
  gap: 2.5rem 3rem;
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  padding: 0.4rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
}

.footer__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.15rem;
}

.footer__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.footer__address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.footer__brand small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
  letter-spacing: 0.03em;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--gold-light);
}

.footer__hours-days {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.35rem;
}

.footer__hours-time {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ── Modal ── */
.modal {
  border: none;
  padding: 0;
  max-width: 900px;
  width: 92vw;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.modal::backdrop {
  background: rgba(12, 26, 46, 0.6);
  backdrop-filter: blur(4px);
}

.modal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow);
  line-height: 1;
}

.modal__gallery {
  background: var(--cream);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background-color: #fff;
  border-radius: var(--radius-sm);
}

.modal__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.modal__thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all var(--transition);
  flex-shrink: 0;
}

.modal__thumb.active,
.modal__thumb:hover {
  opacity: 1;
  border-color: var(--navy);
}

.modal__info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.modal__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.modal__spec {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--cream);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.modal__price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.modal__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  padding: 0.5rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.qty-control button {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--navy);
  transition: background var(--transition);
}

.qty-control button:hover { background: var(--cream-dark); }

.qty-control span {
  font-weight: 600;
  min-width: 2rem;
  text-align: center;
}

/* ── Cart Drawer ── */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.cart-drawer.open { pointer-events: auto; }

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 46, 0.5);
  opacity: 0;
  transition: opacity var(--transition);
}

.cart-drawer.open .cart-drawer__overlay { opacity: 1; }

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

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

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.cart-drawer__header h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
}

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

.cart-item__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--cream);
  flex-shrink: 0;
}

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

.cart-item__name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.cart-item__remove {
  background: none;
  border: none;
  color: var(--salmon);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 0.35rem;
}

.cart-drawer__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--cream-dark);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.cart-total strong {
  font-size: 1.35rem;
  color: var(--navy);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; }
  .departments__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual {
    position: relative;
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin-top: 1rem;
  }
  .modal__inner { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem; }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 4.25rem;
  }

  body {
    overflow-x: hidden;
  }

  .container {
    width: min(1200px, 94vw);
  }

  .header__inner {
    gap: 0.5rem;
    padding: 0 0.35rem;
  }

  .logo {
    gap: 0;
    min-width: 0;
    flex-shrink: 0;
  }

  .logo__mark {
    width: 3.25rem;
    height: 3.25rem;
  }

  .logo__text {
    display: none;
  }

  .header__actions {
    gap: 0.35rem;
    flex-shrink: 0;
  }

  .header__actions .header-switch--desktop {
    display: none;
  }

  .header-switch--mobile {
    display: inline-flex;
    flex: 1;
    min-width: 0;
    max-width: 11.5rem;
    margin-inline: auto;
    padding: 0.42rem 0.55rem;
    font-size: 0.68rem;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }

  .header__cta-group {
    gap: 0.35rem;
  }

  .header__cta-group .whatsapp-btn {
    position: fixed;
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
    z-index: 95;
    padding: 0;
    width: 3.25rem;
    height: 3.25rem;
    justify-content: center;
    border-radius: 50%;
    gap: 0;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  }

  .header__cta-group .whatsapp-btn__label {
    display: none;
  }

  .header__cta-group .whatsapp-btn__icon {
    width: 1.4rem;
    height: 1.4rem;
  }

  .admin-btn {
    width: 2.25rem;
    height: 2.25rem;
  }

  .admin-btn__icon {
    width: 16px;
    height: 16px;
  }

  .menu-toggle {
    display: flex;
    padding: 6px;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(12, 26, 46, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    background: var(--white);
    border-bottom: 1px solid rgba(12, 26, 46, 0.08);
    box-shadow: var(--shadow);
    transform: translateY(-0.5rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.7rem 0.5rem;
    text-align: center;
    background: var(--cream);
    border-radius: var(--radius-sm);
    color: var(--navy);
  }

  .nav__link:hover {
    color: var(--navy);
  }

  .nav__link.active {
    background: var(--navy);
    color: var(--white);
  }

  .nav__link.active::after {
    display: none;
  }

  .shop-title {
    display: block;
    margin-top: var(--header-h);
    padding: 1.1rem 0.75rem 1rem;
    background: var(--cream);
    border-bottom: 1px solid rgba(12, 26, 46, 0.07);
  }

  .shop-title__heading {
    font-size: clamp(1.25rem, 4.8vw, 1.55rem);
    letter-spacing: 0.12em;
  }

  .shop-title__tagline {
    font-size: 0.78rem;
    margin-top: 0.4rem;
  }

  .shop-title--page {
    margin-top: 0;
    padding-top: 1rem;
  }

  .shop-title + .page-hero--banner {
    margin-top: 0;
  }

  .shop-title + .page-hero--banner + .catalog,
  .page-hero--banner + .catalog {
    padding-top: 1.25rem;
  }

  .page-hero--fish.page-hero--banner,
  .page-hero--meat.page-hero--banner {
    min-height: clamp(11rem, 52vw, 16rem);
  }

  .page-hero__slide {
    background: var(--cream);
  }

  .page-hero__slide--promo img {
    object-fit: contain;
    object-position: center;
  }

  .page-hero__slide:not(.page-hero__slide--promo) img {
    object-fit: cover;
    object-position: center;
  }

  .page-hero__dots {
    bottom: 0.75rem;
  }

  .page-hero--banner + .catalog {
    padding-top: 1.75rem;
  }

  .catalog {
    padding: 2rem 0 3.5rem;
  }

  .toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem;
  }

  .toolbar__filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
  }

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

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

  .toolbar__filters--meat .filter-btn:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
    font-size: 0.78rem;
    padding: 0.5rem 0.65rem;
  }

  .toolbar__controls {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .search-box {
    min-width: 0;
    width: 100%;
  }

  .sort-select {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .product-card__body {
    padding: 0.75rem 0.85rem 0.9rem;
  }

  .product-card__name {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .product-card__spec {
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .product-card__price {
    font-size: 1rem;
  }

  .product-card__whatsapp {
    width: 100%;
    font-size: 0.68rem;
    padding: 0.45rem 0.5rem;
  }

  .about {
    padding: 3rem 0;
  }

  .about__grid {
    gap: 2rem;
  }

  .about__visual {
    position: relative;
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin-top: 0.5rem;
  }

  .about__video-wrap {
    position: absolute;
    inset: 0;
  }

  .about__video {
    object-fit: contain;
    background: var(--navy);
  }

  .features {
    padding: 3rem 0;
  }

  .section-title {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .modal {
    width: 96vw;
    max-height: 92vh;
    overflow-y: auto;
  }

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

  .modal__gallery {
    max-height: 45vh;
  }

  .modal__img {
    max-height: 40vh;
    object-fit: contain;
  }

  .modal__info {
    padding: 1.25rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
}

@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .page-hero--fish.page-hero--banner,
  .page-hero--meat.page-hero--banner {
    min-height: clamp(10rem, 48vw, 14rem);
  }
}
