:root {
  color-scheme: light;
  --font-ui: "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --paper: #fbfaf7;
  --paper-warm: #f4eee6;
  --mist: #eaf3f0;
  --ink: #142433;
  --muted: #657383;
  --line: rgba(20, 36, 51, 0.14);
  --navy: #12263a;
  --coral: #d94b42;
  --teal: #247d72;
  --gold: #d99a32;
  --lavender: #596476;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(18, 38, 58, 0.14);
  --logo-midnight: #061421;
  --logo-ink: #102433;
  --logo-steel: #2f4858;
  --logo-pearl: #f0e4c8;
  --logo-gold: #d8a647;
  --logo-aqua: #58b7a8;
  --logo-copper: #b95a3b;
  --surface-3d: #fffdf8;
  --shadow-3d: 0 28px 70px rgba(6, 20, 33, 0.18);
  --shadow-3d-soft: 0 18px 42px rgba(6, 20, 33, 0.12);
  --edge-light: rgba(255, 255, 255, 0.72);
  --brand-ring: rgba(216, 166, 71, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
}

main,
section,
article,
div {
  min-width: 0;
}

body,
button,
input {
  font: 400 1rem/1.55 var(--font-ui);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

:focus-visible {
  outline: 3px solid rgba(217, 75, 66, 0.42);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: 0;
}

.trustline,
.site-header,
.brand,
.header-nav,
.header-cta,
.hero-actions,
.hero-stats,
.section-head,
.slider-dots,
.toolbar,
.chip,
.product-meta,
.product-footer,
.buy-row,
.visual-badges,
.product-tags,
.button,
.product-button,
.banner-content a,
.footer-brand {
  display: flex;
  align-items: center;
}

.trustline {
  position: relative;
  z-index: 30;
  justify-content: center;
  gap: 28px;
  min-height: 36px;
  padding: 8px 16px;
  background: var(--navy);
  color: #fffaf0;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 12px 14px rgba(6, 20, 33, 0.2))
    saturate(1.04)
    contrast(1.02);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-logo {
  width: min(390px, 82vw);
  height: auto;
  margin: 0 0 20px;
  filter: drop-shadow(0 16px 20px rgba(18, 38, 58, 0.12));
}

.hero-logo-3d {
  width: min(172px, 42vw);
  margin-bottom: 14px;
  filter:
    drop-shadow(0 20px 22px rgba(18, 38, 58, 0.22))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.32));
}

.header-nav {
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.header-nav a {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #344657;
  font-size: 0.9rem;
  font-weight: 750;
}

.header-nav a:hover {
  background: rgba(36, 125, 114, 0.08);
  color: var(--teal);
}

.header-cta,
.button,
.product-button,
.banner-content a {
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 850;
}

.header-cta {
  padding: 0 14px 0 8px;
  background: var(--ink);
  color: #fff;
}

.cart-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateZ(0);
  overflow: visible;
  transition: transform 180ms ease;
}

.cart-logo::before {
  display: none;
  content: none;
}

.cart-logo img {
  position: relative;
  z-index: 1;
  width: 43px;
  height: 43px;
  max-width: none;
  object-fit: contain;
  filter:
    drop-shadow(0 5px 5px rgba(6, 20, 33, 0.38))
    saturate(1.07)
    contrast(1.04);
  transform: translate(-1px, 1px);
  transition: transform 180ms ease;
}

.header-cta-label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.header-cta svg,
.button svg,
.product-button svg,
.banner-content a svg,
.chip svg,
.clean-list svg,
.conversion-grid svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
  min-height: 72svh;
  padding: 84px max(20px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(232, 244, 239, 0.94) 56%, rgba(249, 232, 228, 0.92));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(217, 75, 66, 0.09) 42% 43%, transparent 43%),
    repeating-linear-gradient(118deg, rgba(20, 36, 51, 0.05) 0 1px, transparent 1px 28px);
  opacity: 0.68;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 36, 51, 0.18), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 5.5rem;
}

.hero p {
  max-width: 56ch;
  margin-bottom: 0;
  color: #40566a;
  font-size: 1.14rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  padding: 0 18px;
  text-align: center;
}

.button-primary {
  border: 0;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 28px rgba(217, 75, 66, 0.2);
}

