:root {
  --primary-green: #0b7a49;
  --dark-green: #045231;
  --light-green: #6bcf8a;
  --gold: #e4b33b;
  --white: #ffffff;
  --light-bg: #f5fbf7;
  --dark-text: #173222;
  --muted-text: #607364;
  --border-color: rgba(11, 122, 73, 0.12);
  --shadow-soft: 0 20px 60px rgba(8, 63, 38, 0.08);
  --shadow-hover: 0 28px 70px rgba(8, 63, 38, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --section-space: clamp(4rem, 6vw, 7rem);
  --header-offset: 110px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--dark-text);
  background:
    radial-gradient(circle at top left, rgba(107, 207, 138, 0.12), transparent 36%),
    radial-gradient(circle at top right, rgba(228, 179, 59, 0.12), transparent 30%),
    linear-gradient(180deg, #fbfffd 0%, #f2faf5 100%);
  overflow-x: hidden;
}

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

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

p {
  color: var(--muted-text);
  line-height: 1.75;
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

ul {
  padding-left: 1rem;
}

main {
  display: block;
  flex: 1;
}

section[id] {
  scroll-margin-top: calc(var(--header-offset) + 1rem);
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  position: relative;
  z-index: 1;
}

.text-primary-brand {
  color: var(--primary-green) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.bg-light-brand {
  background: var(--light-bg);
}

.section-padding {
  padding: var(--section-space) 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--primary-green));
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.page-hero h1,
.hero-copy h1 {
  color: var(--dark-text);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-heading p {
  font-size: 1rem;
}

.btn-brand,
.btn-outline-brand,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}

.btn-brand {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  box-shadow: 0 18px 30px rgba(4, 82, 49, 0.2);
}

.btn-brand:hover,
.btn-brand:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(4, 82, 49, 0.26);
}

.btn-soft {
  color: var(--primary-green);
  background: rgba(11, 122, 73, 0.09);
  border-color: rgba(11, 122, 73, 0.14);
}

.btn-soft:hover,
.btn-soft:focus-visible {
  color: var(--dark-green);
  transform: translateY(-2px);
  background: rgba(11, 122, 73, 0.14);
}

.btn-outline-brand {
  color: var(--primary-green);
  border-color: rgba(11, 122, 73, 0.2);
  background: rgba(255, 255, 255, 0.85);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus-visible {
  color: var(--white);
  border-color: var(--primary-green);
  background: var(--primary-green);
  transform: translateY(-2px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(11, 122, 73, 0.08);
  color: var(--primary-green);
  font-size: 0.92rem;
  font-weight: 600;
}

.surface-card,
.info-card,
.service-card,
.product-card,
.blog-card,
.testimonial-card,
.quality-card,
.contact-card,
.sidebar-card,
.gallery-card,
.feature-card,
.timeline-card,
.story-card,
.team-card,
.process-card,
.metric-card,
.hero-figure-card,
.cta-panel,
.article-card {
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.surface-card,
.info-card,
.service-card,
.product-card,
.blog-card,
.testimonial-card,
.quality-card,
.contact-card,
.sidebar-card,
.feature-card,
.timeline-card,
.story-card,
.team-card,
.process-card,
.metric-card,
.hero-figure-card,
.article-card {
  padding: 1.75rem;
}

.surface-card:hover,
.service-card:hover,
.product-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.gallery-card:hover,
.feature-card:hover,
.team-card:hover,
.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.surface-card,
.service-card,
.product-card,
.blog-card,
.testimonial-card,
.gallery-card,
.feature-card,
.team-card,
.metric-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.icon-badge {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(11, 122, 73, 0.12), rgba(228, 179, 59, 0.18));
  color: var(--primary-green);
  font-size: 1.35rem;
}

.text-card-title {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1080;
  transition: box-shadow var(--transition), background-color var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled .main-navbar {
  box-shadow: 0 18px 45px rgba(10, 54, 34, 0.12);
}

.topbar {
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, var(--dark-green), #0d6a41);
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0;
}

.topbar-links,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  transition: opacity var(--transition);
}

.topbar a:hover {
  opacity: 1;
  color: #fff9e8;
}

.main-navbar {
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 122, 73, 0.08);
}

.main-navbar .container {
  gap: 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-right: 0;
}

.navbar-brand img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(228, 179, 59, 0.44);
  box-shadow: 0 12px 20px rgba(7, 80, 47, 0.12);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1.12rem;
  color: var(--dark-text);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.brand-copy small {
  color: var(--muted-text);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.navbar-toggler {
  width: 50px;
  height: 50px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 122, 73, 0.16);
  border-radius: 16px;
  box-shadow: none !important;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-green);
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-green);
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 7px;
}

