:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --muted: #86868b;
  --line: rgba(0, 0, 0, 0.08);
  --blue: #0071e3;
  --blue-dark: #0077ed;
  --green: #34c759;
  --soft-green: #e5f9e9;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.header-nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.header-nav a {
  opacity: 0.8;
  transition: opacity 200ms ease;
}

.header-nav a:hover {
  opacity: 1;
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 360px;
  align-items: center;
  justify-items: center;
  padding: 48px clamp(20px, 5vw, 72px);
  background: 
    linear-gradient(to bottom, rgba(255, 255, 255, 0.4), var(--bg)),
    url("images/hero-zen-lotus.jpg") center/cover;
  color: var(--ink);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1,
.product-copy h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  line-height: 1.05;
}

.hero p:not(.eyebrow),
.product-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 24px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero .eyebrow,
.product-copy .eyebrow {
  color: var(--blue);
}

.hero-presenter {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
}

.primary-button,
.secondary-button,
.card-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 200ms ease,
    opacity 200ms ease;
}

.primary-button {
  padding: 0 24px;
}

.secondary-button {
  width: fit-content;
  margin-top: 22px;
  padding: 0 22px;
  border: 1px solid rgba(0, 113, 227, 0.22);
  background: #ffffff;
  color: var(--blue);
}

.primary-button:hover,
.card-action:hover {
  background: var(--blue-dark);
  transform: scale(0.98);
}

.secondary-button:hover {
  background: #eef7ff;
  transform: scale(0.98);
}

.section {
  padding: 48px clamp(20px, 5vw, 72px);
}

.compact-section {
  padding-top: 30px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.trust-band h2,
.detail-panel h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.featured-product-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.featured-product-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
  border-color: transparent;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f5f5f7;
}

.product-card-body {
  display: grid;
  min-height: 220px;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.product-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0;
}