.button-soft {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-stats span {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(20, 36, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: #3d5267;
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-stats strong {
  margin-right: 4px;
  color: var(--teal);
}

.hero-showcase {
  position: relative;
  z-index: 1;
  min-height: 500px;
}

.hero-product-card {
  position: absolute;
  inset: 22px 44px 28px 40px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(20, 36, 51, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 246, 0.92));
  box-shadow: 0 28px 70px rgba(18, 38, 58, 0.18);
  --float-transform: rotate(1.2deg) translateY(0);
  --float-transform-lift: rotate(1.2deg) translateY(-10px);
  transform: var(--float-transform);
  animation: productFloat 6s ease-in-out infinite;
}

.hero-product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: linear-gradient(180deg, var(--coral), var(--teal));
}

.hero-kicker {
  justify-self: start;
  margin: 20px 20px 0 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(217, 75, 66, 0.1);
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-product-card img {
  width: min(76%, 330px);
  max-height: 330px;
  justify-self: center;
  align-self: center;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(18, 38, 58, 0.25));
}

.hero-product-note {
  display: grid;
  gap: 4px;
  margin: 0 24px 24px 28px;
  padding: 16px;
  border: 1px solid rgba(20, 36, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-product-note strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.hero-product-note small {
  color: var(--muted);
  font-weight: 700;
}

.hero-mini-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: 168px;
  padding: 14px;
  border: 1px solid rgba(20, 36, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(18, 38, 58, 0.14);
  backdrop-filter: blur(12px);
}

.hero-mini-card strong {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-mini-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-mini-card-top {
  top: 72px;
  right: 0;
  animation: cardDrift 7s ease-in-out infinite;
}

.hero-mini-card-bottom {
  left: 0;
  bottom: 70px;
  animation: cardDrift 7s ease-in-out 1.2s infinite;
}

main > section:not(.hero) {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 58px;
}

section[id] {
  scroll-margin-top: 116px;
}

.section-head {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: 2.35rem;
}

.section-head p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  text-align: right;
}

.banner-slider {
  position: relative;
}

.banner-stage {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #eef6f2 58%, #faeee9 100%);
  box-shadow: var(--shadow);
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.72fr);
  align-items: center;
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition:
    opacity 420ms ease,
    transform 620ms ease;
}

.banner-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.banner-slide img {
  position: absolute;
  top: 50%;
  right: clamp(44px, 9vw, 120px);
  z-index: 1;
  width: min(36vw, 390px);
  height: min(78%, 390px);
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 28px 24px rgba(18, 38, 58, 0.2));
  transform: translate(34px, -48%) scale(0.96);
  transition:
    opacity 360ms ease,
    transform 620ms ease;
}

.banner-slide.is-active img {
  opacity: 1;
  --float-transform: translate(0, -50%) scale(1);
  --float-transform-lift: translate(0, calc(-50% - 10px)) scale(1);
  transform: var(--float-transform);
  animation: productFloat 6.2s ease-in-out infinite;
}

.banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0.18) 76%),
    linear-gradient(118deg, transparent 0 66%, rgba(217, 75, 66, 0.12) 66% 67%, transparent 67%),
    repeating-linear-gradient(0deg, rgba(36, 125, 114, 0.07) 0 1px, transparent 1px 34px);
}

.banner-slide::after {
  content: "";
  position: absolute;
  top: 36px;
  right: clamp(28px, 7vw, 94px);
  bottom: 36px;
  width: min(36vw, 390px);
  border: 1px solid rgba(20, 36, 51, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.22));
  box-shadow: inset 10px 0 0 rgba(217, 75, 66, 0.08);
}

.banner-content {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: 48px;
}

.banner-content span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.banner-content h3 {
  max-width: 13ch;
  margin: 10px 0 14px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 3.35rem;
  line-height: 0.98;
}

.banner-content p {
  max-width: 44ch;
  color: #42566a;
  font-size: 1.04rem;
}

.banner-content a {
  display: inline-flex;
  width: fit-content;
  padding: 0 15px;
  background: var(--navy);
  color: #fff;
}

.slider-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 36, 51, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(18, 38, 58, 0.1);
  transform: translateY(-50%);
}

.slider-prev {
  left: 14px;
}

.slider-next {
  right: 14px;
}

.slider-nav svg {
  width: 21px;
  height: 21px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 5;
  justify-content: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(20, 36, 51, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  transform: translateX(-50%);
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 36, 51, 0.3);
  padding: 0;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--coral);
}

.product-focus {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: center;
  padding-block: 62px;
  border-block: 1px solid rgba(20, 36, 51, 0.1);
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f2f8f5);
  box-shadow: var(--shadow);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 62%, rgba(217, 75, 66, 0.12) 62% 63%, transparent 63%),
    repeating-linear-gradient(90deg, rgba(20, 36, 51, 0.045) 0 1px, transparent 1px 30px);
}

.product-visual-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-visual img {
  position: relative;
  z-index: 1;
  width: min(74%, 390px);
  max-height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 30px 24px rgba(18, 38, 58, 0.24));
  --float-transform: translateY(0);
  --float-transform-lift: translateY(-10px);
  animation: productFloat 6s ease-in-out infinite;
}

.visual-badges {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 78%;
}

.visual-badges span {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(20, 36, 51, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-copy h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 3.2rem;
}

.product-copy p {
  color: #43586b;
  font-size: 1.07rem;
}

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

.clean-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #34495b;
  font-weight: 650;
}

.clean-list svg {
  margin-top: 3px;
  color: var(--teal);
}

.buy-row {
  flex-wrap: wrap;
  gap: 12px;
}

.buy-row small {
  max-width: 340px;
  color: var(--muted);
  font-weight: 650;
}

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

.conversion-grid article,
.product-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 38, 58, 0.08);
}

.conversion-grid article {
  min-height: 220px;
  padding: 22px;
}

.conversion-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--coral);
}

.conversion-grid h3,
.product-body h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.2;
}

