:root {
  --color-navy-950: #061a31;
  --color-navy-900: #082746;
  --color-navy-800: #0d355b;
  --color-navy-700: #10436f;
  --color-blue-500: #2d8fd8;
  --color-blue-100: #eaf5ff;
  --color-sky-50: #f4f9fd;
  --color-white: #ffffff;
  --color-ink: #111827;
  --color-muted: #5d6b7b;
  --color-border: #dce7f2;
  --shadow-soft: 0 22px 70px rgba(6, 26, 49, 0.14);
  --shadow-card: 0 18px 40px rgba(6, 26, 49, 0.10);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --container: 1260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
}
main { flex: 1 0 auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 9999;
  inset: 16px auto auto 16px;
  background: var(--color-white);
  color: var(--color-navy-950);
  padding: 10px 14px;
  border-radius: 12px;
}
.site-header {
  position: fixed;
  z-index: 100;
  inset: 18px 0 auto;
  transition: all .25s ease;
}
.site-header.is-scrolled { inset-block-start: 8px; }
.header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 16px 10px 20px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 20px;
  background: rgba(6, 26, 49, .82);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(20px);
}
.brand img { width: 150px; height: auto; }
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-nav__list a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease;
}
.primary-nav__list a:hover,
.primary-nav__list a:focus {
  color: var(--color-navy-950);
  background: var(--color-white);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  cursor: pointer;
}
.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-white);
  border-radius: 999px;
}
.hero {
  position: relative;
  min-height: 700px;
  padding: 154px 0 78px;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 16% 12%, rgba(45,143,216,.28), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(255,255,255,.10), transparent 26%),
    linear-gradient(135deg, var(--color-navy-950), var(--color-navy-800));
}
.hero__bg::before,
.hero__bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero__bg::before {
  inset: 0;
  opacity: .08;
  background-image: url("../img/referencia-agam.png");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
}
.hero__bg::after {
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 120px;
  transform: rotate(18deg);
  right: -280px;
  top: -310px;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 500px);
  align-items: center;
  gap: 40px;
}
.hero__content {
  max-width: 660px;
}
.hero h1 {
  max-width: 640px;
  margin: 14px 0 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.hero p {
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-navy-700);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-blue-500);
}
.hero .eyebrow,
.eyebrow--light { color: rgba(255,255,255,.78); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--color-navy-900); color: var(--color-white); box-shadow: 0 12px 24px rgba(8,39,70,.20); }
.hero .button--primary { background: var(--color-white); color: var(--color-navy-950); }
.button--ghost { border-color: rgba(255,255,255,.32); color: var(--color-white); background: rgba(255,255,255,.08); }
.hero__visual {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07));
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.hero-showcase {
  display: grid;
  align-content: stretch;
  gap: 14px;
  max-width: 460px;
  margin-inline-start: auto;
  padding: 20px;
  overflow: hidden;
}
.hero-showcase::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -90px;
  top: -96px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.22), rgba(255,255,255,0) 68%);
}
.hero-showcase__header,
.hero-showcase__product,
.hero-showcase__list {
  position: relative;
  z-index: 1;
}
.hero-showcase__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(6, 26, 49, .24);
}
.hero-showcase__header span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-showcase__header strong {
  color: var(--color-white);
  font-size: 15px;
}
.hero-showcase__product {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 180px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  color: var(--color-navy-950);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.hero-showcase__pack {
  width: 108px;
  height: 126px;
  display: grid;
  place-items: center;
  border-radius: 26px 26px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(220,235,247,.96)),
    linear-gradient(135deg, #fff, #dcebf7);
  box-shadow: inset 0 0 0 1px rgba(13,53,91,.08), 0 18px 36px rgba(6,26,49,.16);
}
.hero-showcase__pack span {
  color: var(--color-navy-800);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .16em;
}
.hero-showcase__kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-blue-500);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-showcase__product h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero-showcase__product p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}
.hero-showcase__list {
  display: grid;
  gap: 8px;
}
.hero-showcase__list div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(6,26,49,.20);
}
.hero-showcase__list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  color: var(--color-navy-900);
  font-weight: 900;
}
.hero-showcase__list p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.mock-product {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--color-navy-800);
  background: linear-gradient(180deg, #fff, #dcebf7);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}
.mock-product span { font-size: 28px; font-weight: 800; letter-spacing: .08em; }
.mock-product small { display: block; margin-top: -34px; font-weight: 700; color: var(--color-muted); }
.mock-product--detail { position: relative; inset: auto; width: 230px; height: 260px; border-radius: 32px; }
.section { padding: 96px 0; }
.section--cards { background: linear-gradient(180deg, #fff, var(--color-sky-50)); }
.section__heading { max-width: 900px; margin-bottom: 42px; }
.section__heading h2,
.split-content h2,
.pharmacy-grid h2,
.contact-grid h2 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.section__heading p,
.split-content p,
.pharmacy-grid p,
.contact-grid p { color: var(--color-muted); font-size: 17px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13,53,91,.08);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: transform .28s ease, box-shadow .28s ease;
  transform-style: preserve-3d;
}
.product-card__image {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}
.product-card__image::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 38%, rgba(255,255,255,.95), rgba(255,255,255,.28) 62%, rgba(255,255,255,0) 100%);
}
.product-card__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 210px;
  height: 208px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(8,39,70,.14));
  transform: translateY(0) scale(1.02);
  transition: transform .28s ease, filter .28s ease;
}
.product-card__image--sun { background: linear-gradient(135deg, #dff4ff, #fff1cc); }
.product-card__image--cream { background: linear-gradient(135deg, #f7fbff, #dcebf7); }
.product-card__image--medicine { background: linear-gradient(135deg, #eaf5ff, #ffffff); }
.product-card__mock {
  width: 120px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  color: var(--color-navy-800);
  background: linear-gradient(180deg, var(--color-white), #cbddeb);
  box-shadow: 0 20px 40px rgba(6,26,49,.14);
}
.product-card__mock span { font-weight: 800; letter-spacing: .08em; }
.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 22px 24px;
}
.product-card__body span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(45,143,216,.10);
  color: #5a9ee0;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-card__body h3 { margin: 0; font-size: 24px; line-height: 1.08; }
.product-card__body p { margin: 0; color: var(--color-muted); }
.product-card__cta {
  min-height: 40px;
  padding-inline: 16px;
  margin-top: auto;
}
.product-card:hover {
  transform: translateY(-8px) rotateX(1.4deg);
  box-shadow: 0 28px 56px rgba(6,26,49,.16);
}
.product-card:hover .product-card__image img {
  transform: translateY(-6px) scale(1.06);
  filter: drop-shadow(0 24px 30px rgba(8,39,70,.18));
}
.section--split { background: var(--color-white); }
.split-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: start; gap: 28px; }
.split-media,
.split-content { min-width: 0; }
.split-media {
  min-height: auto;
  position: relative;
}
.split-media::before {
  display: none;
}
.story-card {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  height: auto;
  padding: 36px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(13,53,91,.08);
  box-shadow: var(--shadow-card);
}
.story-card h3 {
  margin: 10px 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}
.story-card p {
  margin: 0 0 14px;
  color: var(--color-muted);
}
.story-card p:last-child { margin-bottom: 0; }
.team-card {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}
.team-card__avatar {
  flex: 0 0 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy-800), var(--color-blue-500));
}
.team-card p { margin: 4px 0 0; color: var(--color-muted); }
.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(13,53,91,.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.split-content p { color: var(--color-muted); }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 10px;
}
.info-card {
  padding: 24px 26px;
  border: 1px solid rgba(13,53,91,.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  box-shadow: 0 18px 44px rgba(6,26,49,.08);
}
.info-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}
.info-card p {
  margin: 0;
  color: var(--color-muted);
}
.check-list { padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: var(--color-muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-blue-100);
  color: var(--color-navy-800);
  font-weight: 900;
}
.section--dark {
  color: var(--color-white);
  background:
    radial-gradient(circle at 84% 16%, rgba(45,143,216,.26), transparent 32%),
    linear-gradient(135deg, var(--color-navy-950), var(--color-navy-800));
}
.pharmacy-grid { display: grid; grid-template-columns: 1fr minmax(320px, 480px); gap: 52px; align-items: center; }
.pharmacy-grid p { color: rgba(255,255,255,.74); }
.pharmacy-panel {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.pharmacy-panel h3 { margin-top: 0; font-size: 26px; }
.pharmacy-panel p { margin: 0 0 22px; color: rgba(255,255,255,.78); }
.feature-list { display: grid; gap: 16px; }
.feature-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
}
.feature-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-navy-900);
  font-weight: 900;
}
.feature-list p { margin: 0; }
.section--contact { background: var(--color-sky-50); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(13,53,91,.08);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}
.contact-form label { display: grid; gap: 8px; color: var(--color-navy-900); font-weight: 800; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--color-ink);
  background: #fbfdff;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--color-blue-500); box-shadow: 0 0 0 4px rgba(45,143,216,.12); }
.site-footer {
  margin-top: auto;
  color: rgba(255,255,255,.78);
  background: var(--color-navy-950);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 46px;
  padding: 58px 0;
}
.footer__brand img { width: 150px; margin-bottom: 16px; }
.site-footer h2 { margin: 0 0 16px; color: var(--color-white); font-size: 17px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a:hover { color: var(--color-white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.section--page,
.section--archive { padding-top: 170px; }
.content-narrow { max-width: 820px; }
.entry-content { color: var(--color-muted); }
.entry-content a { color: var(--color-navy-700); text-decoration: underline; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { border: 1px solid var(--color-border); border-radius: 22px; overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.post-card__body { padding: 22px; }
.post-card h2 { font-size: 22px; line-height: 1.1; }
.text-link { color: var(--color-navy-700); font-weight: 800; }
.reveal-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-on-scroll { opacity: 1; transform: none; }
}
@media (max-width: 980px) {
  .site-header { inset-inline: 0; }
  .header__inner { position: relative; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    padding: 14px;
    border-radius: 18px;
    background: var(--color-navy-950);
    box-shadow: 0 24px 60px rgba(0,0,0,.2);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav__list { display: grid; gap: 4px; }
  .primary-nav__list a { display: flex; }
  .hero { min-height: auto; padding-top: 150px; }
  .hero__grid,
  .split-grid,
  .pharmacy-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 760px; }
  .hero__visual { min-height: auto; }
  .hero-showcase { max-width: 100%; }
  .split-media { min-height: auto; }
  .story-card {
    padding: 24px;
  }
  .split-content {
    padding: 28px;
  }
  .about-pillars { grid-template-columns: 1fr; }
  .product-grid,
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand img { width: 126px; }
  .header__inner { border-radius: 16px; }
  .hero { padding-bottom: 58px; }
  .hero__grid { gap: 36px; }
  .hero h1 { font-size: 40px; }
  .hero-showcase { padding: 16px; }
  .hero-showcase__product { grid-template-columns: 1fr; padding: 20px; }
  .hero-showcase__pack { width: 118px; height: 132px; }
  .hero-showcase__product h2 { font-size: 23px; }
  .section { padding: 70px 0; }
  .product-grid,
  .post-grid,
  .footer__grid { grid-template-columns: 1fr; }
  .story-card {
    padding: 20px;
  }
  .split-content { padding: 22px; }
  .footer__grid { gap: 30px; }
}

.section__actions { margin-top: 34px; display: flex; justify-content: center; }
.section__actions .button {
  min-height: 46px;
  padding-inline: 20px;
}
.catalog-hero,
.product-detail-hero {
  padding: 170px 0 80px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 88% 18%, rgba(45,143,216,.30), transparent 34%),
    linear-gradient(135deg, var(--color-navy-950), var(--color-navy-800));
}
.catalog-hero__grid,
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  gap: 52px;
  align-items: center;
}
.catalog-hero h1,
.product-detail-content h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: .95;
  letter-spacing: -0.055em;
}
.catalog-hero p,
.product-detail-content p { color: rgba(255,255,255,.76); font-size: 18px; }
.catalog-search {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.catalog-search label { display: block; margin-bottom: 10px; font-weight: 800; }
.catalog-search div { display: flex; gap: 10px; }
.catalog-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--color-ink);
  background: var(--color-white);
}
.section--catalog-list { background: var(--color-sky-50); }
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }

