:root {
  --blue-950: #082b61;
  --blue-900: #0c3f86;
  --blue-700: #0a62c5;
  --blue-600: #0876d7;
  --blue-100: #e8f4ff;
  --green: #79b835;
  --ink: #101828;
  --muted: #526070;
  --line: #dbe8f6;
  --surface: #ffffff;
  --shadow: 0 18px 45px rgba(8, 43, 97, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8fbff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 clamp(20px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 232, 246, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(160px, 15vw, 205px);
}

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

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  font-size: 16px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 28px 0 24px;
  color: #0d1726;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue-700);
}

.site-nav a.active::after {
  background: var(--blue-700);
}

.contact-pill,
.primary-button,
.enquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, #0b68d2, #064a9e);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(8, 92, 190, 0.24);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 0 82%, #008f86 82.1% 89%, #064a9e 89.2% 100%),
    radial-gradient(circle at 8% 18%, rgba(8, 118, 215, 0.08) 0 80px, transparent 82px),
    linear-gradient(100deg, #ffffff 0%, #f7fbff 39%, #eef7ff 39.3%, #dbefff 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(520px, 1.22fr);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1200ms ease, visibility 1200ms ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero::before {
  content: "";
  position: absolute;
  left: -84px;
  top: -150px;
  width: 55vw;
  min-width: 620px;
  height: 860px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 30% 25%, rgba(10, 98, 197, 0.09), transparent 34%);
  border-radius: 0 0 58% 0;
  box-shadow: 24px 0 60px rgba(8, 43, 97, 0.07);
  transform: skewX(-9deg);
}

.hero::after {
  content: "";
  position: absolute;
  left: -28px;
  top: 92px;
  width: 44vw;
  min-width: 480px;
  height: 380px;
  opacity: 0.34;
  background-image:
    linear-gradient(30deg, transparent 28px, rgba(8, 43, 97, 0.1) 29px, transparent 31px),
    linear-gradient(150deg, transparent 28px, rgba(8, 43, 97, 0.1) 29px, transparent 31px);
  background-size: 72px 82px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 620px;
  padding: 54px clamp(24px, 5vw, 74px) 126px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms ease 160ms, transform 900ms ease 160ms;
}

.hero-slide.active .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin: 0 0 30px;
  padding: 0 18px;
  color: #0d1726;
  font-size: clamp(24px, 2.7vw, 42px);
  font-weight: 700;
  line-height: 1;
}

.hero-badge::before,
.hero-badge::after {
  content: "";
  position: absolute;
  inset: auto auto 2px 0;
  width: 100%;
  height: 34px;
  border-bottom: 4px solid #09a775;
  border-left: 4px solid #09a775;
  border-radius: 0 0 10px 10px;
}

.hero-badge::after {
  inset: auto 0 2px auto;
  width: 18px;
  border-left: 0;
  border-right: 4px solid #09a775;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 600px;
  color: #302c69;
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: #0b101d;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.hero h1 strong {
  margin-top: 16px;
  color: var(--blue-700);
  font-size: clamp(38px, 4.4vw, 70px);
  line-height: 0.95;
}

.hero-copy > p:not(.hero-badge) {
  max-width: 455px;
  margin: 28px 0 30px;
  color: #172235;
  font-size: 17px;
  line-height: 1.7;
}

.hero-slide > .primary-button {
  position: absolute;
  right: clamp(28px, 5vw, 84px);
  bottom: 42px;
  z-index: 7;
  display: flex;
  width: max-content;
  min-height: 40px;
  padding: 0 20px;
  color: #10213a;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(8, 22, 44, 0.18);
  backdrop-filter: blur(10px);
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 610px;
  overflow: hidden;
  clip-path: ellipse(78% 80% at 74% 48%);
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04);
  transform: scale(1.04);
  transition: transform 2200ms ease, opacity 1200ms ease;
}

.hero-slide.active .hero-media img {
  transform: scale(1);
}