.navbar-nav {
  gap: 0.3rem;
}

.nav-link {
  position: relative;
  padding: 0.85rem 1rem !important;
  color: var(--dark-text);
  font-size: 0.96rem;
  font-weight: 600;
  border-radius: 999px;
  transition: color var(--transition), background-color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.55rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--primary-green));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
  background: rgba(11, 122, 73, 0.06);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar-cta {
  margin-left: 1rem;
}

.offcanvas-header {
  gap: 1rem;
}

.offcanvas-header .navbar-brand {
  max-width: calc(100% - 56px);
}

.offcanvas-body {
  overflow-y: auto;
}

.offcanvas-xl {
  border-left: 0;
}

.hero-section {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0 4rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(228, 179, 59, 0.18), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(107, 207, 138, 0.22), transparent 24%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.84), rgba(240, 252, 244, 0.92));
  z-index: 0;
}

.hero-copy {
  position: relative;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.hero-copy p {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-figure-wrap {
  position: relative;
  max-width: 540px;
  margin-inline: auto;
}

.hero-figure-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 245, 0.96)),
    var(--white);
}

.hero-figure-card::before,
.hero-figure-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-figure-card::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -50px;
  background: radial-gradient(circle, rgba(228, 179, 59, 0.28), transparent 68%);
}

.hero-figure-card::after {
  width: 240px;
  height: 240px;
  left: -70px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(11, 122, 73, 0.18), transparent 68%);
}

.hero-logo {
  width: min(100%, 420px);
  margin: 0 auto 1.5rem;
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(7, 61, 36, 0.16);
}

.hero-wordmark {
  border-radius: 24px;
  border: 1px solid rgba(11, 122, 73, 0.1);
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 180px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(8, 58, 35, 0.12);
  animation: floatY 5s ease-in-out infinite;
}

.floating-badge strong {
  display: block;
  color: var(--dark-text);
  font-size: 0.98rem;
}

.floating-badge span {
  color: var(--muted-text);
  font-size: 0.82rem;
}

.floating-badge.top {
  top: 12%;
  left: -8%;
}

.floating-badge.bottom {
  right: -6%;
  bottom: 12%;
  animation-delay: 0.9s;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 122, 73, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary-green);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.stat-card span {
  font-size: 0.95rem;
  color: var(--muted-text);
}

.brand-strip {
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 122, 73, 0.1);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(243, 251, 246, 0.96));
}

.brand-strip img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.check-list li {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted-text);
}

.check-list li i {
  margin-top: 0.16rem;
  color: var(--gold);
}

.page-hero {
  position: relative;
  padding: clamp(4.4rem, 7vw, 6rem) 0 3rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(228, 179, 59, 0.16), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(11, 122, 73, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 251, 245, 0.98));
}

.page-hero .section-heading {
  margin-bottom: 0;
}