.conversion-grid p,
.product-body p,
.faq-list p,
.footer p {
  color: var(--muted);
}

.routine-steps {
  padding-top: 58px;
}

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

.steps-grid article {
  position: relative;
  display: grid;
  min-height: 248px;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(20, 36, 51, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f8f5 100%);
  padding: 22px;
  box-shadow: 0 14px 32px rgba(18, 38, 58, 0.08);
}

.steps-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 64%, rgba(36, 125, 114, 0.1) 64% 65%, transparent 65%);
}

.steps-grid article > span {
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgba(217, 75, 66, 0.22);
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.steps-grid img {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 116px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 14px 14px rgba(18, 38, 58, 0.16));
}

.steps-grid h3,
.steps-grid p {
  position: relative;
  z-index: 1;
}

.steps-grid h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.15rem;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.banner-showcase-alt .banner-content span {
  color: var(--lavender);
}

.toolbar {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.catalog {
  padding-top: 34px !important;
}

.catalog .section-head {
  margin-bottom: 16px;
}

.catalog .toolbar {
  margin-bottom: 18px;
}

.chip {
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #364c5f;
  padding: 0 13px;
  font-weight: 800;
}

.chip.is-active {
  border-color: rgba(217, 75, 66, 0.32);
  background: rgba(217, 75, 66, 0.1);
  color: var(--coral);
}

.product-shelves {
  display: grid;
  gap: 24px;
}

.product-shelf {
  display: grid;
  gap: 14px;
}

.product-shelf-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 18px;
  align-items: end;
  padding: 14px 18px;
  border: 1px solid rgba(20, 36, 51, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(234, 243, 240, 0.78), rgba(255, 255, 255, 0.92));
}

.product-shelf-head span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-shelf-head h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.62rem;
  line-height: 1.05;
}

.product-shelf-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

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

.product-shelf--alpecin .product-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card.is-focus {
  border-color: rgba(217, 75, 66, 0.28);
  box-shadow: 0 20px 48px rgba(217, 75, 66, 0.12);
}

.product-card:hover {
  border-color: rgba(36, 125, 114, 0.26);
  box-shadow: 0 18px 42px rgba(18, 38, 58, 0.13);
  transform: translateY(-2px);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 270px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(217, 75, 66, 0.1) 0 15%, transparent 15%),
    repeating-linear-gradient(118deg, rgba(20, 36, 51, 0.045) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #ffffff 0%, #f4faf7 58%, #fbf0eb 100%);
}

.product-media::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 20px;
  height: 18px;
  border-radius: 999px;
  background: rgba(18, 38, 58, 0.12);
  filter: blur(10px);
  opacity: 0.72;
}

.product-media img {
  position: relative;
  z-index: 1;
  width: min(94%, 340px);
  height: 266px;
  object-fit: contain;
  padding: 0;
  filter: drop-shadow(0 18px 16px rgba(18, 38, 58, 0.17));
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.product-card:hover .product-media img {
  filter: drop-shadow(0 24px 20px rgba(18, 38, 58, 0.22));
  transform: translateY(-4px) scale(1.03);
}

.product-card.is-focus .product-media {
  min-height: 324px;
  background:
    linear-gradient(118deg, rgba(217, 75, 66, 0.14) 0 18%, transparent 18%),
    repeating-linear-gradient(90deg, rgba(20, 36, 51, 0.045) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #fff, #f5faf7);
}

.product-card.is-focus .product-media img {
  width: min(96%, 390px);
  height: 320px;
  filter: drop-shadow(0 24px 20px rgba(18, 38, 58, 0.22));
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 70px);
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
}

.product-card.is-focus .product-badge {
  background: var(--coral);
}

.favorite-button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(20, 36, 51, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
}

.favorite-button svg {
  width: 18px;
  height: 18px;
}

.favorite-button.is-favorite {
  color: var(--coral);
}

.favorite-button.is-favorite svg {
  fill: currentColor;
}

.product-body {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 20px;
}

.product-meta {
  justify-content: space-between;
  gap: 8px;
  color: var(--teal);
  font-size: 0.73rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-meta span:last-child {
  color: var(--muted);
}

.product-place {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(36, 125, 114, 0.16);
  border-radius: 999px;
  background: rgba(36, 125, 114, 0.08);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.product-place svg {
  width: 15px;
  height: 15px;
}

.product-tags {
  flex-wrap: wrap;
  gap: 7px;
}

.product-tags span {
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(20, 36, 51, 0.1);
  border-radius: 999px;
  background: rgba(244, 238, 230, 0.62);
  color: #4f6070;
  font-size: 0.72rem;
  font-weight: 850;
}

.product-body p {
  margin-bottom: 0;
}

.product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid rgba(216, 166, 71, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.88), rgba(239, 248, 244, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 10px 22px rgba(6, 20, 33, 0.05);
}

.rating-stars {
  position: relative;
  display: inline-block;
  width: 82px;
  height: 20px;
  color: rgba(20, 36, 51, 0.16);
  font-size: 0.98rem;
  line-height: 1.25;
  white-space: nowrap;
}

.rating-stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: var(--logo-gold);
  filter: drop-shadow(0 4px 6px rgba(216, 166, 71, 0.2));
}

.product-rating strong {
  color: var(--logo-midnight);
  font-size: 0.9rem;
  line-height: 1;
}

.product-rating > span:last-child {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.product-review {
  padding-left: 11px;
  border-left: 3px solid rgba(216, 166, 71, 0.42);
  color: #4d6171 !important;
  font-size: 0.9rem;
  font-weight: 650;
}

.product-footer {
  justify-content: space-between;
  gap: 12px;
  align-self: end;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 36, 51, 0.08);
}

.product-footer strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.product-button {
  min-height: 40px;
  padding: 0 12px;
  background: var(--teal);
  color: #fff;
  font-size: 0.88rem;
  white-space: nowrap;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
}

.faq-list code {
  border-radius: 6px;
  background: var(--mist);
  padding: 1px 5px;
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: center;
  margin-top: 58px;
  padding: 34px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(234, 243, 240, 0.94), rgba(244, 238, 230, 0.94));
}

.signup h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 2.35rem;
}