.hero-slide:first-child .hero-media img {
  object-position: center right;
}

.hero-slide:nth-child(2) .hero-media img {
  object-position: center;
}

.hero-slide:nth-child(3) .hero-media img {
  object-position: center;
}

.hero-slide:nth-child(4) .hero-media img {
  object-position: center 42%;
}

.hero-ring {
  position: absolute;
  z-index: 3;
  inset: -70px auto -100px -46px;
  width: 54%;
  min-width: 360px;
  border-left: 3px solid rgba(0, 143, 134, 0.72);
  border-radius: 58% 0 0 58%;
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  z-index: 6;
  left: clamp(24px, 5vw, 74px);
  bottom: 42px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(8, 118, 215, 0.26);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.hero-dots button.active {
  width: 34px;
  background: var(--blue-700);
}

.hero-highlights {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: clamp(18px, 4vw, 54px);
  width: min(78vw, 1120px);
  margin: -46px auto 0;
  padding: 32px clamp(22px, 4vw, 56px);
  background: #fff;
  border: 1px solid rgba(219, 232, 246, 0.9);
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(8, 43, 97, 0.14);
}

.hero-highlights article {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
  text-align: center;
}

.hero-highlights img {
  width: min(100%, 168px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f8fbff;
  border: 1px solid #e4eef8;
  border-radius: 28% 72% 30% 70% / 70% 32% 68% 30%;
}

.hero-highlights article:first-child img {
  object-fit: contain;
  padding: 24px;
}

.hero-highlights h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 15px;
  line-height: 1.25;
}

.page-main {
  background: #fff;
}

.page-hero {
  padding: 78px clamp(20px, 5vw, 76px) 54px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(5, 63, 140, 0.95), rgba(8, 118, 215, 0.76)),
    url("./assets/pharmacy-shelves.jpg") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 670px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.7;
}