.breadcrumb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--primary-green);
  background: rgba(11, 122, 73, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-grid,
.services-grid,
.quality-grid,
.blog-grid,
.team-grid,
.metrics-grid,
.process-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-grid,
.services-grid,
.quality-grid,
.team-grid,
.metrics-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card .meta,
.blog-card .meta,
.product-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(11, 122, 73, 0.08);
  color: var(--primary-green);
  font-size: 0.85rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.product-card {
  overflow: hidden;
}

.product-thumb,
.gallery-thumb,
.blog-thumb,
.article-thumb {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(11, 122, 73, 0.08);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-thumb img,
.gallery-thumb img,
.blog-thumb img,
.article-thumb img {
  width: 100%;
  object-fit: cover;
}

.product-thumb img,
.blog-thumb img {
  aspect-ratio: 4 / 3;
}

.gallery-thumb img {
  aspect-ratio: 5 / 4;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(228, 179, 59, 0.14);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(11, 122, 73, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.search-field {
  flex: 1 1 290px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 56px;
  padding: 0 1rem;
  border: 1px solid rgba(11, 122, 73, 0.12);
  border-radius: 999px;
  background: #fff;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
}

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

.filter-chip {
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(11, 122, 73, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--muted-text);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background-color var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  border-color: transparent;
  transform: translateY(-1px);
}

.product-item[hidden] {
  display: none !important;
}

.empty-state {
  display: none;
  padding: 2rem;
  text-align: center;
  border: 1px dashed rgba(11, 122, 73, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.empty-state.is-visible {
  display: block;
}

.safety-disclaimer {
  display: grid;
  gap: 0.55rem;
  padding: 1.25rem 1.4rem;
  border-radius: 22px;
  border-left: 4px solid var(--gold);
  border: 1px solid rgba(228, 179, 59, 0.24);
  background: linear-gradient(135deg, rgba(228, 179, 59, 0.14), rgba(255, 255, 255, 0.92));
}

.safety-disclaimer strong {
  color: var(--dark-text);
  font-size: 1rem;
}

.safety-disclaimer p {
  color: rgba(23, 50, 34, 0.78);
}

.safety-disclaimer p + p {
  margin-top: 0.2rem;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.catalogue-layout > *,
.product-detail-shell > * {
  min-width: 0;
}

.catalogue-content,
.product-main-column,
.product-side-column,
.product-sections-stack {
  display: grid;
  gap: 1.5rem;
  min-width: 0;
}

.product-sidebar-card {
  position: sticky;
  top: calc(var(--header-offset) + 1.2rem);
  padding: 1.75rem;
}

.product-sidebar-list {
  display: grid;
  gap: 0.75rem;
}

.sidebar-category-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(11, 122, 73, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark-text);
  font-size: 0.94rem;
  font-weight: 600;
  text-align: left;
  transition: transform var(--transition), color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.sidebar-category-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(11, 122, 73, 0.08);
  color: var(--primary-green);
  font-size: 0.82rem;
  line-height: 1;
}

.sidebar-category-button:hover,
.sidebar-category-button.is-active {
  color: var(--primary-green);
  border-color: rgba(11, 122, 73, 0.22);
  background: rgba(11, 122, 73, 0.08);
  box-shadow: 0 14px 30px rgba(8, 63, 38, 0.08);
  transform: translateY(-1px);
}

.sidebar-category-button.is-active span {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
}

.product-toolbar {
  display: grid;
  gap: 1.25rem;
  padding: 1.55rem;
  border: 1px solid rgba(11, 122, 73, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 247, 0.94));
  box-shadow: var(--shadow-soft);
}

.product-toolbar-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.product-toolbar-header > div:first-child {
  min-width: 0;
}

.catalogue-status {
  min-width: 170px;
  display: grid;
  gap: 0.3rem;
  text-align: right;
}

.catalogue-status strong {
  color: var(--primary-green);
  font-size: 1.35rem;
  line-height: 1.1;
}

.catalogue-status span {
  color: var(--muted-text);
  font-size: 0.94rem;
}

.browse-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.browse-tab,
.letter-chip {
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(11, 122, 73, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted-text);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform var(--transition), color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.browse-tab:hover,
.browse-tab.is-active,
.letter-chip:hover,
.letter-chip.is-active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  box-shadow: 0 16px 30px rgba(4, 82, 49, 0.18);
  transform: translateY(-1px);
}

.category-chip-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.alphabet-filter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
  gap: 0.55rem;
}

.letter-chip {
  padding-inline: 0.3rem;
}

.product-search {
  max-width: 100%;
}

.product-search input::placeholder {
  color: rgba(96, 115, 100, 0.78);
}

.pharma-product-card,
.related-product-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 247, 0.95));
  border-color: rgba(11, 122, 73, 0.12);
}

.pharma-product-card--compact {
  height: 100%;
}

.pharma-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pharma-form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(11, 122, 73, 0.09);
  color: var(--primary-green);
  font-size: 0.82rem;
  font-weight: 700;
}