.signup p {
  color: #536879;
}

.signup-form {
  display: grid;
  gap: 8px;
}

.signup-form label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.signup-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  padding: 0 12px;
}

.signup-form input::placeholder {
  color: #8b98a4;
}

.content-page {
  width: min(920px, calc(100% - 32px));
  min-height: 56svh;
  margin: 0 auto;
  padding: 54px 0 20px;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 34px;
  box-shadow: 0 12px 30px rgba(18, 38, 58, 0.08);
}

.content-card h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 2.65rem;
}

.content-card h2 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
}

.content-card p,
.content-card li {
  color: var(--muted);
}

.content-card a {
  color: var(--teal);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: 24px;
}

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

.contact-form label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 148px;
  padding-top: 12px;
  resize: vertical;
}

.footer {
  margin-top: 64px;
  padding: 42px max(18px, calc((100vw - 1180px) / 2)) 26px;
  background: var(--navy);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr;
  gap: 26px;
}

.footer .brand strong,
.footer h2 {
  color: #fff;
}

.footer .brand small,
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer nav,
.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.copyright {
  margin: 32px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@keyframes productFloat {
  0%,
  100% {
    transform: var(--float-transform, translateY(0));
  }

  50% {
    transform: var(--float-transform-lift, translateY(-10px));
  }
}

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

  50% {
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .conversion-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-shelf--alpecin .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .trustline {
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.72rem;
  }

  .site-header {
    min-height: 68px;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    min-width: 44px;
    padding: 0 11px;
  }

  .hero {
    min-height: 60svh;
    padding-top: 66px;
    padding-bottom: 66px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(232, 244, 239, 0.94) 64%, rgba(249, 232, 228, 0.92));
  }

  .hero h1 {
    font-size: 3.15rem;
    overflow-wrap: anywhere;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-head {
    display: grid;
  }

  .section-head h2,
  .product-copy h2,
  .signup h2 {
    font-size: 2rem;
  }

  .section-head p {
    max-width: none;
    text-align: left;
  }

  .banner-stage {
    min-height: 560px;
  }

  .banner-slide {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .banner-slide img {
    top: 36px;
    right: 50%;
    width: min(68vw, 280px);
    height: 270px;
    transform: translate(50%, 18px) scale(0.96);
  }

  .banner-slide.is-active img {
    --float-transform: translate(50%, 0) scale(1);
    --float-transform-lift: translate(50%, -10px) scale(1);
    transform: translate(50%, 0) scale(1);
  }

  .banner-slide::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.94) 47%, rgba(255, 255, 255, 0.98));
  }

  .banner-slide::after {
    top: 20px;
    right: 50%;
    bottom: auto;
    width: min(66vw, 290px);
    height: 270px;
    transform: translateX(50%);
  }

  .banner-content {
    padding: 26px;
  }

  .banner-content h3 {
    max-width: 12ch;
    font-size: 2.45rem;
  }

  .slider-nav {
    top: 22px;
    transform: none;
  }

  .slider-prev {
    left: auto;
    right: 64px;
  }

  .slider-next {
    right: 14px;
  }

  .conversion-grid,
  .product-grid,
  .steps-grid,
  .contact-layout,
  .signup,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .product-shelf-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    padding: 12px 14px;
  }

  .product-shelf-head h3 {
    font-size: 1.38rem;
  }

  .product-shelf-head p {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .header-cta {
    width: 44px;
    min-width: 44px;
    padding: 0;
    font-size: 0;
  }

  .header-cta-label {
    display: none;
  }

  .cart-logo {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .cart-logo img,
  .header-cta .cart-logo img {
    width: 39px;
    height: 39px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 54px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(232, 244, 239, 0.94) 64%, rgba(249, 232, 228, 0.92));
  }

  .hero h1 {
    font-size: 2.3rem;
    line-height: 1.05;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 390px;
  }

  .hero-product-card {
    inset: 18px 20px 30px 20px;
    --float-transform: translateY(0);
    --float-transform-lift: translateY(-8px);
    transform: var(--float-transform);
  }

  .hero-product-card img {
    width: min(76%, 280px);
    max-height: 282px;
  }

  .hero-mini-card {
    width: 142px;
    padding: 12px;
  }

  .hero-mini-card-top {
    top: 42px;
    right: 4px;
  }

  .hero-mini-card-bottom {
    left: 4px;
    bottom: 42px;
  }

  .section-head h2,
  .product-copy h2,
  .signup h2 {
    font-size: 1.75rem;
  }

  .banner-content h3 {
    font-size: 2rem;
  }

  .product-shelves {
    gap: 18px;
  }

  .product-shelf-head {
    padding: 12px 14px;
  }

  .product-shelf-head h3 {
    font-size: 1.34rem;
  }

  .product-shelf-head p {
    display: none;
  }

  .catalog {
    padding-top: 14px !important;
  }

  .catalog .section-head {
    margin-bottom: 10px;
  }

  .catalog .toolbar {
    flex-wrap: nowrap;
    gap: 6px;
    margin: 0 -16px 10px 0;
    overflow-x: auto;
    padding: 0 16px 4px 0;
    scrollbar-width: none;
  }

  .catalog .toolbar::-webkit-scrollbar {
    display: none;
  }

  .catalog .chip {
    flex: 0 0 auto;
    min-height: 38px;
    padding-inline: 11px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .product-media {
    min-height: 230px;
  }

  .product-media img {
    width: min(96%, 320px);
    height: 228px;
  }

  .product-card.is-focus .product-media {
    min-height: 270px;
  }

  .product-card.is-focus .product-media img {
    height: 266px;
  }
}

@media (max-width: 480px) {
  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .header-cta svg {
    margin: 0;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-showcase {
    min-height: 360px;
  }

  .hero-mini-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 8px;
  }

  .hero-product-card {
    position: relative;
    inset: auto;
    min-height: 330px;
    --float-transform: translateY(0);
    --float-transform-lift: translateY(-8px);
  }

  .hero-actions .button,
  .product-button,
  .buy-row .button {
    width: 100%;
  }

  .product-footer,
  .buy-row {
    display: grid;
  }

  .signup {
    padding: 24px 18px;
  }

  .content-card {
    padding: 24px 18px;
  }

  .content-card h1 {
    font-size: 2rem;
  }
}

/* PedidoCapilar 3D premium polish */
body {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(241, 247, 244, 0.96) 44%, rgba(250, 244, 234, 0.98) 100%),
    repeating-linear-gradient(118deg, rgba(6, 20, 33, 0.035) 0 1px, transparent 1px 42px);
}