.simple-section {
  padding: 56px clamp(20px, 5vw, 76px);
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.simple-grid article,
.contact-panel {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.simple-grid h2,
.contact-panel h2 {
  margin: 14px 0 10px;
  color: var(--blue-950);
  font-size: 21px;
}

.simple-grid p,
.contact-panel p,
.content-list {
  margin: 0;
  color: #243244;
  font-size: 15px;
  line-height: 1.65;
}

.content-list {
  padding-left: 20px;
}

.content-list li + li {
  margin-top: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.about-section,
.products-section,
.commitment-section {
  padding-inline: clamp(20px, 5vw, 76px);
}

.about-section {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(240px, 350px) minmax(280px, 1fr) minmax(300px, 440px);
  gap: 34px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 56px;
  background: #fff;
}

.about-section::before {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  top: 36px;
  width: min(31vw, 360px);
  height: 70%;
  background: linear-gradient(135deg, rgba(10, 98, 197, 0.13), rgba(0, 143, 134, 0.11));
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  z-index: 0;
}

.about-section > * {
  position: relative;
  z-index: 1;
}

.photo-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-panel img,
.product-showcase img,
.commitment-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo {
  position: relative;
  aspect-ratio: 1.45 / 1;
  border-radius: 0;
  clip-path: polygon(0 0, 90% 0, 100% 18%, 100% 100%, 10% 100%, 0 82%);
  box-shadow: 0 24px 52px rgba(8, 43, 97, 0.18);
}

.about-photo img {
  object-position: center 38%;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(180px, 340px) minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 14px;
  text-align: left;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(8, 43, 97, 0.09);
}

.product-showcase img {
  aspect-ratio: 1.85 / 1;
  border-radius: 6px;
}

.product-showcase h3 {
  margin: 0 0 8px;
  color: var(--blue-950);
  font-size: clamp(20px, 2.1vw, 25px);
}

.product-showcase p {
  max-width: 560px;
  margin: 0;
  color: #243244;
  font-size: 15px;
  line-height: 1.65;
}

.commitment-photo {
  align-self: stretch;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.commitment-photo img {
  object-position: center;
}

.building-logo {
  height: auto;
}

.window-row {
  position: absolute;
  left: 20px;
  right: 110px;
  height: 18px;
  background: repeating-linear-gradient(90deg, #74a8ca 0 38px, transparent 38px 46px);
}

.row-one {
  top: 42px;
}

.row-two {
  top: 72px;
}

.entrance {
  position: absolute;
  left: 110px;
  bottom: 0;
  width: 44px;
  height: 50px;
  background: #4a718b;
}

.lawn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34px;
  background: linear-gradient(90deg, #6aaa43, #98c764);
}

.about-copy h2,
.section-heading h2,
.commitment-section h2 {
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: clamp(25px, 2.5vw, 31px);
  line-height: 1.12;
}

.about-copy h2 span,
.commitment-section h2,
.section-heading h2 {
  color: var(--blue-700);
}

.about-copy p,
.commitment-section p,
.commitment-section li {
  color: #111827;
  font-size: 15px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 900;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 22px 28px;
}

.value-grid article,
.commitment-section article {
  min-width: 0;
}

.icon,
.large-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  color: var(--blue-700);
  font-size: 23px;
  font-weight: 900;
  background: linear-gradient(135deg, #dfeeff, #f8fbff);
  border-radius: 999px;
}

.icon svg,
.large-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2px;
  display: block;
}

.value-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 12px;
  background: linear-gradient(135deg, #ffffff, #f5faff);
  border: 1px solid rgba(10, 98, 197, 0.12);
  border-radius: 8px;
}

.value-grid .icon {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), #008f86);
  border-radius: 18px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 16px 28px rgba(10, 98, 197, 0.2);
  line-height: 1;
}

.value-grid h3,
.commitment-section h3 {
  margin: 2px 0 8px;
  color: #071f47;
  font-size: 16px;
}

.value-grid p {
  margin: 0;
  color: #243244;
  font-size: 14px;
  line-height: 1.5;
}

.products-section {
  padding-top: 34px;
  padding-bottom: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 15%, rgba(8, 118, 215, 0.08), transparent 24%),
    linear-gradient(180deg, #eef7ff, #f9fcff);
}

.section-heading h2 {
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: -12px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue-700);
}

.section-heading p {
  margin: 22px 0 24px;
  color: #182233;
  font-size: 15px;
}

.carousel-shell {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-height: 264px;
  padding: 24px 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.product-card:focus {
  border-color: rgba(10, 98, 197, 0.5);
  box-shadow: 0 22px 48px rgba(8, 43, 97, 0.16);
  outline: none;
  transform: translateY(-4px);
}

.product-card h3 {
  margin: 22px 0 6px;
  color: var(--blue-900);
  font-size: 18px;
}

.product-card p {
  margin: 0;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 700;
}

.product-card-image {
  display: block;
  width: min(100%, 188px);
  aspect-ratio: 2 / 1;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  background: #f5f7fa;
  border: 1px solid #d8e1ea;
  border-radius: 8px;
  box-shadow: 0 18px 30px rgba(10, 38, 84, 0.13);
}

.medicine-box {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  width: 168px;
  height: 96px;
  margin: 0 auto;
  padding: 16px 18px;
  color: #1c2636;
  text-align: left;
  background: linear-gradient(160deg, #fff, #edf3f8);
  border: 1px solid #d8e1ea;
  box-shadow: 18px 20px 18px rgba(10, 38, 84, 0.1);
  transform: perspective(360px) rotateY(-15deg);
}

.medicine-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 16px;
  background: var(--accent);
}

.medicine-box::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 11px;
  width: 22px;
  height: 96px;
  background: color-mix(in srgb, var(--accent), #101828 18%);
  transform: skewY(42deg);
  transform-origin: left top;
}

.medicine-box span {
  max-width: 125px;
  font-size: 12px;
}

.medicine-box strong {
  max-width: 125px;
  color: var(--blue-950);
  font-size: 18px;
}

.red {
  --accent: #d6403a;
}

.green {
  --accent: #6aa646;
}

.navy {
  --accent: #114a8f;
}

.crimson {
  --accent: #c62127;
}

.pink {
  --accent: #e168b0;
}

.carousel-control {
  width: 48px;
  height: 48px;
  color: var(--blue-700);
  font-size: 34px;
  line-height: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.compact {
  min-width: 210px;
  margin-top: 2px;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(8, 22, 44, 0.52);
}

.product-modal.open {
  display: grid;
}

.product-modal-panel {
  position: relative;
  width: min(92vw, 520px);
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(8, 22, 44, 0.28);
}

.product-modal-panel h2 {
  margin: 0 0 18px;
  color: var(--blue-950);
  font-size: clamp(26px, 3vw, 34px);
}

.modal-image {
  display: none;
  width: 100%;
  max-height: 240px;
  margin-bottom: 20px;
  object-fit: contain;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.modal-image[src] {
  display: block;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue-900);
  font-size: 28px;
  line-height: 1;
  background: #eef7ff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.modal-products {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-products li {
  padding: 12px 14px;
  color: #182233;
  font-weight: 800;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.commitment-section {
  display: grid;
  grid-template-columns: 1.6fr 0.78fr 1fr;
  gap: 34px;
  max-width: 1280px;
  margin: 0 auto 24px;
  padding-top: 26px;
  padding-bottom: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.commitment-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
}

.large-icon {
  width: 64px;
  height: 64px;
  font-size: 32px;
}

.commitment-section article + article {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.commitment-section ul {
  margin: 0;
  padding-left: 20px;
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(55, 161, 255, 0.32), transparent 28%),
    linear-gradient(135deg, #0b69c4, #053f8c);
  padding: 36px clamp(20px, 6vw, 84px) 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr 1.2fr 1fr;
  gap: 36px;
  max-width: 1280px;
  margin: 0 auto 32px;
}

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

.footer-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 36px;
}

.footer-brand {
  width: 220px;
  padding: 7px 10px;
  background: #fff;
  border-radius: 8px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  font-size: 16px;
}

.footer-grid a:not(.brand):not(.enquiry-button),
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-weight: 800;
}

.enquiry-button {
  width: 100%;
  max-width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1060px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px 4px;
  }

  .site-nav a::after {
    bottom: 4px;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: var(--blue-900);
  }

  .contact-pill {
    display: none;
  }

  .hero-slide,
  .about-section,
  .commitment-section,
  .footer-grid,
  .simple-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 820px;
    background:
      linear-gradient(135deg, transparent 0 86%, #008f86 86.1% 92%, #064a9e 92.2% 100%),
      linear-gradient(180deg, #ffffff 0%, #f7fbff 54%, #dbefff 100%);
  }

  .hero::before {
    width: 120vw;
    min-width: 0;
    height: 610px;
  }

  .hero::after {
    width: 100vw;
    min-width: 0;
  }

  .hero-copy {
    padding-bottom: 28px;
  }

  .hero-slide > .primary-button {
    right: 24px;
    bottom: 32px;
  }

  .hero-media {
    min-height: 390px;
    clip-path: ellipse(92% 78% at 58% 46%);
    background-position: center right;
  }

  .hero-media img {
    min-height: 390px;
  }

  .hero-highlights {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    width: min(92vw, 680px);
    margin-top: -28px;
  }

  .commitment-section article + article,
  .footer-grid > div + div {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 76px;
    padding-inline: 16px;
  }

  .brand {
    width: 168px;
  }

  .hero,
  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 805px;
  }

  .hero::before {
    left: -54px;
    top: -92px;
    transform: skewX(-5deg);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h1 strong {
    font-size: 36px;
  }

  .hero-badge {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .hero-media {
    min-height: 310px;
    clip-path: ellipse(104% 82% at 58% 46%);
  }

  .hero-media img {
    min-height: 310px;
  }

  .hero-slide > .primary-button {
    right: 18px;
    bottom: 28px;
    max-width: calc(100vw - 130px);
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero-ring {
    inset: -50px auto -74px -30px;
    width: 68%;
    min-width: 220px;
  }

  .hero-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 22px 16px;
  }

  .hero-highlights img {
    width: min(100%, 126px);
  }

  .hero-highlights h2 {
    font-size: 13px;
  }

  .value-grid,
  .commitment-main,
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

  .product-track {
    grid-auto-columns: minmax(228px, 78vw);
  }

  .footer-grid {
    gap: 24px;
  }
}

/* ══════════════════════════════════════════
   Therapeutic Focus Areas – Bento Grid
══════════════════════════════════════════ */
.focus-section {
  padding: 56px clamp(20px, 5vw, 76px) 40px;
  background: #f4f8ff;
}

.focus-heading {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.focus-heading h2 {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.1;
}

.focus-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Bento grid: 2 columns, 2 rows */
.focus-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Base card */
.focus-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.focus-card:hover,
.focus-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(8, 43, 97, 0.18);
  outline: none;
}

/* Image-backed cards */
.focus-card:not(.focus-featured) img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.68) saturate(1.1);
  transition: filter 300ms ease, transform 300ms ease;
}

.focus-card:not(.focus-featured):hover img {
  filter: brightness(0.56) saturate(1.2);
  transform: scale(1.04);
}

/* Card body overlay */
.focus-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  color: #fff;
}

.focus-card-body h3 {
  margin: 6px 0 6px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  line-height: 1.15;
}

.focus-card-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.9;
}

/* Tag pill */
.focus-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #fff;
  width: fit-content;
}