.featured-product-card h3 {
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.featured-label {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.offer-text {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.card-action {
  width: fit-content;
  margin-top: auto;
  padding: 0 20px;
  font-size: 0.9rem;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
  gap: 40px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px) 72px;
  padding: 48px;
  border-radius: 24px;
  background: #ffffff;
}

.trust-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.site-footer {
  padding: 40px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--bg);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 60px;
  align-items: center;
  padding: 80px clamp(20px, 5vw, 72px);
  background: var(--surface);
  color: var(--ink);
}

.product-hero img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.featured-product-hero {
  background: 
    linear-gradient(135deg, rgba(245, 245, 247, 0.8), rgba(245, 245, 247, 0.95)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--ink);
}

.featured-product-hero .product-copy h1 {
  color: var(--ink);
  font-weight: 700;
}

.featured-product-hero .product-copy p:not(.eyebrow) {
  color: var(--muted);
}

.featured-product-hero .product-copy .eyebrow {
  color: var(--blue);
}

.hero-offer {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: -10px 0 24px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.1);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.featured-product-hero > img {
  width: min(100%, 500px);
  max-height: 540px;
  justify-self: center;
  object-fit: cover;
  border-radius: 24px;
}

.featured-product-hero .primary-button,
.featured-product-card .card-action {
  background: var(--blue);
}

.featured-product-hero .primary-button:hover,
.featured-product-card .card-action:hover {
  background: var(--blue-dark);
}

.product-gallery-section {
  padding: 60px clamp(20px, 5vw, 72px) 20px;
  background: var(--bg);
}

.product-gallery-viewer {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.gallery-main {
  overflow: hidden;
  width: min(100%, 760px);
  margin: 0;
  justify-self: center;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  justify-self: center;
}

.gallery-thumb {
  overflow: hidden;
  height: 82px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color 200ms ease,
    opacity 200ms ease;
  opacity: 0.6;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb:focus,
.gallery-thumb.active {
  border-color: var(--blue);
  opacity: 1;
  outline: none;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding: 64px clamp(20px, 5vw, 72px) 30px;
  background: var(--bg);
}

.detail-panel {
  padding: 32px;
  border-radius: 24px;
  background: #ffffff;
}

.detail-panel p {
  color: var(--muted);
}

.info-section {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.info-section:last-of-type {
  border-bottom: 0;
}

.info-section h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.info-section p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.warranty-line {
  margin-top: 16px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.feature-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 20px;
  border-radius: 16px;
  background: #f5f5f7;
  font-weight: 600;
}

.feature-list li strong,
.feature-list li span {
  display: block;
}

.feature-list li span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.95rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-grid p {
  min-height: 130px;
  margin: 0;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.95rem;
}

.final-cta {
  margin: 0 clamp(20px, 5vw, 72px) 72px;
  padding: 60px 40px;
  border-radius: 24px;
  background: #ffffff;
  text-align: center;
}

.final-cta p {
  max-width: 620px;
  margin: 16px auto 32px;
  color: var(--muted);
  font-size: 1.1rem;
}

.final-offer {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(52, 199, 89, 0.1);
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .product-grid,
  .product-detail-grid,
  .benefit-grid,
  .product-hero,
  .trust-band,
  .gallery-thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-main {
    width: min(100%, 620px);
  }

  .gallery-thumb {
    height: 78px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .product-hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }
  
  .product-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero h1,
  .product-copy h1 {
    font-size: 2.5rem;
  }

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

  .section,
  .product-detail-grid {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .product-card-body {
    min-height: 190px;
  }

  .trust-band,
  .final-cta {
    margin-bottom: 48px;
    padding: 32px 24px;
    grid-template-columns: 1fr;
  }

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

  .gallery-main {
    width: 100%;
  }

  .gallery-thumb {
    height: 88px;
  }
}

.floating-offer-banner {
  position: fixed;
  top: 104px;
  right: clamp(18px, 4vw, 54px);
  z-index: 40;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(29, 95, 214, 0.9);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(29, 95, 214, 0.25);
  transform: translateY(var(--offer-banner-offset, 0px));
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(12px);
}

.floating-offer-banner:hover {
  background: var(--blue-dark);
  box-shadow: 0 22px 42px rgba(29, 95, 214, 0.32);
}

@media (max-width: 700px) {
  .floating-offer-banner {
    top: 118px;
    right: 16px;
    left: 16px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.95rem;
  }
}

.floating-offer-banner {
  min-height: 60px;
  padding: 0 32px;
  background: rgba(232, 116, 126, 0.94);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
  box-shadow: 0 20px 42px rgba(232, 116, 126, 0.32);
}

.floating-offer-banner:hover {
  background: #d95f6f;
  box-shadow: 0 24px 50px rgba(217, 95, 111, 0.38);
}

@media (max-width: 700px) {
  .floating-offer-banner {
    min-height: 52px;
    font-size: 1.05rem;
  }
}

.floating-offer-banner {
  max-width: min(420px, calc(100vw - 32px));
  min-height: 68px;
  padding: 10px 26px;
  text-align: center;
  line-height: 1.18;
  white-space: normal;
}

.product-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
}

.product-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
  border-color: #cfe3ff;
}

.product-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #f4f1ff 100%);
  border-color: #ded6ff;
}

.product-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff 0%, #f0fbf6 100%);
  border-color: #ccebdd;
}

.product-card:nth-child(5) {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f1 100%);
  border-color: #ffd8ca;
}