.trustline {
  background:
    linear-gradient(90deg, var(--logo-midnight) 0%, var(--logo-ink) 46%, #4f3a1e 100%);
  box-shadow: 0 8px 24px rgba(6, 20, 33, 0.18);
}

.site-header {
  border-bottom-color: rgba(216, 166, 71, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(244, 249, 246, 0.9));
  box-shadow: 0 16px 40px rgba(6, 20, 33, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: -1px;
  left: max(18px, calc((100vw - 1180px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--logo-gold), var(--logo-aqua), transparent);
  opacity: 0.82;
}

.brand-mark {
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateZ(0);
}

.brand-mark img {
  filter:
    drop-shadow(0 12px 14px rgba(6, 20, 33, 0.2))
    saturate(1.04)
    contrast(1.02);
}

.header-nav a,
.chip,
.hero-stats span,
.visual-badges span,
.product-place,
.product-tags span {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 8px 18px rgba(6, 20, 33, 0.05);
}

.header-nav a:hover,
.chip:hover {
  background: rgba(88, 183, 168, 0.1);
  color: var(--logo-ink);
  transform: translateY(-1px);
}

.header-cta,
.button,
.product-button,
.banner-content a {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-cta::after,
.button::after,
.product-button::after,
.banner-content a::after {
  content: "";
  position: absolute;
  inset: -2px auto -2px -58%;
  width: 44%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
  pointer-events: none;
}

.header-cta:hover,
.button:hover,
.product-button:hover,
.banner-content a:hover {
  transform: translateY(-2px);
}

.header-cta:hover::after,
.button:hover::after,
.product-button:hover::after,
.banner-content a:hover::after {
  left: 114%;
}

.header-cta .cart-logo img {
  width: 43px;
  height: 43px;
}

.header-cta:hover .cart-logo {
  transform: translateY(-1px) rotate(-2deg);
}

.header-cta:hover .cart-logo img {
  transform: translate(0, -1px) scale(1.04);
}

.header-cta,
.button-primary {
  background:
    linear-gradient(145deg, var(--logo-midnight) 0%, var(--logo-steel) 52%, var(--logo-gold) 132%);
  box-shadow:
    0 16px 30px rgba(6, 20, 33, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-soft {
  border-color: rgba(216, 166, 71, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 248, 245, 0.82));
  box-shadow:
    0 12px 26px rgba(6, 20, 33, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.product-button {
  background:
    linear-gradient(145deg, var(--logo-ink) 0%, var(--teal) 64%, var(--logo-aqua) 130%);
  box-shadow:
    0 12px 24px rgba(36, 125, 114, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.eyebrow {
  min-height: 26px;
  padding: 5px 10px;
  border: 1px solid rgba(216, 166, 71, 0.24);
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.68);
  color: var(--logo-copper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.hero {
  perspective: 1100px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98) 0%, rgba(235, 247, 243, 0.95) 44%, rgba(246, 232, 205, 0.82) 100%),
    repeating-linear-gradient(118deg, rgba(16, 36, 51, 0.05) 0 1px, transparent 1px 36px);
}

.hero::before {
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(216, 166, 71, 0.2) 38% 38.6%, transparent 38.6%),
    linear-gradient(68deg, transparent 0 56%, rgba(88, 183, 168, 0.14) 56% 56.6%, transparent 56.6%),
    repeating-linear-gradient(118deg, rgba(6, 20, 33, 0.052) 0 1px, transparent 1px 30px);
  opacity: 0.78;
  animation: brandGridDrift 18s linear infinite;
}

.hero::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--logo-gold), var(--logo-aqua), transparent);
  opacity: 0.72;
}

.hero-logo-3d {
  filter:
    drop-shadow(0 26px 24px rgba(6, 20, 33, 0.24))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.46));
  animation: logoBreath 6.8s ease-in-out infinite;
}

.hero h1 {
  color: var(--logo-midnight);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 34px rgba(6, 20, 33, 0.13);
}

.hero p,
.banner-content p,
.product-copy p {
  color: #3d5264;
}

.hero-stats strong,
.hero-mini-card strong,
.visual-badges span,
.product-meta,
.product-place {
  color: var(--teal);
}

.hero-showcase {
  perspective: 900px;
  transform-style: preserve-3d;
}

.hero-product-card,
.hero-mini-card,
.banner-stage,
.product-visual,
.conversion-grid article,
.steps-grid article,
.product-card,
.faq-list details {
  border-color: rgba(216, 166, 71, 0.18);
  box-shadow: var(--shadow-3d-soft);
}

.hero-product-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(237, 247, 243, 0.9) 58%, rgba(246, 229, 193, 0.72) 100%);
  box-shadow:
    0 34px 80px rgba(6, 20, 33, 0.2),
    inset 0 1px 0 var(--edge-light),
    inset 0 -24px 42px rgba(6, 20, 33, 0.05);
  transform-style: preserve-3d;
  --float-transform: rotateX(2deg) rotateY(-5deg) rotate(1deg) translateY(0);
  --float-transform-lift: rotateX(2deg) rotateY(-5deg) rotate(1deg) translateY(-12px);
}