.focus-tag--specialty {
  border-color: var(--blue-700);
  color: var(--blue-700);
  background: rgba(10, 98, 197, 0.08);
}

/* Featured (Gastro) card – no bg image, light panel style */
.focus-featured {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(8, 43, 97, 0.08);
}

.focus-featured-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 28px;
  height: 100%;
}

.focus-featured-text {
  flex: 1;
  min-width: 0;
}

.focus-featured-text h3 {
  margin: 12px 0 10px;
  color: var(--blue-950);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
}

.focus-featured-text p {
  margin: 0 0 14px;
  color: #384455;
  font-size: 14px;
  line-height: 1.6;
}

.focus-view-link {
  display: inline-block;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.focus-featured-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef7ff, #dfeeff);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--blue-700);
}

.focus-featured-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.6px;
}

/* ══════════════════════════════════════════
   Compliance Bar
══════════════════════════════════════════ */
.compliance-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 32px;
  padding: 18px clamp(20px, 5vw, 76px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compliance-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.compliance-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #2a3d56;
  font-size: 13px;
  font-weight: 700;
}

.compliance-item svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8px;
  color: var(--blue-700);
}

/* ══════════════════════════════════════════
   About Split Section
══════════════════════════════════════════ */
.about-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 76px);
}

.about-split-copy h2 {
  margin: 0 0 22px;
  color: var(--blue-950);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.12;
}