.catalog-sidebar {
  position: sticky;
  top: 110px;
  padding: 22px;
  border: 1px solid rgba(13,53,91,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.catalog-sidebar h2 { margin: 0 0 16px; font-size: 20px; }
.catalog-filter {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--color-muted);
  font-weight: 700;
}
.catalog-filter:hover,
.catalog-filter.is-active { background: var(--color-blue-100); color: var(--color-navy-900); }
.catalog-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.catalog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13,53,91,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .28s ease, box-shadow .28s ease;
}
.catalog-card__media {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fbff, #dcebf7);
}
.catalog-card__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 38%, rgba(255,255,255,.95), rgba(255,255,255,.26) 62%, rgba(255,255,255,0) 100%);
}
.catalog-card__media img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: 162px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(8,39,70,.14));
  transition: transform .28s ease, filter .28s ease;
}
.catalog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px;
}
.catalog-card__body > span,
.product-detail-content__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(45,143,216,.10);
  color: #5a9ee0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.catalog-card h2 { margin: 0; font-size: clamp(22px, 2vw, 30px); line-height: 1.02; letter-spacing: -0.045em; }
.catalog-card h2 a { color: var(--color-navy-950); }
.catalog-card__body p { margin: 0; color: var(--color-muted); }
.catalog-card__cta,