.hero-product-card::before {
  width: 9px;
  background: linear-gradient(180deg, var(--logo-gold), var(--logo-aqua), var(--logo-ink));
}

.hero-product-card::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 46%;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-product-card img,
.product-visual img,
.banner-slide img {
  filter:
    drop-shadow(0 30px 22px rgba(6, 20, 33, 0.22))
    drop-shadow(0 3px 0 rgba(255, 255, 255, 0.24));
}

.hero-product-note,
.hero-mini-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 248, 0.76));
  box-shadow:
    0 18px 38px rgba(6, 20, 33, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.hero-kicker,
.product-visual-label,
.product-badge {
  background:
    linear-gradient(145deg, var(--logo-midnight), var(--logo-steel));
  color: #fffaf0;
  box-shadow:
    0 10px 20px rgba(6, 20, 33, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-card.is-focus .product-badge,
.chip.is-active,
.slider-dots button.is-active {
  background:
    linear-gradient(145deg, var(--logo-copper), var(--logo-gold));
  color: #fffaf0;
}

.banner-stage {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(232, 246, 241, 0.92) 54%, rgba(246, 229, 193, 0.82) 100%);
  box-shadow:
    0 28px 70px rgba(6, 20, 33, 0.16),
    inset 0 1px 0 var(--edge-light);
}

.banner-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0 34%, rgba(255, 255, 255, 0.18) 46%, transparent 58%);
  transform: translateX(-28%);
  animation: stageSheen 9s ease-in-out infinite;
}

.banner-slide::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(255, 255, 255, 0.18) 76%),
    linear-gradient(118deg, transparent 0 64%, rgba(216, 166, 71, 0.18) 64% 64.8%, transparent 64.8%),
    repeating-linear-gradient(0deg, rgba(88, 183, 168, 0.08) 0 1px, transparent 1px 34px);
}

.banner-slide::after {
  border-color: rgba(216, 166, 71, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(232, 246, 241, 0.28)),
    repeating-linear-gradient(90deg, rgba(16, 36, 51, 0.04) 0 1px, transparent 1px 32px);
  box-shadow:
    inset 9px 0 0 rgba(216, 166, 71, 0.12),
    0 24px 46px rgba(6, 20, 33, 0.08);
}

.banner-content span,
.banner-showcase-alt .banner-content span {
  color: var(--logo-copper);
}