.about-split-copy p {
  margin: 0 0 16px;
  color: #2c3e52;
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
}

.about-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.about-outline-btn {
  background: transparent;
  color: var(--blue-950);
  border: 2px solid var(--blue-700);
  box-shadow: none;
}

.about-outline-btn:hover {
  background: var(--blue-100);
}

/* Support Card */
.support-card-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card {
  width: 100%;
  max-width: 420px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(8, 43, 97, 0.1);
}

.support-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

.support-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--blue-700);
  background: linear-gradient(135deg, #dfeeff, #f0f8ff);
  border-radius: 12px;
}

.support-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8px;
}

.support-card-header strong {
  display: block;
  color: var(--blue-950);
  font-size: 15px;
  font-weight: 800;
}

.support-card-header span {
  color: var(--muted);
  font-size: 12px;
}

.support-divider {
  margin: 16px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.support-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2c3e52;
  font-size: 13.5px;
  line-height: 1.55;
}

.support-dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  background: #e53935;
  border-radius: 50%;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .focus-bento {
    grid-template-columns: 1fr;
  }

  .about-split-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .support-card {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .focus-card:not(.focus-featured) img {
    height: 180px;
  }

  .focus-featured-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .compliance-bar {
    gap: 12px 20px;
  }

  .about-split-actions {
    flex-direction: column;
  }

  .about-split-actions .primary-button {
    text-align: center;
    justify-content: center;
  }
}