.pharma-shot-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(8, 63, 38, 0.08);
}

.pharma-product-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 236px;
  padding: 1.1rem;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  border: 1px solid rgba(11, 122, 73, 0.08);
  background:
    radial-gradient(circle at top right, rgba(228, 179, 59, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(107, 207, 138, 0.16), transparent 34%),
    linear-gradient(150deg, rgba(236, 248, 240, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -28px 44px rgba(11, 122, 73, 0.04);
}

.pharma-product-thumb::before,
.product-summary-media::before,
.gallery-real-card .gallery-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pharma-product-thumb::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 38%),
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.62), transparent 22%);
}

.pharma-product-thumb::after,
.product-summary-media::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 1rem;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 58, 35, 0.2), rgba(8, 58, 35, 0) 72%);
  filter: blur(8px);
  z-index: 0;
}

.pharma-product-thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(8, 63, 38, 0.16)) drop-shadow(0 6px 10px rgba(8, 63, 38, 0.12));
  transition: transform var(--transition), filter var(--transition);
}

.pharma-product-card--compact .pharma-product-thumb {
  min-height: 210px;
}

.pharma-product-card:hover .pharma-product-thumb img,
.related-product-card:hover .pharma-product-thumb img {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 32px 30px rgba(8, 63, 38, 0.2)) drop-shadow(0 10px 16px rgba(8, 63, 38, 0.14));
}

.pharma-product-body {
  display: grid;
  gap: 1rem;
}

.pharma-generic {
  color: var(--primary-green);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
}

.pharma-generic--large {
  font-size: 1.05rem;
}

.pharma-meta-grid,
.pharma-summary-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.pharma-meta-grid div,
.pharma-summary-facts div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(11, 122, 73, 0.08);
  background: rgba(11, 122, 73, 0.05);
}

.pharma-meta-grid span,
.pharma-summary-facts span {
  color: var(--muted-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pharma-meta-grid strong,
.pharma-summary-facts strong {
  color: var(--dark-text);
  font-size: 0.98rem;
  line-height: 1.45;
}

.pharma-inline-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(228, 179, 59, 0.12);
  color: var(--dark-text);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
}

.pharma-inline-note i {
  margin-top: 0.15rem;
  color: var(--gold);
}

.pharma-product-card .btn-outline-brand,
.related-product-card .btn-outline-brand {
  width: 100%;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.75fr);
  gap: 1.8rem;
  align-items: start;
}