.banner-content h3,
.section-head h2,
.product-copy h2,
.product-shelf-head h3,
.signup h2 {
  color: var(--logo-midnight);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.banner-content a {
  background:
    linear-gradient(145deg, var(--logo-midnight), var(--logo-steel));
  box-shadow:
    0 14px 28px rgba(6, 20, 33, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.slider-nav,
.slider-dots,
.favorite-button {
  border-color: rgba(216, 166, 71, 0.2);
  background: rgba(255, 253, 248, 0.88);
  box-shadow:
    0 14px 28px rgba(6, 20, 33, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
}

.slider-nav:hover,
.favorite-button:hover {
  color: var(--logo-copper);
  transform: translateY(-50%) scale(1.04);
}

.catalog {
  position: relative;
}

.product-shelf-head {
  border-color: rgba(216, 166, 71, 0.16);
  background:
    linear-gradient(90deg, rgba(232, 246, 241, 0.86), rgba(255, 255, 255, 0.94) 58%, rgba(247, 235, 208, 0.7));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 10px 24px rgba(6, 20, 33, 0.06);
}

.product-shelf-head span {
  color: var(--logo-copper);
}

.product-card {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow:
    0 18px 42px rgba(6, 20, 33, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transform-style: preserve-3d;
  animation: cardRise 520ms ease both;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-gold), var(--logo-aqua), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card:hover {
  box-shadow:
    0 24px 54px rgba(6, 20, 33, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transform: translateY(-4px) rotateX(1deg);
}

.product-card:hover::before,
.product-card.is-focus::before {
  opacity: 1;
}

.product-card.is-focus {
  border-color: rgba(216, 166, 71, 0.34);
  box-shadow:
    0 28px 62px rgba(6, 20, 33, 0.16),
    0 0 0 1px rgba(216, 166, 71, 0.14);
}

.product-media {
  background:
    linear-gradient(118deg, rgba(216, 166, 71, 0.13) 0 15%, transparent 15%),
    repeating-linear-gradient(118deg, rgba(6, 20, 33, 0.042) 0 1px, transparent 1px 30px),
    linear-gradient(180deg, #ffffff 0%, #f4faf7 58%, #fbf0df 100%);
}

.product-media::before {
  content: "";
  position: absolute;
  right: 14%;
  bottom: 22px;
  left: 14%;
  height: 44px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(216, 166, 71, 0.08), rgba(88, 183, 168, 0.16), rgba(16, 36, 51, 0.08));
  filter: blur(3px);
  transform: perspective(280px) rotateX(58deg);
}

.product-media::after {
  background: rgba(6, 20, 33, 0.12);
}

.product-card.is-focus .product-media {
  background:
    linear-gradient(118deg, rgba(216, 166, 71, 0.18) 0 18%, transparent 18%),
    repeating-linear-gradient(90deg, rgba(6, 20, 33, 0.045) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #fff, #f5faf7 62%, #fbefd8);
}

.product-card:hover .product-media img {
  filter:
    drop-shadow(0 28px 22px rgba(6, 20, 33, 0.22))
    drop-shadow(0 3px 0 rgba(255, 255, 255, 0.26));
  transform: translateY(-8px) scale(1.035);
}

.product-tags span {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.9), rgba(238, 248, 244, 0.76));
}

.conversion-grid article,
.steps-grid article,
.faq-list details {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.conversion-grid article:hover,
.steps-grid article:hover,
.faq-list details:hover {
  border-color: rgba(216, 166, 71, 0.28);
  box-shadow: var(--shadow-3d);
  transform: translateY(-3px);
}

.conversion-grid svg {
  color: var(--logo-copper);
  filter: drop-shadow(0 10px 10px rgba(185, 90, 59, 0.18));
}

.steps-grid article::before {
  background:
    linear-gradient(118deg, transparent 0 61%, rgba(216, 166, 71, 0.16) 61% 61.8%, transparent 61.8%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 52%);
}

.steps-grid article > span {
  color: rgba(216, 166, 71, 0.26);
}

.steps-grid img {
  filter:
    drop-shadow(0 20px 16px rgba(6, 20, 33, 0.18))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.24));
}

.faq-list details[open] {
  border-color: rgba(88, 183, 168, 0.28);
  box-shadow:
    0 20px 48px rgba(6, 20, 33, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.signup {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(232, 246, 241, 0.96), rgba(255, 253, 248, 0.94) 50%, rgba(246, 229, 193, 0.84));
}

.signup::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 54%, rgba(216, 166, 71, 0.18) 54% 54.8%, transparent 54.8%),
    repeating-linear-gradient(118deg, rgba(6, 20, 33, 0.035) 0 1px, transparent 1px 36px);
}

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

.signup-form input {
  border-color: rgba(216, 166, 71, 0.22);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 10px 22px rgba(6, 20, 33, 0.05);
}

/* Clean studio personality: smooth product imagery, no visible line textures. */
body {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(241, 248, 245, 0.96) 48%, rgba(250, 242, 226, 0.98) 100%),
    linear-gradient(135deg, rgba(88, 183, 168, 0.1), transparent 42%),
    linear-gradient(225deg, rgba(216, 166, 71, 0.12), transparent 48%);
}

.site-header {
  border-bottom-color: transparent;
}

.site-header::after,
.hero::after,
.hero-product-card::before,
.banner-stage::before,
.product-card::before,
.steps-grid article::before,
.signup::before {
  display: none;
  background: none !important;
  box-shadow: none !important;
}

.hero {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98) 0%, rgba(234, 247, 243, 0.96) 46%, rgba(247, 235, 208, 0.9) 100%);
}