/* Store Custom Colors & Theme */

:root {
  --store-blue: #0c3f86;
  --store-blue-hover: #053f8c;
  --store-accent: #0a62c5;
  --store-light: #e8f4ff;
  --store-border: #cbdff2;
  --store-yellow: #f59e0b;
  --store-orange: #ea580c;
  --store-card-shadow: 0 4px 16px rgba(8, 43, 97, 0.04);
  --store-hover-shadow: 0 12px 30px rgba(8, 43, 97, 0.1);
}

/* Store Header styling */
.store-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border-bottom: 1px solid #e2edf6;
  padding: 14px clamp(20px, 5vw, 76px) 10px;
  min-height: auto;
  gap: 12px;
}

.store-header .header-main-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.store-header .brand {
  flex-shrink: 0;
}

/* Row 1: Header Navigation */
.store-header .site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
}

.store-header .site-nav a {
  padding: 8px 0;
  font-size: 15px;
  font-weight: 700;
}

.store-header .site-nav a::after {
  bottom: 0;
}

/* Row 2: Centered Search Bar */
.store-header .desktop-search {
  align-self: center;
  margin: 4px auto 0;
}

/* Search Bar (shared styling) */
.search-bar {
  display: flex;
  align-items: center;
  background: #f8fbff;
  border: 1px solid #cbe0f2;
  border-radius: 999px;
  padding: 3px;
  height: 48px;
  width: 100%;
  max-width: 540px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar:focus-within {
  border-color: var(--store-accent);
  box-shadow: 0 0 0 3px rgba(10, 98, 197, 0.12);
  background: #fff;
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 0 16px;
  font-size: 14px;
  color: var(--ink);
}

.category-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-left: 1px solid #dbe8f6;
  padding-inline: 12px 28px;
}

.category-select {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  appearance: none;
}

.category-select-wrapper::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--muted);
  pointer-events: none;
}

.search-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--store-blue);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.search-button:hover {
  background: var(--store-blue-hover);
}

.search-button:active {
  transform: scale(0.96);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cart-pill,
.account-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  background: #f8fbff;
  border: 1px solid #dbe8f6;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-pill:hover,
.account-pill:hover {
  background: #fff;
  border-color: var(--store-accent);
  color: var(--store-blue);
}

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--store-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.dropdown-caret {
  font-size: 10px;
  color: var(--muted);
}

/* Mobile and Tablet Header Responsiveness */
@media (max-width: 1060px) {
  .store-header {
    display: block;
    padding: 12px 16px;
  }
  
  .store-header .header-main-row {
    gap: 12px;
  }
  
  .store-header .menu-toggle {
    display: grid;
    margin: 0;
  }
  
  .store-header .brand {
    width: 140px;
  }
  
  .store-header .account-pill {
    display: none;
  }
  
  .store-header .cart-pill {
    background: transparent;
    border: none;
    padding: 0;
  }
  
  .store-header .cart-pill .action-label,
  .store-header .cart-pill .dropdown-caret {
    display: none;
  }
  
  .store-header .cart-pill:hover {
    background: transparent;
  }
  
  .desktop-search {
    display: none;
  }
  
  .mobile-search {
    display: flex;
    max-width: none;
    margin-top: 12px;
  }

  .store-header .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 100%;
    display: none;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 100;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid var(--line);
    margin-top: 0;
    gap: 4px;
  }

  .store-header .site-nav.open {
    display: grid;
  }

  .store-header .site-nav a {
    padding: 12px 4px;
    width: 100%;
  }
}

