/* LeCorps Pharma — colors derived from brand logo (blue + orange) */
:root {
  --primary: #1071b2;
  --primary-dark: #0c5a94;
  --primary-bright: #1e96d6;
  --primary-soft: #156fa3;
  --primary-deep: #0a3d66;
  --accent: #ed6a2b;
  --accent-dark: #cf5519;
  --nav-bg: #f2f7fc;
  --section-alt: #e8f2fa;
  --card-gray: #f4f8fc;
  --text: #1a2f42;
  --text-muted: #3d5a6e;
  --text-nav: #3d4d5c;
  --footer-bg: #0a1f33;
  --footer-muted: #9eb8cc;
  --link: #1071b2;
  --white: #fff;
  --shadow-card: 0 4px 14px rgba(10, 61, 102, 0.12);
  --shadow-domain: 0 18px 80px rgba(16, 92, 150, 0.18);
  --radius: 10px;
  --radius-sm: 8px;
  --header-h: 100px;
  --font: "Montserrat", system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

body[data-font-scale="1"] {
  font-size: 17px;
}

body[data-font-scale="2"] {
  font-size: 18px;
}

body[data-font-scale="3"] {
  font-size: 20px;
}

body.acc-grayscale {
  filter: grayscale(1);
}

body.acc-link-underline a:not(.btn):not(.logo) {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

body.acc-high-contrast {
  background: #000 !important;
  color: #fff !important;
}

body.acc-high-contrast .site-header,
body.acc-high-contrast .product-card,
body.acc-high-contrast .about-card-body,
body.acc-high-contrast .why-box,
body.acc-high-contrast .field-input,
body.acc-high-contrast .enquiry-form {
  background: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}

body.acc-high-contrast .site-nav a,
body.acc-high-contrast .footer-copy,
body.acc-high-contrast .section-sub {
  color: #fff !important;
}

body.acc-high-contrast .btn-outline-dark {
  border-color: #fff !important;
  color: #fff !important;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--link);
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* Accessibility panel */
.access-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  width: 44px;
  height: 100px;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border: 1px solid #ccc;
  border-right: none;
}

.access-btn-icon {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 2px;
}

.access-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  z-index: 9999;
  width: 200px;
  padding: 16px 12px;
  background: var(--white);
  border: 1px solid #ccc;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s var(--ease);
  visibility: hidden;
  pointer-events: none;
}

.access-panel.is-open {
  transform: translate(0, -50%);
  visibility: visible;
  pointer-events: auto;
}

.access-panel-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-nav);
}

.access-action {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  padding: 8px 10px;
  text-align: left;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  color: #000;
}

.access-action:hover {
  background: var(--nav-bg);
}

.access-action.active {
  background: #d3d3d3;
}