.product-summary-card,
.product-info-card {
  border: 1px solid rgba(11, 122, 73, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.product-summary-card {
  padding: 2rem;
  overflow: hidden;
}

.product-summary-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.product-summary-media {
  position: relative;
  display: grid;
  align-content: center;
  gap: 1rem;
  min-height: 420px;
  padding: 1.2rem;
  overflow: hidden;
  isolation: isolate;
  border-radius: 26px;
  border: 1px solid rgba(11, 122, 73, 0.08);
  background:
    radial-gradient(circle at top right, rgba(228, 179, 59, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(107, 207, 138, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(237, 249, 241, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -32px 46px rgba(11, 122, 73, 0.05);
}

.product-summary-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  filter: drop-shadow(0 34px 30px rgba(8, 63, 38, 0.17)) drop-shadow(0 8px 16px rgba(8, 63, 38, 0.12));
}

.pharma-shot-badge--detail {
  top: 1.1rem;
  left: 1.1rem;
}

.product-preview-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-preview-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 122, 73, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--dark-text);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 12px 20px rgba(8, 63, 38, 0.05);
}

.product-summary-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.product-summary-copy,
.product-summary-copy > * {
  min-width: 0;
}

.product-info-card {
  position: sticky;
  top: calc(var(--header-offset) + 1.2rem);
  padding: 1.75rem;
}

.detail-search-form {
  display: grid;
}

.product-suggestion-group + .product-suggestion-group {
  margin-top: 1.5rem;
}

.product-info-label {
  margin-bottom: 0.85rem;
  color: var(--dark-text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.detail-link-list {
  display: grid;
  gap: 0.8rem;
}

.detail-link-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(11, 122, 73, 0.1);
  background: rgba(11, 122, 73, 0.05);
  color: var(--dark-text);
  font-weight: 600;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
}

.detail-link-list a:hover {
  color: var(--primary-green);
  border-color: rgba(11, 122, 73, 0.2);
  background: rgba(11, 122, 73, 0.08);
  transform: translateY(-1px);
}

.detail-link-list i {
  margin-top: 0.15rem;
  color: var(--primary-green);
}

.medicine-section-card {
  padding: 1.75rem;
}

.medicine-section-copy p + p {
  margin-top: 1rem;
}

.gallery-real-card {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.gallery-real-card button {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-real-card .gallery-thumb {
  position: relative;
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid rgba(11, 122, 73, 0.08);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at top right, rgba(228, 179, 59, 0.15), transparent 26%),
    linear-gradient(160deg, rgba(238, 249, 242, 0.9), rgba(255, 255, 255, 0.98));
}

.gallery-real-card .gallery-thumb::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 32%),
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.58), transparent 18%);
  z-index: 1;
}

.gallery-real-card .gallery-thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(13, 34, 23, 0), rgba(13, 34, 23, 0.08));
  z-index: 1;
  pointer-events: none;
}

.gallery-real-card .gallery-thumb img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-real-card .gallery-caption {
  padding: 1.3rem 1.25rem 1.45rem;
}

.gallery-real-card:hover .gallery-thumb img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04);
}

.modal-content.gallery-lightbox-content {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
}

.gallery-lightbox {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.detail-gallery {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 122, 73, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
}

.detail-summary {
  padding: 1.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 122, 73, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 247, 0.92));
  box-shadow: var(--shadow-soft);
}

.detail-summary h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.detail-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(228, 179, 59, 0.7), rgba(11, 122, 73, 0.3));
}

.timeline-card {
  position: relative;
  padding-left: 4.3rem;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 1.95rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: linear-gradient(135deg, var(--gold), var(--primary-green));
  box-shadow: 0 0 0 5px rgba(11, 122, 73, 0.08);
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  color: var(--primary-green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 1.5rem;
}

.gallery-grid > * {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.gallery-card .gallery-thumb img {
  aspect-ratio: auto;
}

.gallery-caption {
  padding: 0 1.25rem 1.4rem;
}

.quote-mark {
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(228, 179, 59, 0.8);
}

.reviewer {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.reviewer-badge {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  font-weight: 700;
}

.story-card {
  position: relative;
  overflow: hidden;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: auto -100px -100px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 179, 59, 0.18), transparent 64%);
}

.team-avatar {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(11, 122, 73, 0.18), rgba(228, 179, 59, 0.18));
  color: var(--primary-green);
  font-size: 2rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 1.8rem;
  align-items: start;
}