@media (min-width: 1061px) {
  .mobile-search {
    display: none;
  }
}

/* Store Main */
.store-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px clamp(16px, 4vw, 76px) 64px;
  background: #f8fbff;
}

/* Store Hero Banner */
.store-hero {
  background: linear-gradient(135deg, var(--store-blue) 0%, var(--store-blue-hover) 100%);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px) clamp(32px, 6vw, 84px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  color: #fff;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 43, 97, 0.15);
}

.hero-left h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
  text-transform: none;
}

.hero-left p {
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.6;
  color: #cbe3f8;
  margin: 0 0 32px;
  max-width: 480px;
}

.hero-shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  background: #fff;
  color: var(--store-blue);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.2s;
}

.hero-shop-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  background: #f8fbff;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-badge-card {
  position: absolute;
  bottom: 12px;
  right: -12px;
  background: #fff;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  max-width: 140px;
  border: 1px solid rgba(8, 43, 97, 0.08);
}

.badge-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-percent {
  font-size: 24px;
  font-weight: 800;
  color: var(--store-blue);
}

.badge-off {
  font-size: 11px;
  font-weight: 800;
  color: var(--store-blue);
  margin-top: -3px;
  margin-bottom: 3px;
}

.badge-footer {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
}

@media (max-width: 768px) {
  .store-hero {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 32px;
  }
  
  .hero-right {
    order: -1;
  }
  
  .hero-badge-card {
    right: 12px;
  }
}

@media (max-width: 580px) {
  .store-hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 24px 16px;
    gap: 16px;
  }
  
  .hero-left h1 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .hero-left p {
    font-size: 12px;
    margin-bottom: 16px;
  }
  
  .hero-shop-button {
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }
  
  .hero-illustration {
    max-width: 140px;
    border-radius: 12px;
  }
  
  .hero-badge-card {
    padding: 8px 10px;
    bottom: 8px;
    right: -8px;
    max-width: 100px;
  }
  
  .badge-percent {
    font-size: 18px;
  }
  
  .badge-off {
    font-size: 9px;
  }
}

/* Categories Section */
.categories-section {
  margin-bottom: 40px;
}

.categories-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 4px;
}

.categories-track::-webkit-scrollbar {
  display: none;
}

.category-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  min-width: 110px;
  cursor: pointer;
}

.category-circle-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--store-light);
  border: 1px solid var(--store-border);
  display: grid;
  place-items: center;
  color: var(--store-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease-in-out;
}

.category-circle-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2px;
}

.category-circle-item:hover .category-circle-icon {
  background: var(--store-border);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(10, 98, 197, 0.12);
  color: var(--store-blue-hover);
}

.category-label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .categories-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 8px;
    overflow-x: visible;
  }
  
  .category-circle-item {
    min-width: 0;
  }
  
  .category-circle-icon {
    width: 64px;
    height: 64px;
  }
  
  .category-circle-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .category-label {
    font-size: 11px;
  }
}

/* Store Section Layout */
.store-section {
  margin-bottom: 48px;
}

.store-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.store-section-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.view-all-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--store-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}

.view-all-link:hover {
  opacity: 0.8;
}

.slider-wrapper {
  position: relative;
  display: block;
}

.store-product-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 12px 4px 20px;
}

.store-product-track::-webkit-scrollbar {
  display: none;
}

.slider-arrow {
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dbe8f6;
  box-shadow: 0 4px 12px rgba(8, 43, 97, 0.08);
  display: grid;
  place-items: center;
  color: var(--store-blue);
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  user-select: none;
}

.slider-arrow:hover {
  background: #f8fbff;
  border-color: var(--store-accent);
  transform: translateY(0) scale(1.05);
}

.slider-arrow.prev {
  left: -20px;
}

.slider-arrow.next {
  right: -20px;
}