.product-detail-content__back {
  min-height: 44px;
  padding-inline: 18px;
  margin-top: 8px;
  border: 0 !important;
  border-radius: 8px !important;
  background: var(--color-navy-900) !important;
  color: var(--color-white) !important;
  box-shadow: 0 12px 24px rgba(8,39,70,.20) !important;
}

.catalog-card:hover {
  transform: translateY(-8px) rotateX(1.4deg);
  box-shadow: 0 28px 56px rgba(6,26,49,.16);
}
.catalog-card:hover .catalog-card__media img {
  transform: translateY(-5px) scale(1.06);
  filter: drop-shadow(0 24px 30px rgba(8,39,70,.18));
}

.empty-state { padding: 38px; border-radius: 24px; background: #fff; box-shadow: var(--shadow-card); }
.product-detail-media {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(13,53,91,.08);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.product-detail-media img {
  width: min(100%, 470px);
  max-height: 320px;
  object-fit: contain;
  transform: scale(1.14);
  filter: drop-shadow(0 26px 34px rgba(8,39,70,.16));
}
.mock-product--detail { position: relative; inset: auto; width: 230px; height: 260px; border-radius: 32px; }
.product-info-grid { display: grid; grid-template-columns: 1fr 380px; gap: 42px; align-items: start; }
.product-description,
.product-facts {
  padding: 30px;
  border: 1px solid rgba(13,53,91,.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.product-description h2,
.product-facts h2 { margin-top: 0; }
.product-facts dl { display: grid; gap: 0; margin: 0; }
.product-facts dl div { padding: 14px 0; border-top: 1px solid var(--color-border); }
.product-facts dt { color: var(--color-navy-900); font-weight: 900; }
.product-facts dd { margin: 4px 0 0; color: var(--color-muted); }
.product-note { margin: 22px 0 0; color: var(--color-muted); font-size: 14px; }
.pagination { margin-top: 34px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 999px; background: #fff; color: var(--color-navy-900); font-weight: 800; }
.page-numbers.current { background: var(--color-navy-900); color: #fff; }
@media (max-width: 980px) {
  .catalog-hero__grid,
  .product-detail-grid,
  .catalog-layout,
  .product-info-grid { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .catalog-hero,
  .product-detail-hero { padding-top: 145px; }
  .catalog-search div { display: grid; }
  .catalog-search input { min-height: 50px; }
  .catalog-grid { grid-template-columns: 1fr; }
}

.catalog-hero--shop {
  padding-bottom: 36px;
}

.woocommerce-shell .woocommerce-result-count,
.woocommerce-shell .woocommerce-ordering,
.woocommerce-shell .price,
.woocommerce-shell .product_meta,
.woocommerce-shell .sku_wrapper,
.woocommerce-shell .posted_in,
.woocommerce-shell .tagged_as,
.woocommerce-shell .upsells.products,
.woocommerce-shell .woocommerce-tabs,
.woocommerce-shell .woocommerce-breadcrumb {
  display: none !important;
}

.woocommerce-shell ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-shell ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce-shell ul.products::before,
.woocommerce-shell ul.products::after {
  display: none !important;
}

.woocommerce-shell .woocommerce-pagination {
  margin-top: 34px;
}

.woocommerce-shell .woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 0;
  padding: 0;
  margin: 0;
}

.woocommerce-shell .woocommerce-pagination ul.page-numbers li {
  float: none;
  border: 0;
}

.woocommerce-shell .woocommerce-pagination .page-numbers a,
.woocommerce-shell .woocommerce-pagination .page-numbers span {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--color-navy-900);
  font-weight: 800;
}

.woocommerce-shell .woocommerce-pagination .page-numbers.current {
  background: var(--color-navy-900);
  color: #fff;
}

.woocommerce-shell .woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-shell--single {
  padding-top: 48px;
  padding-bottom: 24px;
}

.product-detail-wrapper .product-detail-grid {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  grid-template-columns: minmax(320px, 500px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.product-detail-wrapper {
  display: grid;
  gap: 40px;
}

.product-detail-wrapper .product-detail-content {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.product-detail-content__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(45,143,216,.10);
  color: #5a9ee0;
}

.product-detail-wrapper .product-detail-content h1 {
  margin: 0;
  color: var(--color-navy-950);
  font-size: clamp(38px, 5vw, 74px);
  line-height: .94;
  letter-spacing: -0.055em;
}



.product-related {
  display: grid;
  gap: 22px;
}

.product-related h2 {
  margin: 0;
  color: var(--color-navy-950);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.catalog-hero__grid--shop {
  grid-template-columns: 1fr;
  gap: 0;
}

.catalog-hero__content--shop {
  max-width: 720px;
}

.catalog-hero__content--shop h1 {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .woocommerce-shell ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-wrapper .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .woocommerce-shell ul.products {
    grid-template-columns: 1fr;
  }

  .catalog-card__media {
    min-height: 200px;
  }

  .catalog-card__media img {
    height: 150px;
  }

  .product-detail-media {
    min-height: 260px;
    padding: 18px;
  }
}