.article-card h2,
.article-card h3 {
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.article-card p + p,
.article-card p + ul,
.article-card h2 + p,
.article-card h3 + p,
.article-card ul + p {
  margin-top: 1rem;
}

.article-card ul li {
  color: var(--muted-text);
  margin-bottom: 0.7rem;
  line-height: 1.7;
}

.disclaimer-box {
  margin-top: 2rem;
  padding: 1.25rem;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: rgba(228, 179, 59, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.8rem;
}

.form-shell {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 122, 73, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.form-control,
.form-select,
textarea.form-control {
  min-height: 56px;
  border-radius: 18px;
  border-color: rgba(11, 122, 73, 0.14);
  padding: 0.95rem 1rem;
  color: var(--dark-text);
}

textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(11, 122, 73, 0.3);
  box-shadow: 0 0 0 0.25rem rgba(11, 122, 73, 0.09);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.error {
  color: #b93d2e;
}

.form-status.success {
  color: var(--primary-green);
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 1.5rem;
  align-items: stretch;
}

.map-support-card {
  padding: 1.75rem;
  border: 1px solid rgba(11, 122, 73, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(228, 179, 59, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 246, 0.98));
  box-shadow: var(--shadow-soft);
}

.map-support-card .eyebrow {
  margin-bottom: 0.9rem;
}

.map-support-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.map-support-list a,
.map-support-list span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 0;
  color: var(--dark-text);
  overflow-wrap: anywhere;
}

.map-support-list i {
  color: var(--primary-green);
}

.map-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.cta-band {
  position: relative;
}

.cta-panel {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  background: linear-gradient(130deg, var(--dark-green), var(--primary-green));
  color: var(--white);
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-panel::before {
  width: 240px;
  height: 240px;
  top: -120px;
  right: -30px;
}

.cta-panel::after {
  width: 200px;
  height: 200px;
  left: -80px;
  bottom: -100px;
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
  color: var(--white);
}

.cta-panel p {
  max-width: 620px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at top right, rgba(228, 179, 59, 0.12), transparent 24%),
    linear-gradient(180deg, #0a4529, #062f1d);
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-brand > div {
  min-width: 0;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 24px;
  flex-shrink: 0;
  border: 2px solid rgba(228, 179, 59, 0.35);
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links,
.contact-list {
  display: grid;
  gap: 0.85rem;
}

.footer-links a,
.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover,
.contact-list a:hover {
  color: #fff7dd;
  transform: translateX(2px);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform var(--transition), background-color var(--transition);
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(228, 179, 59, 0.18);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.4rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.modal-content.gallery-lightbox-content {
  background: #ffffff;
}

.gallery-lightbox-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  background: linear-gradient(160deg, rgba(8, 63, 38, 0.94), rgba(4, 37, 22, 1));
}

.gallery-lightbox-media img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(238, 249, 242, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
}

.gallery-lightbox-copy {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.98);
}

.gallery-lightbox-copy h3 {
  color: var(--dark-text);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.gallery-lightbox .eyebrow::before {
  background: linear-gradient(90deg, var(--gold), var(--primary-green));
}

.gallery-lightbox .btn-close {
  flex-shrink: 0;
  padding: 0.8rem;
  border-radius: 50%;
  background-color: rgba(11, 122, 73, 0.08);
  opacity: 1;
  box-shadow: 0 12px 24px rgba(8, 63, 38, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1399.98px) {
  .floating-badge.top {
    left: 0;
  }

  .floating-badge.bottom {
    right: 0;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --header-offset: 92px;
  }

  .offcanvas-xl {
    width: min(100%, 360px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 246, 0.98));
  }

  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .navbar-nav {
    gap: 0.6rem;
  }

  .nav-link {
    padding-inline: 1rem !important;
  }

  .navbar-cta {
    margin-left: 0;
  }

  .stats-grid,
  .feature-grid,
  .services-grid,
  .quality-grid,
  .team-grid,
  .metrics-grid,
  .process-grid,
  .detail-highlight-grid,
  .contact-grid,
  .detail-layout,
  .article-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogue-layout {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  }

  .product-toolbar-header,
  .product-summary-grid,
  .gallery-lightbox,
  .map-shell {
    grid-template-columns: 1fr;
  }

  .product-toolbar-header {
    display: grid;
  }

  .detail-layout,
  .contact-grid,
  .article-layout {
    align-items: stretch;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 4rem;
    padding-bottom: 3.25rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p,
  .section-heading.centered p,
  .cta-panel p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-badges,
  .cta-actions {
    justify-content: center;
  }

  .floating-badge {
    position: static;
    margin-top: 1rem;
    animation: none;
  }

  .hero-figure-wrap {
    margin-top: 1.5rem;
  }

  .brand-strip {
    margin-top: 2rem;
  }

  .stats-grid,
  .feature-grid,
  .services-grid,
  .quality-grid,
  .team-grid,
  .metrics-grid,
  .process-grid,
  .detail-highlight-grid,
  .contact-grid,
  .detail-layout,
  .article-layout,
  .catalogue-layout,
  .product-detail-shell,
  .product-summary-grid,
  .pharma-meta-grid,
  .pharma-summary-facts,
  .gallery-lightbox {
    grid-template-columns: 1fr;
  }

  .products-toolbar {
    align-items: stretch;
  }

  .product-toolbar-header {
    display: grid;
  }

  .catalogue-status {
    text-align: left;
  }

  .product-sidebar-card,
  .product-info-card {
    position: static;
  }

  .filter-list {
    width: 100%;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 3.85rem 0;
  }

  .main-navbar {
    padding: 0.7rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .page-hero {
    padding: 3.8rem 0 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(2.15rem, 7vw, 3rem);
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 8vw, 3.5rem);
    line-height: 1.08;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 34rem;
  }

  .hero-actions {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .hero-badges {
    gap: 0.65rem;
    margin-top: 1.2rem;
  }

  .chip {
    padding: 0.58rem 0.9rem;
    font-size: 0.86rem;
  }

  .floating-badge {
    min-width: 0;
    padding: 0.85rem 0.9rem;
    gap: 0.6rem;
  }

  .navbar-brand img {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.75rem;
  }

  .surface-card,
  .info-card,
  .service-card,
  .product-card,
  .blog-card,
  .testimonial-card,
  .quality-card,
  .contact-card,
  .sidebar-card,
  .feature-card,
  .timeline-card,
  .story-card,
  .team-card,
  .process-card,
  .metric-card,
  .hero-figure-card,
  .article-card,
  .detail-summary,
  .detail-gallery,
  .form-shell,
  .cta-panel,
  .product-toolbar,
  .product-summary-card,
  .product-info-card,
  .medicine-section-card {
    padding: 1.3rem;
    border-radius: 22px;
  }

  .product-sidebar-card,
  .pharma-product-thumb,
  .product-summary-media {
    border-radius: 22px;
  }

  .products-toolbar,
  .product-toolbar,
  .product-summary-card,
  .product-info-card,
  .form-shell,
  .map-support-card {
    padding: 1.3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
  }

  .stat-card {
    padding: 1.2rem;
  }

  .stat-card span {
    font-size: 0.9rem;
  }

  .browse-tabs {
    grid-template-columns: 1fr;
  }

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

  .pharma-product-thumb {
    min-height: 180px;
    padding: 0.85rem;
  }

  .product-summary-media {
    min-height: auto;
    padding: 1rem;
  }

  .product-preview-meta span {
    font-size: 0.78rem;
  }

  .pharma-meta-grid div,
  .pharma-summary-facts div,
  .safety-disclaimer,
  .pharma-inline-note {
    padding: 0.95rem;
  }

  .gallery-lightbox-media,
  .gallery-lightbox-copy {
    padding: 1rem;
  }

  .gallery-grid {
    columns: 2 180px;
    column-gap: 1rem;
  }

  .map-frame {
    min-height: 300px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --header-offset: 84px;
  }

  body {
    font-size: 0.97rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding: 3.4rem 0;
  }

  .section-heading {
    margin-bottom: 1.6rem;
  }

  .navbar-brand {
    max-width: calc(100% - 70px);
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10.4vw, 2.55rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .hero-section {
    padding: 3.25rem 0 2.6rem;
  }

  .page-hero {
    padding: 3.2rem 0 2.2rem;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 0.98rem;
    line-height: 1.62;
    max-width: 24ch;
  }

  .hero-actions {
    gap: 0.7rem;
    margin-top: 1.25rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn-brand,
  .btn-outline-brand,
  .btn-soft {
    min-height: 48px;
    padding: 0.82rem 1.15rem;
    font-size: 0.95rem;
  }

  .hero-actions .btn-brand,
  .hero-actions .btn-outline-brand,
  .cta-actions .btn-brand,
  .cta-actions .btn-soft,
  .navbar-cta .btn-brand,
  .form-shell .btn-brand {
    width: 100%;
  }

  .hero-badges {
    margin-top: 1rem;
  }

  .chip {
    width: 100%;
    justify-content: center;
    font-size: 0.84rem;
    padding: 0.55rem 0.8rem;
  }

  .hero-figure-wrap {
    max-width: 410px;
    margin-top: 1.15rem;
  }

  .hero-figure-card {
    padding: 1.1rem;
  }

  .floating-badge {
    width: 100%;
    margin-top: 0.7rem;
    justify-content: flex-start;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.45rem;
  }

  .catalogue-status {
    min-width: 0;
  }

  .category-chip-strip .filter-chip,
  .suggestion-chips .filter-chip {
    width: 100%;
    justify-content: center;
  }

  .pharma-shot-badge {
    top: 0.85rem;
    left: 0.85rem;
    min-height: 30px;
    padding: 0.4rem 0.7rem;
    font-size: 0.68rem;
  }

  .product-preview-meta {
    gap: 0.5rem;
    justify-content: center;
  }

  .product-preview-meta span {
    justify-content: center;
    text-align: center;
  }

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

  .pharma-card-head {
    align-items: flex-start;
  }

  .pharma-product-thumb {
    min-height: 168px;
    padding: 0.75rem;
  }

  .pharma-shot-badge {
    max-width: calc(100% - 1.7rem);
  }

  .product-summary-copy h2,
  .detail-summary h2,
  .article-card h2 {
    font-size: clamp(1.95rem, 9vw, 2.4rem);
    line-height: 1.08;
  }

  .text-card-title {
    font-size: 1.16rem;
  }

  .search-field {
    min-height: 52px;
    padding: 0 0.85rem;
    gap: 0.65rem;
  }

  .browse-tab,
  .letter-chip,
  .filter-chip {
    min-height: 44px;
    font-size: 0.88rem;
  }

  .products-toolbar,
  .product-toolbar {
    padding: 1rem;
    gap: 1rem;
  }

  .catalogue-status strong {
    font-size: 1.15rem;
  }

  .catalogue-status span,
  .product-preview-meta span {
    font-size: 0.76rem;
  }

  .gallery-caption,
  .gallery-real-card .gallery-caption {
    padding: 1.1rem 1rem 1.2rem;
  }

  .contact-card p,
  .contact-list span,
  .contact-list a,
  .map-support-list span,
  .map-support-list a {
    font-size: 0.95rem;
  }

  .filter-list {
    gap: 0.6rem;
  }

  .filter-chip {
    flex: 1 1 calc(50% - 0.6rem);
    justify-content: center;
  }

  .gallery-grid {
    columns: 1;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-card {
    padding-left: 3.2rem;
  }

  .timeline-card::before {
    left: 7px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .contact-list {
    justify-items: center;
    text-align: center;
  }

  .contact-list a,
  .contact-list span,
  .footer-social {
    justify-content: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.7rem;
  }

  .map-support-card {
    padding: 1.4rem;
  }

  .map-support-actions .btn-brand,
  .map-support-actions .btn-soft {
    width: 100%;
  }
}

@media (max-width: 389.98px) {
  .hero-copy h1 {
    max-width: 9.2ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy p,
  .page-hero p {
    max-width: 23ch;
  }

  .breadcrumb-badge {
    font-size: 0.84rem;
    padding: 0.5rem 0.8rem;
  }
}