.product-card:nth-child(6) {
  background: linear-gradient(180deg, #ffffff 0%, #eefbff 100%);
  border-color: #c9edf7;
}

.product-card:nth-child(7) {
  background: linear-gradient(180deg, #ffffff 0%, #f2faee 100%);
  border-color: #d7ebcf;
}

.product-card:nth-child(8) {
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
  border-color: #e4d8ff;
}

.product-card:nth-child(9) {
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  border-color: #d0e4fb;
}

.product-card:nth-child(10) {
  background: linear-gradient(180deg, #ffffff 0%, #fff6fb 100%);
  border-color: #f3d2e4;
}

.floating-offer-banner {
  max-width: min(500px, calc(100vw - 32px));
  min-height: 76px;
  padding: 12px 34px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, #ff8f9b 0%, #f25f7a 52%, #d94865 100%);
  color: #fff;
  font-size: 1.22rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow:
    0 24px 54px rgba(217, 72, 101, 0.38),
    0 0 0 6px rgba(255, 143, 155, 0.14);
}

.floating-offer-banner::before {
  margin-right: 10px;
  content: "OFERTA";
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.74rem;
  font-weight: 950;
}

.floating-offer-banner:hover {
  background: linear-gradient(135deg, #ff7f8e 0%, #e94f6e 52%, #c93658 100%);
}

@media (max-width: 700px) {
  .floating-offer-banner {
    min-height: 68px;
    padding: 10px 18px;
    font-size: 0.92rem;
  }

  .floating-offer-banner::before {
    font-size: 0.68rem;
  }
}

.floating-offer-banner {
  top: auto;
  right: clamp(16px, 3vw, 34px);
  bottom: 22px;
  transform: translateY(0);
}

.hero-content .floating-offer-banner {
  position: static;
  max-width: min(100%, 480px);
  min-height: 58px;
  margin-top: 10px;
  padding: 10px 24px;
  transform: none;
}

.white-label-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: center;
  padding: 56px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 251, 246, 0.94)),
    url("images/hero-zen-water.jpg") center/cover;
}

.white-label-copy {
  max-width: 780px;
}

.white-label-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.8vw, 3.6rem);
  line-height: 1.08;
}

.white-label-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #515154;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.white-label-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.white-label-points span {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #1d1d1f;
  font-weight: 750;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

@media (max-width: 700px) {
  .floating-offer-banner {
    top: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
    transform: translateY(0);
  }

  .hero-content .floating-offer-banner {
    position: static;
    min-height: 54px;
    margin-top: 8px;
    padding: 10px 16px;
  }
}

@media (max-width: 820px) {
  .white-label-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .white-label-band {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .white-label-points {
    grid-template-columns: 1fr;
  }

  .white-label-points span {
    min-height: 64px;
  }
}

.cream-offer-section {
  padding: 58px clamp(20px, 5vw, 72px) 24px;
  background: #fff;
}

.cream-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cream-offer-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 300px;
  padding: 28px;
  border: 1px solid #d8eadc;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f1fbf4 100%);
  box-shadow: 0 18px 38px rgba(22, 32, 51, 0.08);
}

.cream-offer-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #dff7ef;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cream-offer-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
}

.cream-offer-card p {
  margin: 0;
  color: var(--muted);
}

.cream-offer-card .primary-button {
  width: fit-content;
  margin-top: auto;
}

.cream-offer-card.best-offer {
  border-color: rgba(232, 116, 126, 0.5);
  background: linear-gradient(180deg, #ffffff 0%, #fff2f4 100%);
  box-shadow: 0 22px 48px rgba(232, 116, 126, 0.18);
}

.cream-offer-card.best-offer span {
  background: #ffe1e6;
  color: #c93658;
}

@media (max-width: 820px) {
  .cream-offer-grid {
    grid-template-columns: 1fr;
  }
}

.cream-offer-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(22, 32, 51, 0.12);
}

.product-card:nth-child(4) .offer-text {
  padding: 8px 10px;
  border-radius: 8px;
  background: #ffe1e6;
  color: #c93658;
  font-size: 1.04rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(201, 54, 88, 0.14);
}

.cream-product-hero {
  min-height: auto;
  padding-top: 34px;
  padding-bottom: 34px;
  gap: 28px;
}

.cream-product-hero .product-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cream-product-hero .product-copy p:not(.eyebrow) {
  margin: 14px 0 20px;
  font-size: 1rem;
}

.cream-product-hero > img {
  width: min(100%, 360px);
  max-height: 380px;
  object-fit: cover;
}

.cream-product-hero + .cream-offer-section {
  padding-top: 34px;
}

.header-slogan {
  flex: 1;
  max-width: 520px;
  margin: 0;
  color: #40546b;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 900px) {
  .header-slogan {
    order: 3;
    width: 100%;
    max-width: none;
    text-align: left;
  }
}