.hero::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, transparent 46%),
    linear-gradient(180deg, rgba(88, 183, 168, 0.12), rgba(216, 166, 71, 0.1));
  opacity: 0.72;
  animation: none;
}

.hero-product-card,
.banner-stage,
.product-visual {
  border-color: transparent;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 248, 244, 0.94) 56%, rgba(247, 234, 207, 0.84) 100%);
  box-shadow:
    0 30px 72px rgba(6, 20, 33, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -26px 46px rgba(6, 20, 33, 0.04);
}

.hero-product-card::after,
.product-visual::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(88, 183, 168, 0.12), rgba(216, 166, 71, 0.1));
  opacity: 0.74;
}

.banner-slide::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.24) 76%),
    linear-gradient(145deg, rgba(88, 183, 168, 0.12), rgba(216, 166, 71, 0.11));
}

.banner-slide,
.banner-slide.is-active {
  transform: none;
}

.banner-slide::after {
  border: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(232, 246, 241, 0.34)),
    linear-gradient(180deg, rgba(247, 235, 208, 0.28), transparent 64%);
  box-shadow:
    0 24px 50px rgba(6, 20, 33, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-card {
  border-color: rgba(216, 166, 71, 0.14);
  background:
    linear-gradient(180deg, #fffefb 0%, #f8fcfa 100%);
}

.product-card:hover::before,
.product-card.is-focus::before {
  opacity: 0;
}

.product-media,
.product-card.is-focus .product-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 251, 249, 0.97) 54%, rgba(249, 238, 214, 0.84) 100%);
}

.product-media::before {
  right: 12%;
  bottom: 17px;
  left: 12%;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(216, 166, 71, 0.1), rgba(88, 183, 168, 0.16), rgba(6, 20, 33, 0.08));
  filter: blur(12px);
  opacity: 0.9;
  transform: perspective(300px) rotateX(60deg);
}

.product-media::after {
  left: 25%;
  right: 25%;
  bottom: 18px;
  height: 16px;
  background: rgba(6, 20, 33, 0.11);
  filter: blur(12px);
  opacity: 0.62;
}

.product-media img,
.product-card.is-focus .product-media img,
.hero-product-card img,
.product-visual img,
.banner-slide img,
.steps-grid img {
  filter:
    drop-shadow(0 28px 24px rgba(6, 20, 33, 0.2))
    saturate(1.04)
    contrast(1.02);
}

.product-card:hover .product-media img {
  filter:
    drop-shadow(0 32px 26px rgba(6, 20, 33, 0.24))
    saturate(1.06)
    contrast(1.03);
}

.product-shelf-head {
  background:
    linear-gradient(90deg, rgba(237, 248, 244, 0.9), rgba(255, 255, 255, 0.96) 58%, rgba(247, 235, 208, 0.72));
}

.signup {
  background:
    linear-gradient(90deg, rgba(232, 246, 241, 0.96), rgba(255, 253, 248, 0.94) 50%, rgba(246, 229, 193, 0.84));
}

@media (max-width: 600px) {
  .header-cta {
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .header-cta::after {
    display: none;
  }

  .cart-logo img,
  .header-cta .cart-logo img {
    width: 36px;
    height: 36px;
    transform: translate(0, 0);
  }

  .header-cta:hover .cart-logo img {
    transform: translate(0, -1px) scale(1.03);
  }
}

.footer {
  background:
    linear-gradient(145deg, var(--logo-midnight) 0%, #102433 54%, #3d321e 130%);
}

.footer .brand-mark {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

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

  50% {
    transform: translateY(-5px) rotateX(4deg);
  }
}

@keyframes brandGridDrift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 90px 0, -90px 0, 120px 0;
  }
}

@keyframes stageSheen {
  0%,
  62%,
  100% {
    transform: translateX(-34%);
    opacity: 0;
  }

  72% {
    opacity: 1;
  }

  86% {
    transform: translateX(34%);
    opacity: 0;
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    filter: saturate(0.96);
  }

  to {
    opacity: 1;
    filter: saturate(1);
  }
}

@media (max-width: 780px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(232, 246, 241, 0.95) 62%, rgba(247, 235, 208, 0.88));
  }

  .slider-nav:hover {
    transform: scale(1.04);
  }
}

@media (max-width: 600px) {
  .banner-content h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-product-card {
    --float-transform: translateY(0);
    --float-transform-lift: translateY(-8px);
  }

  .hero-product-card::after {
    inset: 14px 14px auto;
  }

  .product-card:hover,
  .conversion-grid article:hover,
  .steps-grid article:hover,
  .faq-list details:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-3d,
  .hero::before,
  .banner-stage::before,
  .product-card {
    animation: none !important;
  }
}