@media (max-width: 768px) {
  .slider-arrow {
    display: none;
  }
}

/* Store Product Card */
.store-product-card {
  position: relative;
  background: #fff;
  border: 1px solid #eef3f8;
  border-radius: 16px;
  padding: 18px;
  min-width: 215px;
  max-width: 215px;
  flex: 0 0 215px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--store-card-shadow);
  scroll-snap-align: start;
  transition: all 0.25s ease-in-out;
}

.store-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--store-hover-shadow);
  border-color: rgba(8, 43, 97, 0.15);
}

/* Discount Badge colors */
.discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 5;
}

.discount-badge.pct-20 {
  background: var(--store-accent);
  color: #fff;
}

.discount-badge.pct-15 {
  background: var(--store-yellow);
  color: #fff;
}

.discount-badge.pct-10 {
  background: var(--store-orange);
  color: #fff;
}

/* Product Card Elements */
.product-illustration-area {
  height: 150px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.product-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  text-align: left;
  line-height: 1.35;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.sale-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--store-blue);
}

.original-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
}

.add-to-cart-button {
  width: 100%;
  height: 40px;
  border: 1px solid #dbe8f6;
  background: transparent;
  color: var(--store-blue);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  margin-top: auto;
  transition: all 0.2s;
}

.add-to-cart-button svg {
  transition: transform 0.2s;
}

.add-to-cart-button:hover {
  background: var(--store-blue);
  border-color: var(--store-blue);
  color: #fff;
}

.add-to-cart-button:hover svg {
  transform: translateY(-1px);
}

/* Realistic CSS Bottles */
.css-bottle {
  position: relative;
  width: 60px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.css-bottle .cap {
  width: 36px;
  height: 14px;
  background: linear-gradient(90deg, #1e293b 0%, #475569 50%, #1e293b 100%);
  border-radius: 3px 3px 1px 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  z-index: 3;
}

.css-bottle .neck {
  width: 26px;
  height: 8px;
  z-index: 2;
  margin-top: -1px;
}

.css-bottle.white-bottle .neck {
  background: linear-gradient(90deg, #e2e8f0 0%, #ffffff 50%, #cbd5e1 100%);
}

.css-bottle.blue-bottle .neck {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 50%, #1e3a8a 100%);
}

.css-bottle.amber-bottle .neck {
  background: linear-gradient(90deg, #92400e 0%, #f59e0b 50%, #78350f 100%);
}

.css-bottle .body {
  width: 56px;
  height: 74px;
  border-radius: 6px 6px 12px 12px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  margin-top: -1px;
  box-shadow: 
    inset 0 6px 12px rgba(255,255,255,0.4),
    inset -6px 0 10px rgba(0,0,0,0.05),
    inset 6px 0 10px rgba(255,255,255,0.2),
    0 4px 10px rgba(0,0,0,0.08);
}

.css-bottle.white-bottle .body {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
}

.css-bottle.blue-bottle .body {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.css-bottle.amber-bottle .body {
  background: linear-gradient(135deg, #b45309 0%, #78350f 100%);
}

.css-bottle .label {
  position: absolute;
  width: 48px;
  height: 42px;
  bottom: 8px;
  border-radius: 3px;
  padding: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  z-index: 2;
}

.css-bottle.white-bottle .label.green-label {
  background: #09a775;
  color: #fff;
}

.css-bottle.white-bottle .label.darkgreen-label {
  background: #054c3e;
  color: #fff;
}

.css-bottle.white-bottle .label.orange-label {
  background: #ea580c;
  color: #fff;
}

.css-bottle.blue-bottle .label.blue-label {
  background: #2563eb;
  color: #fff;
}

.css-bottle.amber-bottle .label.orange-label {
  background: #f59e0b;
  color: #fff;
}

.label-heading {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.label-bar {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 3px 0;
}

.label-subtext {
  font-size: 6px;
  font-weight: 700;
  opacity: 0.95;
  margin: 0;
  line-height: 1;
}