.header-slogan {
  max-width: 600px;
  padding: 9px 16px;
  border: 1px solid rgba(29, 95, 214, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(234, 246, 255, 0.94), rgba(241, 251, 244, 0.94));
  color: #154aa9;
  font-size: clamp(0.98rem, 1.6vw, 1.18rem);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(29, 95, 214, 0.12);
}

.purchase-options {
  display: grid;
  gap: 8px;
  width: min(100%, 280px);
  margin: 18px 0 16px;
}

.final-cta .purchase-options {
  margin: 0 auto 20px;
}

.purchase-options label {
  color: #0f4f68;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.purchase-options select {
  width: 100%;
  min-height: 48px;
  padding: 0 44px 0 16px;
  border: 1px solid rgba(0, 113, 227, 0.24);
  border-radius: 14px;
  background: #ffffff;
  color: #123442;
  font: inherit;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 113, 227, 0.08);
}

.payment-notice {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin: 2px 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff2c7, #e6f7ff);
  color: #0f4f68;
  font-size: 0.98rem;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0, 113, 227, 0.12);
}

.final-payment-notice {
  margin: 0 auto 22px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 113, 227, 0.12);
}

.hero-quantic-logo {
  width: min(100%, 520px);
  max-height: 170px;
  object-fit: contain;
  margin: 0 auto 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(0, 113, 227, 0.13);
}

.eyebrow-logo,
.inline-brand-logo {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.eyebrow-logo img {
  width: 132px;
  max-height: 30px;
  object-fit: contain;
  margin-left: 8px;
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.inline-brand-logo img {
  width: 138px;
  max-height: 30px;
  object-fit: contain;
  margin: 0 4px;
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 6px 16px rgba(0, 113, 227, 0.08);
}

.hero-quantic-logo,
.eyebrow-logo img,
.inline-brand-logo img {
  background: transparent;
  box-shadow: none;
}

.hero-quantic-logo {
  padding: 0;
  border-radius: 0;
}

.eyebrow-logo img,
.inline-brand-logo img {
  padding: 0;
  border-radius: 0;
}

.eyebrow-logo img {
  width: 190px;
  max-height: 44px;
}

.inline-brand-logo img {
  width: 180px;
  max-height: 42px;
  margin: 0 6px;
}

@media (max-width: 560px) {
  .eyebrow-logo img {
    width: 150px;
    max-height: 36px;
  }

  .inline-brand-logo img {
    width: 145px;
    max-height: 34px;
  }
}

.eyebrow-logo img {
  width: 570px;
  max-width: min(92vw, 570px);
  max-height: 132px;
}

.inline-brand-logo img {
  width: 540px;
  max-width: min(92vw, 540px);
  max-height: 126px;
}

@media (max-width: 560px) {
  .eyebrow-logo img {
    width: 300px;
    max-width: 88vw;
    max-height: 72px;
  }

  .inline-brand-logo img {
    width: 280px;
    max-width: 88vw;
    max-height: 68px;
  }
}

.hero-quantic-logo {
  width: min(100%, 1040px);
  max-height: 340px;
}

@media (max-width: 560px) {
  .hero-quantic-logo {
    width: min(100%, 520px);
    max-height: 170px;
  }
}

.hero {
  min-height: 0;
  padding-top: 22px;
  padding-bottom: 22px;
}

.hero h1 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3.5vw, 3.4rem);
}

.hero-quantic-logo {
  width: min(100%, 720px);
  max-height: 210px;
  margin-bottom: 6px;
}

.hero-store-logo {
  width: clamp(68px, 8vw, 104px);
  height: clamp(68px, 8vw, 104px);
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 113, 227, 0.14);
}

.hero p:not(.eyebrow) {
  margin: 8px 0 12px;
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
}

.hero .primary-button {
  min-height: 40px;
  padding: 0 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

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

.return-home-button {
  margin-top: 0;
}

.category-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--bg);
}