.access-reset {
  margin-top: 8px;
  font-weight: 600;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-h);
  background: var(--nav-bg);
  font-size: 17px;
  font-weight: 500;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.header-inner {
  min-height: var(--header-h);
  width: min(1200px, 100% - 32px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: visible;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  align-self: center;
}

.logo-img {
  display: block;
  height: 86px;
  width: auto;
  max-width: min(520px, 70vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 16px rgba(10, 31, 51, 0.12));
}

@media (max-width: 768px) {
  .logo-img {
    height: 70px;
    max-width: min(440px, 76vw);
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 58px;
    max-width: min(360px, 82vw);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  transition: transform 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-block;
  padding-top: 4px;
  border-top: 4px solid transparent;
  color: var(--text-nav);
  text-decoration: none;
  transition: border-color 0.25s, color 0.2s;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--primary);
  outline: none;
}

.nav-link.is-active {
  border-top-color: var(--primary) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-cta {
  background: linear-gradient(90deg, var(--primary-bright), var(--primary-dark));
  color: var(--white) !important;
  border: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 12px rgba(16, 113, 178, 0.35);
}

.btn-cta:hover {
  filter: brightness(1.06);
}

.btn-cta-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-hero-outline {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-nav {
  font-size: 14px;
  padding: 10px 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-outline-dark {
  border: 2px solid var(--accent);
  color: var(--accent-dark);
  background: var(--white);
}

.btn-outline-dark:hover {
  background: rgba(237, 106, 43, 0.08);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.btn-link-maps {
  display: inline-flex;
  margin-top: 12px;
  padding: 0;
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-size: 15px;
}

.btn-link-maps:hover {
  color: var(--accent);
}

.btn-send {
  width: 100%;
  max-width: 200px;
  height: 50px;
  margin-top: 8px;
}

main {
  padding-top: var(--header-h);
}

/* Hero — full-bleed; copy anchored low-left so it clears baked-in artwork labels (e.g. upper-left) */
.hero-landing {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}

.hero-landing-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-pharma.png");
  background-size: cover;
  /* Shift focal area so integrated label art sits clearer of the copy column */
  background-position: 58% 42%;
}

.hero-landing-overlay {
  position: absolute;
  inset: 0;
  /* Softer top-left so “in-image” typography stays visible; stronger toward bottom for white copy */
  background:
    radial-gradient(ellipse 85% 70% at 18% 22%, rgba(10, 31, 51, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 90% 80% at 50% 100%, rgba(10, 31, 51, 0.55) 0%, transparent 55%),
    linear-gradient(105deg, rgba(10, 31, 51, 0.5) 0%, rgba(16, 92, 150, 0.38) 52%, rgba(237, 106, 43, 0.18) 100%);
}

.hero-landing-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 100px 0 min(56px, 8vh);
}

.hero-landing-text {
  max-width: min(500px, 92vw);
  width: 100%;
  margin-left: clamp(4px, 1.5vw, 24px);
  margin-right: auto;
  padding: 1.25rem 1.35rem 1.4rem;
  box-sizing: border-box;
  border-radius: var(--radius);
  color: var(--white);
  text-transform: capitalize;
  background: rgba(10, 31, 51, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.hero-line1 {
  margin: 0 0 8px;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-line2 {
  margin: 0 0 20px;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  opacity: 0.95;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  margin: 0 0 28px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  text-transform: none;
  opacity: 0.95;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .hero-landing-bg {
    background-position: 48% 36%;
  }

  .hero-landing-inner {
    justify-content: center;
    align-items: flex-start;
    padding: 72px 0 48px;
  }

  .hero-landing-text {
    margin-left: clamp(8px, 3vw, 20px);
    margin-right: auto;
    text-align: left;
    max-width: min(440px, calc(100% - 20px));
    padding: 1.15rem 1.2rem 1.3rem;
  }

  .hero-desc {
    margin-inline: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head-left {
  text-align: left;
  margin-left: 0;
  max-width: 640px;
}

.common-heading {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 2em;
  font-weight: 600;
  text-transform: capitalize;
}

.section-sub {
  margin: 0;
  color: #3f3f3f;
  font-weight: 500;
  font-size: 1.05rem;
}

.title-line {
  display: block;
  width: 30%;
  max-width: 120px;
  height: 0;
  margin-top: 8px;
  border-bottom: 3px solid var(--accent);
  border-radius: 2px;
}

/* About */
.section-about .about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

@media (max-width: 900px) {
  .section-about .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: visible;
  min-height: 320px;
}

.about-card-media {
  margin: 0;
  height: 260px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-body {
  position: relative;
  margin: -72px 5% 0;
  width: 90%;
  padding: 20px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

.about-card-body h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 600;
}

.about-card-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #e0e6ea;
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-num {
  font-size: 1.65rem;
  font-weight: 600;
  color: #3a3a3a;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-soft);
}

.stat-hint {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b8fa3;
  letter-spacing: 0.04em;
}

/* Why us */
.section-why {
  background: var(--section-alt);
  padding-bottom: 100px;
}

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

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

.why-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  min-height: 120px;
  padding: 20px 36px;
  background: var(--card-gray);
  border-radius: var(--radius-sm);
}

.why-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.92;
  flex-shrink: 0;
}

.why-title {
  margin: 0 0 8px;
  color: #4e465e;
  font-size: 1rem;
  font-weight: 600;
}

.why-desc {
  margin: 0 0 10px;
  color: #6e6284;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-tags li {
  padding: 4px 10px;
  background: var(--white);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  border: 1px solid rgba(16, 113, 178, 0.2);
}

/* Products — expertise banner + product catalog (imagery from lecorpspharma.in) */
.section-products {
  padding-top: 60px;
}

.expertise-banner {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 48px;
  text-align: left;
}

.expertise-banner-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.expertise-banner-title {
  margin: 0 0 12px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.expertise-banner p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
  max-width: 720px;
  line-height: 1.55;
}

.product-catalog {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.product-category-title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: capitalize;
}

.product-category-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  background: var(--accent);
  border-radius: 2px;
}

.product-category-lead {
  margin: 0 0 24px;
  max-width: 720px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.product-grid-wide {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--primary) 12%, transparent);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.product-card:hover {
  box-shadow: 0 12px 36px rgba(16, 113, 178, 0.14);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .product-card:hover {
    transform: none;
  }
}

.product-card-media {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.product-card-media img {
  position: absolute;
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
}

.product-card-name {
  margin: 0;
  padding: 16px 14px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
  flex: 1;
  display: flex;
  align-items: center;
}

.product-card-desc {
  margin: 0;
  padding: 0 14px 16px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
  flex: 1;
}

.product-card-desc em {
  font-style: italic;
}

.products-overview {
  margin: 32px 0 40px;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--primary) 12%, transparent);
  box-shadow: var(--shadow-domain);
}

.products-overview img {
  display: block;
  width: 100%;
  height: auto;
}

.products-disclaimer {
  margin: 48px 0 0;
  font-size: 0.8rem;
  color: #717171;
  text-align: center;
  font-weight: 500;
}

/* CTA band */
.section-cta-band {
  padding: 56px 0;
  background: linear-gradient(100deg, var(--primary-dark) 0%, var(--primary) 45%, var(--primary-bright) 100%);
  color: var(--white);
}

.cta-band-inner {
  text-align: center;
}

.cta-band-title {
  margin: 0 0 24px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
}

.cta-band-inner .btn-cta {
  background: var(--white);
  color: var(--primary-deep) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-band-inner .btn-cta:hover {
  filter: brightness(0.98);
  color: var(--accent-dark) !important;
}

/* Contact */
.section-contact {
  padding-bottom: 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-domain);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-full {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #515151;
}

.field-input {
  height: 44px;
  padding: 8px 12px;
  font-family: var(--font);
  font-size: 15px;
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
  background: transparent;
  outline: none;
}

.field-input:focus {
  border-bottom-color: var(--primary);
}

.field-textarea {
  height: auto;
  min-height: 100px;
  resize: vertical;
}

.contact-side {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #717171;
  margin-bottom: 4px;
}

.contact-block a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

.contact-block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  padding: 48px 24px 28px;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-tagline {
  margin: 0;
  color: var(--footer-muted);
  font-size: 0.9rem;
}

.footer-copy {
  margin: 0;
  color: var(--footer-muted);
  font-size: 0.875rem;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 16px;
  background: rgba(10, 31, 51, 0.96);
  border-top: 1px solid rgba(237, 106, 43, 0.35);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-inner {
  width: min(720px, 100%);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.cookie-title {
  margin: 0;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
}

.cookie-text {
  margin: 0;
  flex: 1;
  font-size: 13px;
  opacity: 0.9;
}

/* Mobile nav */
@media (max-width: 992px) {
  .site-nav {
    gap: 20px;
  }

  .site-nav ul {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.25s, visibility 0.3s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-link {
    border-top: none;
    border-left: 4px solid transparent;
    padding-left: 8px;
  }

  .nav-link.is-active {
    border-left-color: var(--primary) !important;
  }

  .btn-nav {
    justify-content: center;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 51, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.lightbox-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 960px;
  width: 100%;
  max-height: 85vh;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-modal.is-open .lightbox-content {
  transform: scale(1);
}

.lightbox-wrapper {
  display: flex;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-media {
  flex: 1.2;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 300px;
}

.lightbox-media img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

.lightbox-info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(16, 113, 178, 0.1);
  background: var(--white);
}

#lightbox-title {
  margin: 0 0 16px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-deep, #0a3d66);
  letter-spacing: -0.02em;
}

#lightbox-desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--primary-dark, #1c2b36);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--white, #fff);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  z-index: 2010;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}

.lightbox-close:hover {
  transform: scale(1.1);
  color: var(--accent, #ed6a2b);
}

/* Make product images interactive cursor */
.product-card-media img {
  cursor: pointer;
  transition: transform 0.25s var(--ease);
}

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

@media (max-width: 768px) {
  .lightbox-wrapper {
    flex-direction: column;
    max-height: 80vh;
    overflow-y: auto;
  }
  .lightbox-media {
    padding: 20px;
    min-height: auto;
  }
  .lightbox-media img {
    max-height: 40vh;
  }
  .lightbox-info {
    padding: 24px;
    border-left: none;
    border-top: 1px solid rgba(16, 113, 178, 0.1);
  }
  #lightbox-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  #lightbox-desc {
    font-size: 0.95rem;
  }
}