.category-panel {
  display: grid;
  min-height: 220px;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.category-panel:hover {
  border-color: rgba(0, 113, 227, 0.22);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.category-panel h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

.category-panel p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.category-panel strong {
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
}

.category-panel-quantic {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 255, 0.95)),
    url("images/guantes-electronicos-q1.jpg") right bottom / 46% auto no-repeat;
}

.category-panel-white-label {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 251, 0.95)),
    url("images/crema-nanotech-pack-1.png") right bottom / 42% auto no-repeat;
}

@media (max-width: 560px) {
  .hero {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-quantic-logo {
    width: min(100%, 390px);
    max-height: 120px;
  }

  .hero-store-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  .category-split {
    grid-template-columns: 1fr;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .category-panel {
    min-height: 250px;
    padding: 26px;
    background-size: 58% auto;
  }
}

.product-card.no-product-image a {
  min-height: 100%;
}

.product-card.no-product-image .product-card-body {
  min-height: 360px;
  justify-content: center;
}

.product-hero.no-product-image {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  text-align: center;
}

.product-hero.no-product-image .product-copy {
  align-items: center;
}

.white-label-hero {
  display: grid;
  min-height: 390px;
  align-items: center;
  padding: 64px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 58%, rgba(255, 255, 255, 0.34) 100%),
    url("images/monodosis-cuidado-piel-galeria-1.jpg") center right / cover;
}

.quantic-list-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.34) 100%),
    url("images/guantes-electronicos-q1.jpg") center right / cover;
}

.white-label-hero > div {
  max-width: 720px;
}

.white-label-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 1;
}

.white-label-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 28px;
  color: #515154;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.white-label-hero .highlight-description {
  width: fit-content;
  max-width: 680px;
  padding: 16px 20px;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #163b5c;
  font-weight: 750;
  box-shadow: 0 14px 34px rgba(0, 113, 227, 0.1);
}

.white-label-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.white-label-product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.white-label-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f5f5f7;
}

.body-zone-visual {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  padding: 22px;
  color: #0f4f68;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 850;
  text-align: center;
}

.body-zone-wrist {
  background: linear-gradient(135deg, #eef8ff, #f7fbff 48%, #dff3ff);
}

.body-zone-ankle {
  background: linear-gradient(135deg, #f2faee, #ffffff 52%, #d9f0d2);
}

.body-zone-shoulder {
  background: linear-gradient(135deg, #fff7ee, #ffffff 50%, #ffe4c7);
}

.body-zone-knee {
  background: linear-gradient(135deg, #f2f0ff, #ffffff 50%, #ded8ff);
}

.body-zone-lumbar {
  background: linear-gradient(135deg, #eefbff, #ffffff 48%, #cceef6);
}

.body-zone-neck {
  background: linear-gradient(135deg, #fff2f4, #ffffff 48%, #ffd9df);
}

.white-label-product-card > div {
  display: grid;
  gap: 12px;
  min-height: 360px;
  padding: 24px;
}

.white-label-product-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef7ff;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.white-label-product-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.12;
}

.white-label-product-card p {
  margin: 0;
  color: var(--muted);
}

.white-label-product-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #515154;
  font-size: 0.94rem;
}

.white-label-product-card .card-action {
  margin-top: auto;
}

@media (max-width: 980px) {
  .white-label-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .white-label-hero {
    min-height: 330px;
    padding-top: 46px;
    padding-bottom: 46px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
      url("images/monodosis-cuidado-piel-galeria-1.jpg") center / cover;
  }

  .white-label-card-grid {
    grid-template-columns: 1fr;
  }

  .white-label-product-card > div {
    min-height: 0;
  }
}

#floating-offer-banner {
  position: static !important;
  inset: auto !important;
  max-width: min(100%, 360px);
  min-height: 44px;
  margin-top: 0;
  padding: 8px 18px;
  font-size: 0.92rem;
  transform: none !important;
}

@media (max-width: 560px) {
  #floating-offer-banner {
    max-width: 100%;
    min-height: 46px;
    padding: 10px 16px;
    font-size: 0.86rem;
  }
}
