:root {
  --ivory: #fffaf7;
  --porcelain: #fffefe;
  --blush: #f9e3df;
  --rose: #c86470;
  --rose-deep: #9f4653;
  --gold: #c49a62;
  --sage: #6f7f49;
  --mint: #edf5ed;
  --charcoal: #2d2425;
  --muted: #75696a;
  --line: rgba(159, 70, 83, 0.18);
  --shadow: 0 18px 50px rgba(108, 66, 70, 0.14);
  --soft-shadow: 0 10px 28px rgba(108, 66, 70, 0.1);
  --radius: 8px;
  --header-height: 78px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background:
    linear-gradient(180deg, rgba(249, 227, 223, 0.42) 0, rgba(255, 250, 247, 0) 360px),
    var(--ivory);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(159, 70, 83, 0.12);
  background: rgba(255, 250, 247, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(72, 48, 50, 0.06);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--rose);
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--rose-deep);
}

.brand-tagline {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 30px);
  font-size: 0.88rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding: 28px 0 24px;
  color: #3f3335;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: var(--rose-deep);
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg);
}

.btn {
  --btn-bg: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(200, 100, 112, 0.26);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(200, 100, 112, 0.28);
  background: var(--rose-deep);
}

.btn.secondary {
  --btn-bg: rgba(255, 255, 255, 0.72);
  border-color: rgba(200, 100, 112, 0.5);
  color: var(--rose-deep);
  box-shadow: none;
}

.btn.secondary:hover {
  background: #fff;
}

.btn.green {
  --btn-bg: #5d7140;
  box-shadow: 0 12px 28px rgba(93, 113, 64, 0.2);
}

.section {
  padding: clamp(58px, 7vw, 96px) 0;
  position: relative;
}

.section.tight {
  padding-top: 36px;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(249, 227, 223, 0.18)),
    var(--porcelain);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading.align-left .eyebrow {
  justify-content: flex-start;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--charcoal);
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--serif);
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 3.1rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: #5e5354;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  padding: clamp(36px, 5vw, 64px) 0 clamp(60px, 7vw, 96px);
  background:
    linear-gradient(110deg, rgba(255, 250, 247, 0.96) 0%, rgba(252, 238, 235, 0.78) 46%, rgba(255, 255, 255, 0.28) 100%),
    radial-gradient(ellipse at 78% 50%, rgba(111, 127, 73, 0.16), transparent 42%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(255, 250, 247, 0.95));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
  z-index: 2;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.trust-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #5c4f50;
  font-size: 0.82rem;
  font-weight: 800;
}

.icon-ring {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200, 100, 112, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--rose-deep);
}

.icon-ring svg {
  width: 18px;
  height: 18px;
}

.hero-stage {
  position: relative;
  min-height: clamp(380px, 38vw, 520px);
  display: grid;
  place-items: end center;
  isolation: isolate;
}

.hero-stage::before {
  content: none;
}

.botanical {
  position: absolute;
  right: 2%;
  top: 7%;
  width: min(210px, 30vw);
  opacity: 0.32;
  color: var(--sage);
  z-index: -1;
  transform: rotate(-7deg);
}

.product-lineup {
  position: relative;
  width: min(680px, 100%);
  min-height: clamp(380px, 44vw, 585px);
}

.photo-lineup {
  width: min(720px, 100%);
}

.photo-lineup::before {
  content: none;
}

.photo-product {
  position: absolute;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(200, 100, 112, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.58) 0 32%, rgba(249, 227, 223, 0.22) 56%, transparent 78%),
    radial-gradient(circle at 16% 12%, rgba(237, 245, 237, 0.52), transparent 42%),
    linear-gradient(135deg, rgba(255, 250, 247, 0.86), rgba(249, 227, 223, 0.36));
  box-shadow: 0 24px 42px rgba(72, 48, 50, 0.16);
  animation: productFloat 5.4s ease-in-out infinite;
}

.photo-product::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.25), transparent 42%),
    radial-gradient(ellipse at 50% 92%, rgba(196, 154, 98, 0.16), transparent 45%);
  pointer-events: none;
}

.photo-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 58%, rgba(0, 0, 0, 0.92) 72%, rgba(0, 0, 0, 0.42) 86%, transparent 99%);
  mask-image: radial-gradient(ellipse at center, #000 0 58%, rgba(0, 0, 0, 0.92) 72%, rgba(0, 0, 0, 0.42) 86%, transparent 99%);
  filter: saturate(1.06) contrast(1.04) drop-shadow(0 18px 18px rgba(75, 52, 53, 0.1));
}

.photo-product.large {
  left: 0;
  bottom: 60px;
  width: 210px;
  height: 280px;
  z-index: 4;
}

.photo-product.tall {
  left: 28%;
  bottom: 0;
  width: 215px;
  height: 300px;
  z-index: 6;
  animation-delay: -1.8s;
}

.photo-product.medium {
  right: 0;
  bottom: 80px;
  width: 195px;
  height: 260px;
  z-index: 5;
  animation-delay: -2.8s;
}

.photo-product.small {
  display: none;
}

.product {
  position: absolute;
  bottom: 0;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 24px 30px rgba(80, 54, 55, 0.22));
  transform: translateY(var(--float, 0));
  animation: productFloat 5s ease-in-out infinite;
}

.product:nth-child(2) {
  animation-delay: -1.1s;
}

.product:nth-child(3) {
  animation-delay: -2.2s;
}

.product:nth-child(4) {
  animation-delay: -3.1s;
}

.product:nth-child(5) {
  animation-delay: -4s;
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.product-label {
  display: grid;
  place-items: center;
  gap: 6px;
  width: 72%;
  padding: 14px 9px;
  border: 1px solid rgba(158, 114, 76, 0.24);
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.5vw, 1.08rem);
  line-height: 1.05;
}

.product-label small {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.bottle {
  left: 45%;
  width: 158px;
  height: 420px;
  z-index: 4;
}

.bottle::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 50%;
  width: 54px;
  height: 56px;
  transform: translateX(-50%);
  border-radius: 12px 12px 3px 3px;
  background: #201b1b;
  box-shadow: inset 12px 0 18px rgba(255, 255, 255, 0.14);
}

.bottle::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 86px;
  height: 22px;
  transform: translateX(-28%);
  border-radius: 12px 12px 0 0;
  background: #171313;
}

.bottle-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 338px;
  border-radius: 34px 34px 18px 18px;
  border: 1px solid rgba(106, 83, 56, 0.18);
  background:
    linear-gradient(88deg, rgba(255, 255, 255, 0.9), rgba(236, 218, 200, 0.72) 35%, rgba(255, 255, 255, 0.9) 72%),
    #f0dfcf;
  box-shadow: inset 18px 0 22px rgba(255, 255, 255, 0.48);
}

.bottle-body .product-label {
  position: absolute;
  left: 50%;
  top: 104px;
  transform: translateX(-50%);
}

.serum {
  left: 24%;
  width: 116px;
  height: 292px;
  z-index: 3;
}

.serum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 27px;
  height: 64px;
  transform: translateX(-50%);
  border-radius: 14px 14px 5px 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), #2c2424);
}

.serum::after {
  content: "";
  position: absolute;
  top: 54px;
  left: 50%;
  width: 76px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 16px;
  background: linear-gradient(90deg, #fff, #d8a56d);
}

.serum-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 225px;
  border-radius: 18px 18px 12px 12px;
  border: 1px solid rgba(200, 100, 112, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(248, 229, 223, 0.76) 46%, rgba(255, 255, 255, 0.84)),
    rgba(249, 227, 223, 0.9);
}

.serum-body .product-label {
  position: absolute;
  left: 50%;
  top: 64px;
  transform: translateX(-50%);
  width: 74%;
  padding: 10px 6px;
}

.dropper {
  right: 17%;
  width: 105px;
  height: 310px;
  z-index: 5;
}

.dropper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 72px;
  border-radius: 14px 14px 6px 6px;
  transform: translateX(-50%);
  background: #1f1a1b;
}

.dropper::after {
  content: "";
  position: absolute;
  top: 59px;
  left: 50%;
  width: 56px;
  height: 24px;
  border-radius: 14px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #fff, #302523);
}

.dropper-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 240px;
  border-radius: 18px 18px 10px 10px;
  border: 1px solid rgba(116, 73, 45, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 240, 215, 0.32), rgba(114, 59, 25, 0.92) 45%, rgba(44, 22, 12, 0.82) 90%),
    #8b4d24;
}

.dropper-body .product-label {
  position: absolute;
  left: 50%;
  top: 74px;
  transform: translateX(-50%);
  width: 78%;
  padding: 10px 6px;
}

.cream {
  left: 42%;
  width: 162px;
  height: 145px;
  z-index: 6;
}

.cream-lid {
  position: absolute;
  top: 0;
  left: 6%;
  width: 88%;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(214, 169, 103, 0.9), rgba(255, 255, 255, 0.72)),
    #d4a569;
}

.cream-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 96px;
  border-radius: 50% / 18%;
  border: 1px solid rgba(158, 114, 76, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(239, 223, 207, 0.9), rgba(255, 255, 255, 0.9)),
    #f7eee6;
}

.cream-body .product-label {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  padding: 8px 6px;
}

.box {
  right: 1%;
  width: 132px;
  height: 318px;
  z-index: 2;
}

.box-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 5px 5px;
  border: 1px solid rgba(200, 100, 112, 0.2);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.9), rgba(248, 230, 223, 0.72)),
    #f8e7df;
  box-shadow: inset -18px 0 28px rgba(159, 70, 83, 0.08);
}

.box-body .product-label {
  position: absolute;
  left: 50%;
  top: 84px;
  transform: translateX(-50%);
  width: 78%;
}

.petals {
  position: absolute;
  inset: auto 0 0;
  height: 84px;
  pointer-events: none;
}

.petals span {
  position: absolute;
  bottom: 10px;
  width: 42px;
  height: 18px;
  border-radius: 90% 10% 90% 10%;
  background: linear-gradient(90deg, rgba(200, 100, 112, 0.1), rgba(249, 204, 204, 0.76));
  transform: rotate(var(--r));
  opacity: 0.78;
}

.petals span:nth-child(1) {
  left: 18%;
  --r: -16deg;
}

.petals span:nth-child(2) {
  left: 34%;
  --r: 10deg;
}

.petals span:nth-child(3) {
  left: 66%;
  --r: -8deg;
}

.petals span:nth-child(4) {
  left: 80%;
  --r: 18deg;
}

.feature-bar {
  position: relative;
  z-index: 3;
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(200, 100, 112, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.feature-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-right: 1px solid rgba(200, 100, 112, 0.12);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item h3 {
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.feature-item p {
  font-size: 0.82rem;
}

.soft-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(249, 227, 223, 0.78), rgba(255, 255, 255, 0.8)),
    #fff;
  color: var(--rose-deep);
}

.soft-icon svg {
  width: 25px;
  height: 25px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.grid.cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.category-card,
.product-card,
.step-card,
.metric-card,
.form-card,
.panel {
  position: relative;
  border: 1px solid rgba(200, 100, 112, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.magnetic {
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.magnetic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.74), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.magnetic:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 100, 112, 0.32);
  box-shadow: 0 20px 40px rgba(108, 66, 70, 0.14);
}

.magnetic:hover::after {
  opacity: 1;
}

.category-card {
  min-height: 286px;
  display: grid;
  grid-template-rows: 176px 1fr;
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.82), rgba(249, 227, 223, 0.16)),
    rgba(255, 255, 255, 0.62);
}

.category-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.62) 0 30%, rgba(249, 227, 223, 0.24) 52%, transparent 76%),
    radial-gradient(circle at 18% 18%, rgba(237, 245, 237, 0.82), transparent 42%),
    linear-gradient(135deg, rgba(255, 250, 247, 0.92), rgba(237, 245, 237, 0.7));
}

.category-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 3;
  pointer-events: none;
}

.category-visual::after {
  content: "";
  position: absolute;
  left: 17%;
  right: 17%;
  bottom: 16px;
  height: 22px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(100, 73, 52, 0.18), transparent 68%),
    linear-gradient(90deg, transparent, rgba(196, 154, 98, 0.34), transparent);
  filter: blur(1px);
  opacity: 0.78;
  z-index: 0;
  pointer-events: none;
}

.category-photo {
  position: relative;
  z-index: 1;
  width: min(78%, 320px);
  height: calc(100% - 30px);
  object-fit: contain;
  object-position: center;
  filter: saturate(1.06) contrast(1.03) drop-shadow(0 20px 18px rgba(75, 52, 53, 0.14));
  transform: scale(1);
  transition: transform 420ms ease, filter 420ms ease;
}

.category-card:hover .category-photo,
.product-card:hover .category-photo {
  transform: scale(1.035);
  filter: saturate(1.1) contrast(1.04) drop-shadow(0 24px 22px rgba(75, 52, 53, 0.16));
}

.mini-products {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 148px;
  height: 102px;
  transform: translateX(-50%);
}

.mini-products span {
  position: absolute;
  bottom: 0;
  display: block;
  border: 1px solid rgba(121, 85, 65, 0.12);
  box-shadow: 0 10px 18px rgba(82, 57, 58, 0.12);
}

.mini-products .mini-a {
  left: 9px;
  width: 42px;
  height: 88px;
  border-radius: 14px 14px 7px 7px;
  background: linear-gradient(90deg, #fff, #f4e2d9);
}

.mini-products .mini-b {
  left: 54px;
  width: 48px;
  height: 72px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(90deg, #fff, #754220);
}

.mini-products .mini-c {
  right: 5px;
  width: 50px;
  height: 52px;
  border-radius: 50% / 18%;
  background: linear-gradient(90deg, #fff, #e2c5ad);
}

.category-body {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 48px 14px 22px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.96), rgba(255, 248, 245, 0.82)),
    radial-gradient(circle at 50% 0, rgba(249, 227, 223, 0.26), transparent 42%);
}

.category-body .soft-icon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.92),
    0 16px 30px rgba(159, 70, 83, 0.16);
}

.category-body p,
.product-card p,
.step-card p,
.metric-card p,
.card p {
  font-size: 0.88rem;
}

.solution-card,
.reason-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.solution-card .soft-icon {
  width: 66px;
  height: 66px;
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--rose-deep);
  font-size: 0.86rem;
  font-weight: 900;
}

.text-link svg {
  width: 15px;
  height: 15px;
}

.reason-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(200, 100, 112, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--soft-shadow);
}

.reason-card {
  border-right: 1px solid rgba(200, 100, 112, 0.12);
  text-align: center;
  justify-items: center;
  box-shadow: none;
}

.reason-card:last-child {
  border-right: 0;
}

.reason-card .soft-icon {
  color: var(--sage);
  background: rgba(237, 245, 237, 0.8);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px dashed rgba(159, 70, 83, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.step-card {
  min-height: 184px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding: 66px 15px 20px;
  text-align: center;
  box-shadow: none;
  border: 0;
  border-right: 1px dashed rgba(159, 70, 83, 0.2);
  background: transparent;
}

.step-card:last-child {
  border-right: 0;
}

.step-number {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #de7c86, var(--rose-deep));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 20px rgba(200, 100, 112, 0.22);
}

.product-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.78), rgba(249, 227, 223, 0.14)),
    rgba(255, 255, 255, 0.62);
}

.product-card .category-visual {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.64) 0 32%, rgba(249, 227, 223, 0.24) 54%, transparent 78%),
    radial-gradient(circle at 82% 18%, rgba(237, 245, 237, 0.74), transparent 42%),
    linear-gradient(135deg, rgba(255, 250, 247, 0.94), rgba(237, 245, 237, 0.68));
}

.product-card .category-photo {
  width: min(76%, 340px);
  height: calc(100% - 34px);
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.98), rgba(255, 248, 245, 0.86)),
    radial-gradient(circle at 50% 0, rgba(249, 227, 223, 0.24), transparent 42%);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid rgba(200, 100, 112, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.74);
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 900;
}

.quality-strip {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  overflow: hidden;
  border: 1px solid rgba(111, 127, 73, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(237, 245, 237, 0.96), rgba(255, 255, 255, 0.72));
  box-shadow: var(--soft-shadow);
}

.lab-visual {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(237, 245, 237, 0.92), rgba(255, 255, 255, 0.86)),
    #fff;
}

.lab-visual::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.14)),
    url("../img/products/quality-factory-1.jpg") center / contain no-repeat,
    #fff;
  box-shadow: 0 18px 44px rgba(55, 75, 49, 0.12);
}

.lab-visual::after {
  content: "Verified per order";
  position: absolute;
  left: 32px;
  bottom: 114px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(111, 127, 73, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(65, 82, 54, 0.12);
}

.quality-strip.quality-strip--media {
  grid-template-columns: 1fr;
}

.quality-strip.quality-strip--media .lab-visual.has-image {
  min-height: clamp(320px, 42vw, 520px);
}

.quality-strip.quality-strip--media .lab-visual.has-image img {
  max-height: clamp(280px, 38vw, 460px);
}

.lab-visual.has-image::before,
.lab-visual.has-image::after {
  content: none;
}

.lab-visual.has-image {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: clamp(22px, 3vw, 38px);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.92), transparent 58%),
    radial-gradient(circle at 78% 82%, rgba(249, 227, 223, 0.5), transparent 60%),
    linear-gradient(135deg, rgba(237, 245, 237, 0.88), rgba(255, 250, 247, 0.94));
}

.lab-visual.has-image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 22px 32px rgba(65, 82, 54, 0.22));
  transition: transform 0.5s ease;
}

.lab-visual.has-image:hover img {
  transform: translateY(-4px) scale(1.02);
}

@media (max-width: 720px) {
  .lab-visual.has-image {
    min-height: 260px;
  }
  .lab-visual.has-image img {
    max-height: 220px;
  }
}

.lab-glass {
  position: absolute;
  right: 32px;
  bottom: 20px;
  left: 32px;
  width: auto;
  height: 88px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tube,
.flask {
  position: relative;
  bottom: auto;
  width: auto;
  height: 76px;
  border: 1px solid rgba(200, 100, 112, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 227, 223, 0.5)),
    #fff;
  box-shadow: 0 14px 26px rgba(108, 66, 70, 0.1);
}

.tube::after,
.flask::after {
  content: "COA";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--rose-deep);
  font-size: clamp(0.58rem, 0.85vw, 0.76rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.tube:nth-child(1)::after {
  content: "COA";
}

.tube:nth-child(2)::after {
  content: "MSDS";
}

.tube:nth-child(3)::after {
  content: "QC";
}

.flask {
  display: none;
}

.quality-content {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(28px, 4vw, 42px);
}

.page-hero .quality-strip .lab-glass {
  display: none;
}

.page-hero .quality-strip .lab-visual::after {
  bottom: 24px;
}

.home-quality .lab-glass {
  display: none;
}

.home-quality .lab-visual::before {
  inset: 22px;
  height: auto;
  background:
    linear-gradient(135deg, rgba(255, 250, 247, 0.16), rgba(237, 245, 237, 0.26)),
    url("../img/products/quality.png") center / contain no-repeat;
}

.home-quality .lab-visual::after {
  content: "";
  display: none;
}

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

.compliance-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.compliance-item h3 {
  font-size: 0.91rem;
}

.compliance-item p {
  font-size: 0.78rem;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 4.6vw, 46px);
  border: 1px solid rgba(200, 100, 112, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(249, 227, 223, 0.95), rgba(255, 255, 255, 0.72), rgba(237, 245, 237, 0.82)),
    #fff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
}

.cta-actions {
  display: grid;
  gap: 12px;
  min-width: min(280px, 100%);
}

.site-footer {
  border-top: 1px solid rgba(159, 70, 83, 0.16);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.75fr));
  gap: 34px;
  padding: 42px 0;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-col h3 {
  font-size: 0.9rem;
}

.footer-col a,
.footer-col p {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-col a:hover {
  color: var(--rose-deep);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(159, 70, 83, 0.12);
  color: var(--muted);
  font-size: 0.8rem;
}

.page-hero {
  padding: clamp(72px, 9vw, 118px) 0 clamp(46px, 7vw, 82px);
  background:
    linear-gradient(115deg, rgba(255, 250, 247, 0.98), rgba(249, 227, 223, 0.72), rgba(237, 245, 237, 0.6)),
    var(--ivory);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.page-hero-grid.single {
  grid-template-columns: minmax(0, 780px);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 5.1rem);
}

.page-hero-copy {
  display: grid;
  gap: 20px;
}

.stat-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 24px;
  display: grid;
  gap: 8px;
}

.metric-value {
  font-family: var(--serif);
  color: var(--rose-deep);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.image-panel {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(200, 100, 112, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.76), rgba(249, 227, 223, 0.22) 66%),
    linear-gradient(135deg, rgba(255, 250, 247, 0.96), rgba(237, 245, 237, 0.6));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.packaging-showcase {
  position: relative;
  min-height: 390px;
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 24% 22%, rgba(237, 245, 237, 0.74), transparent 34%),
    radial-gradient(circle at 76% 28%, rgba(249, 227, 223, 0.72), transparent 38%),
    linear-gradient(135deg, rgba(255, 250, 247, 0.96), rgba(255, 245, 241, 0.76));
}

.packaging-showcase::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  pointer-events: none;
}

.packaging-showcase::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 34px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(95, 66, 48, 0.18), transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}

.packaging-showcase img {
  position: relative;
  z-index: 1;
  width: min(86%, 560px);
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 26px 54px rgba(86, 59, 60, 0.14);
}

.cosmetic-line-showcase {
  min-height: 390px;
  background:
    radial-gradient(circle at 24% 22%, rgba(237, 245, 237, 0.74), transparent 34%),
    radial-gradient(circle at 76% 28%, rgba(249, 227, 223, 0.72), transparent 38%),
    linear-gradient(135deg, rgba(255, 250, 247, 0.96), rgba(255, 245, 241, 0.76));
}

.cosmetic-line-showcase img {
  width: min(92%, 560px);
  max-height: 320px;
  object-fit: contain;
  border-radius: 8px;
}

.packaging-label {
  position: absolute;
  left: clamp(24px, 4vw, 44px);
  bottom: clamp(22px, 3vw, 34px);
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 11px 16px;
  border: 1px solid rgba(200, 100, 112, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 32px rgba(108, 66, 70, 0.12);
}

.packaging-label span {
  color: var(--rose-deep);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.packaging-label strong {
  color: var(--charcoal);
  font-size: 0.86rem;
  line-height: 1.1;
}

.shelf-scene {
  position: relative;
  width: min(500px, 100%);
  height: 320px;
}

.shelf {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 24px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(196, 154, 98, 0.22), rgba(196, 154, 98, 0.62), rgba(196, 154, 98, 0.2));
}

.shelf-product {
  position: absolute;
  bottom: 58px;
  width: 126px;
  border: 1px solid rgba(158, 114, 76, 0.18);
  border-radius: 8px;
  background-color: rgba(255, 250, 247, 0.88);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 86% auto;
  background-blend-mode: multiply;
  box-shadow: 0 20px 30px rgba(70, 48, 49, 0.12);
}

.shelf-product.one {
  left: 22px;
  height: 170px;
  background-image: url("../img/products/category-skincare.jpg");
}

.shelf-product.two {
  left: 142px;
  width: 126px;
  height: 148px;
  background-image: url("../img/products/hero-serum.jpg");
}

.shelf-product.three {
  left: 260px;
  height: 196px;
  background-image: url("../img/products/category-haircare.jpg");
}

.shelf-product.four {
  right: 22px;
  width: 126px;
  height: 160px;
  background-image: url("../img/products/category-private-label.jpg");
}

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

.check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #4f4546;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(111, 127, 73, 0.12), rgba(111, 127, 73, 0.18)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%236f7f49' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E") center / 15px 15px no-repeat;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(200, 100, 112, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.process-lane {
  display: grid;
  gap: 18px;
}

.process-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(200, 100, 112, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.process-count {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #de7c86, var(--rose-deep));
  color: #fff;
  font-weight: 900;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.form-card {
  padding: clamp(22px, 3vw, 34px);
}

.quote-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #443839;
  font-size: 0.84rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(159, 70, 83, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  color: var(--charcoal);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 132px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(200, 100, 112, 0.62);
  box-shadow: 0 0 0 4px rgba(200, 100, 112, 0.12);
  background: #fff;
}

.form-result {
  display: none;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(111, 127, 73, 0.22);
  border-radius: var(--radius);
  background: rgba(237, 245, 237, 0.72);
}

.form-result.visible {
  display: grid;
}

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

.contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.sticky-quote {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

@media (max-width: 1080px) {
  .primary-nav {
    gap: 14px;
    font-size: 0.8rem;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .quality-strip,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    order: -1;
    min-height: 470px;
  }

  .feature-bar,
  .grid.cols-4,
  .grid.cols-5,
  .reason-band,
  .timeline,
  .compliance-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-item,
  .reason-card,
  .step-card {
    border-right: 0;
  }

  .timeline {
    gap: 0;
  }

  .step-card {
    border-bottom: 1px dashed rgba(159, 70, 83, 0.2);
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    height: calc(100vh - var(--header-height));
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 18px 24px 120px;
    overflow-y: auto;
    background: rgba(255, 250, 247, 0.96);
    border-top: 1px solid rgba(159, 70, 83, 0.12);
    transform: translateX(100%);
    transition: transform 240ms ease;
  }

  .primary-nav[data-open="true"] {
    transform: translateX(0);
  }

  .primary-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(159, 70, 83, 0.1);
    font-size: 1rem;
  }

  .primary-nav a::after {
    bottom: 8px;
    right: auto;
    width: 70px;
  }

  .header-actions .btn {
    display: none;
  }

  .brand-tagline {
    display: none;
  }

  .trust-row,
  .grid.cols-3,
  .grid.cols-4,
  .grid.cols-5,
  .stat-stack,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 408px;
  }

  .product-lineup {
    transform: scale(0.72);
    transform-origin: center bottom;
    width: 620px;
    margin-left: -100px;
  }

  .feature-bar {
    margin-top: 0;
  }

  .grid.cols-2,
  .feature-bar,
  .reason-band,
  .timeline,
  .compliance-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid rgba(200, 100, 112, 0.12);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .sticky-quote {
    display: block;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 52px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .hero-stage {
    min-height: 340px;
  }

  .product-lineup {
    transform: scale(0.58);
    margin-left: -150px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .quote-form .btn {
    width: 100%;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .page-hero {
    padding-top: 56px;
  }

  .service-row,
  .process-item {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   POLISH & MOBILE REFINEMENTS
   ========================================================= */

/* Cleaner tag pills */
.tag {
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 6px;
  background: rgba(237, 245, 237, 0.7);
  border-color: rgba(111, 127, 73, 0.22);
  color: var(--sage);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

/* Refined product cards */
.product-card {
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.product-card-body {
  padding: 22px 20px 22px;
  gap: 12px;
}

.product-card-body h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

.product-card-body p {
  font-size: 0.92rem;
  line-height: 1.55;
}

.product-card-body .text-link {
  margin-top: 4px;
  padding: 8px 0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.product-card-body .text-link::after {
  content: "\2192";
  margin-left: 2px;
  transition: transform 220ms ease;
}

.product-card-body .text-link:hover::after {
  transform: translateX(3px);
}

/* Soften the eyebrow rule lines so they don't dominate */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}

.eyebrow::before,
.eyebrow::after {
  width: 18px;
  opacity: 0.28;
}

/* Tighter section heading */
.section-heading h2 {
  letter-spacing: -0.01em;
}

.section-heading + .grid {
  margin-top: 8px;
}

/* Cleaner solution cards */
.solution-card {
  padding: 28px 24px;
  gap: 12px;
}

.solution-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: -0.005em;
}

.solution-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Category cards - polished bottom area */
.category-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: -0.005em;
}

.category-body p {
  max-width: 240px;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Hero copy refinements */
.hero-copy h1 {
  letter-spacing: -0.015em;
}

.hero-copy .lead {
  max-width: 540px;
}

/* Better trust row icons */
.trust-item {
  font-weight: 700;
  font-size: 0.8rem;
  color: #4a3e3f;
}

/* Sticky quote button — mobile floater polish */
.sticky-quote {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 16px 30px rgba(200, 100, 112, 0.4);
}

/* Form polish */
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(159, 70, 83, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 0.95rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.field textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200, 100, 112, 0.14);
}

/* Honeypot — hidden from humans, visible to spambots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: #4a3e3f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* CTA band polish */
.cta-band {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(200, 100, 112, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 28%, rgba(249, 227, 223, 0.5), transparent 50%),
    radial-gradient(circle at 82% 72%, rgba(237, 245, 237, 0.62), transparent 52%),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  letter-spacing: -0.015em;
}

/* =========================================================
   MOBILE ENHANCEMENTS
   ========================================================= */

@media (max-width: 1080px) {
  .hero {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-stage {
    min-height: 440px;
  }

  .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  /* Looser section padding on mobile */
  .section {
    padding: 56px 0;
  }

  .section.tight {
    padding-top: 24px;
  }

  /* Hero text rebalanced */
  .hero {
    padding: 28px 0 48px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 8vw, 3rem);
  }

  .page-hero {
    padding: 40px 0 24px;
  }

  /* Trust row stacks on mobile */
  .trust-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Category & product cards: full width images */
  .category-card,
  .product-card {
    grid-template-rows: 200px 1fr;
    min-height: auto;
  }

  .category-photo {
    width: min(72%, 280px);
  }

  /* Cards: better padding on mobile */
  .solution-card,
  .product-card-body,
  .category-body {
    padding: 22px 18px;
  }

  /* Quality strip: image scales nicely on mobile */
  .quality-strip {
    grid-template-columns: 1fr;
  }

  .lab-visual.has-image {
    min-height: 240px;
  }

  .quality-strip.quality-strip--media .lab-visual.has-image {
    min-height: 280px;
  }

  /* Image panels balance on mobile */
  .image-panel {
    min-height: 280px;
    padding: 22px;
  }

  /* CTA band: stack actions */
  .cta-band {
    gap: 18px;
  }

  /* Buttons: larger touch targets */
  .btn {
    min-height: 50px;
    padding: 0 22px;
    font-size: 0.95rem;
  }

  /* Form grid: stack fields */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .field.full {
    grid-column: 1 / -1;
  }

  /* Footer columns stack with proper spacing */
  .footer-grid {
    gap: 32px;
  }

  .footer-col h3 {
    margin-bottom: 8px;
  }

  /* Page hero copy alignment */
  .page-hero-copy {
    gap: 14px;
  }

  /* Section heading mobile padding */
  .section-heading {
    margin-bottom: 24px;
    padding: 0 4px;
  }

  /* Process & service rows: better mobile layout */
  .process-item,
  .service-row {
    padding: 20px 18px;
  }

  /* Sticky quote: refined floating */
  .sticky-quote {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 22px;
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  /* Tighter container */
  .container {
    width: min(100% - 24px, 1180px);
  }

  /* Refined typography */
  h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.6rem, 7.5vw, 2.2rem);
    line-height: 1.12;
  }

  .lead {
    font-size: 0.98rem;
  }

  /* Single-col cards on phones */
  .grid.cols-3,
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }

  /* Hero stage compresses */
  .hero-stage {
    min-height: 360px;
  }

  /* Mobile menu nav links: bigger touch targets */
  .primary-nav a {
    padding: 16px 0;
    font-size: 1.05rem;
  }

  /* CTA actions stack and stretch */
  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  /* Eyebrow: less aggressive on tiny screens */
  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  /* Card body text */
  .product-card-body h3,
  .category-body h3,
  .solution-card h3 {
    font-size: 1.25rem;
  }

  /* Lab/quality visuals more compact */
  .lab-visual.has-image {
    min-height: 220px;
    padding: 18px;
  }

  .quality-strip.quality-strip--media .lab-visual.has-image {
    min-height: 240px;
  }

  .lab-visual.has-image img {
    max-height: 200px;
  }

  /* Section headings tighter */
  .section-heading {
    margin-bottom: 20px;
  }

  /* Footer col text size */
  .footer-col p,
  .footer-col a {
    font-size: 0.92rem;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

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

  .brand-name {
    font-size: 1.35rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   PERFORMANCE & MOBILE POLISH (10/10 PASS)
   ========================================================= */

/* Remove iOS/Android tap-flash gray overlay on buttons & links */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Keep tap focus visible for accessibility (keyboard users) */
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Smoother text rendering on mobile */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* Prevent horizontal scroll caused by overflowing decorations on phones */
html, body {
  overflow-x: hidden;
}

/* Reserve aspect ratio for images that have width/height attrs but stretch via CSS */
img {
  height: auto;
}

/* Tighter hero stage on small phones — frees up screen for the message */
@media (max-width: 560px) {
  .hero-stage {
    min-height: 320px;
  }

  .product-lineup {
    transform: scale(0.6);
    margin-left: -160px;
  }

  /* Service rows: keep icon next to text on phones (was stacking) */
  .service-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .service-row .soft-icon {
    width: 44px;
    height: 44px;
  }

  .service-row .soft-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 380px) {
  .hero-stage {
    min-height: 280px;
  }

  .product-lineup {
    transform: scale(0.5);
    margin-left: -190px;
  }

  /* Stack hero stage above text on tiny phones, keep it compact */
  .hero {
    padding: 20px 0 36px;
  }
}

/* =========================================================
   OVERFLOW SAFETY (FIX: HERO BUTTONS GOING OFF SCREEN)
   ========================================================= */

/* Grid children need min-width:0 to shrink below their content size,
   otherwise photo-lineup or long words push the column wider than viewport */
.hero-grid > *,
.page-hero-grid > *,
.split > *,
.quality-strip > *,
.form-layout > * {
  min-width: 0;
  max-width: 100%;
}

.hero-stage,
.product-lineup,
.photo-lineup,
.image-panel {
  max-width: 100%;
  overflow: hidden;
}

/* Allow long headlines to wrap instead of overflowing */
h1, h2, h3, h4 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero-copy,
.page-hero-copy {
  min-width: 0;
  max-width: 100%;
}

.hero-actions,
.cta-actions {
  max-width: 100%;
  flex-wrap: wrap;
}

/* Sticky-quote: was display:block on mobile, killing flex-center.
   Restore inline-flex so the text centers in the pill. */
.sticky-quote {
  display: none;
}

@media (max-width: 840px) {
  .sticky-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================================================
   MOBILE & TABLET HERO - TEXT-FIRST (hide photo collage)
   Photos only show on wide desktops (>1080px) where there's
   genuine horizontal room to display them next to the headline.
   ========================================================= */

@media (max-width: 1080px) {
  /* Hide the entire product collage on phones, tablets, and small laptops.
     The categories grid below already shows 6 product images. */
  .hero-stage {
    display: none;
  }

  /* Make the text hero feel substantial on its own */
  .hero {
    min-height: auto;
    padding: 32px 0 56px;
    display: block;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    gap: 22px;
    text-align: left;
    position: relative;
    padding: 8px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 9.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .hero-copy .lead {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  /* Subtle decorative backdrop so it doesn't feel empty */
  .hero::after {
    content: "";
    position: absolute;
    top: 12%;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 227, 223, 0.55), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  /* Trust row keeps 3 columns on tablet, gets a top/bottom rule */
  .trust-row {
    padding: 12px 0;
    border-top: 1px solid rgba(159, 70, 83, 0.1);
    border-bottom: 1px solid rgba(159, 70, 83, 0.1);
    margin-top: 12px;
  }

  .botanical {
    display: none;
  }
}

/* On phones only: stack the trust row to single column */
@media (max-width: 560px) {
  .trust-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 10px 0;
  }

  .trust-item {
    padding: 4px 0;
    font-size: 0.88rem;
  }
}


/* =========================================================
   BLOG LISTING + ARTICLE LAYOUT
   ========================================================= */

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

.blog-card {
  position: relative;
  border: 1px solid rgba(200, 100, 112, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 100, 112, 0.28);
  box-shadow: 0 22px 36px rgba(108, 66, 70, 0.16);
}

.blog-card-link {
  display: grid;
  gap: 14px;
  padding: 30px 28px 28px;
  height: 100%;
  align-content: start;
}

.blog-card-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-card-tag span:first-child {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 6px;
  background: rgba(237, 245, 237, 0.7);
  border: 1px solid rgba(111, 127, 73, 0.22);
  color: var(--sage);
}

.blog-read-time {
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
}

.blog-card h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0;
}

.blog-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  color: var(--rose-deep);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.blog-card-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 220ms ease;
}

.blog-card:hover .blog-card-cta svg {
  transform: translateX(3px);
}

/* Article body styles (used in blog post pages) */
.article-hero {
  padding: 56px 0 28px;
}

.article-hero .eyebrow {
  margin-bottom: 14px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 0 64px;
  font-size: 1.05rem;
  line-height: 1.78;
  color: #3f3335;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin: 56px 0 16px;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

.article-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 36px 0 12px;
  letter-spacing: -0.005em;
  color: var(--charcoal);
}

.article-body p {
  margin: 0 0 22px;
  color: #3f3335;
}

.article-body ul,
.article-body ol {
  margin: 0 0 26px;
  padding-left: 22px;
}

.article-body li {
  margin: 0 0 10px;
  color: #3f3335;
}

.article-body strong {
  color: var(--charcoal);
}

.article-body a {
  color: var(--rose-deep);
  font-weight: 700;
  border-bottom: 1px solid rgba(200, 100, 112, 0.32);
  transition: border-color 200ms ease;
}

.article-body a:hover {
  border-bottom-color: var(--rose-deep);
}

.article-body blockquote {
  margin: 32px 0;
  padding: 22px 28px;
  border-left: 3px solid var(--rose);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(249, 227, 223, 0.32), rgba(237, 245, 237, 0.22));
  font-style: italic;
  color: #4a3e3f;
}

.article-body blockquote p:last-child {
  margin: 0;
}

.article-body .callout {
  margin: 32px 0;
  padding: 24px 26px;
  border: 1px solid rgba(200, 100, 112, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 20%, rgba(249, 227, 223, 0.5), transparent 50%),
    rgba(255, 255, 255, 0.7);
}

.article-body .callout h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--rose-deep);
}

.article-body .callout p:last-child {
  margin: 0;
}

.article-body hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 100, 112, 0.28), transparent);
  margin: 48px 0;
}

.article-cta {
  margin: 40px 0 0;
  padding: 32px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 20%, rgba(249, 227, 223, 0.55), transparent 50%),
    radial-gradient(circle at 82% 80%, rgba(237, 245, 237, 0.55), transparent 55%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(200, 100, 112, 0.16);
  text-align: center;
}

.article-cta h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}

.article-cta p {
  margin: 0 0 18px;
}

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.breadcrumbs a {
  color: var(--rose-deep);
  font-weight: 700;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .sep {
  margin: 0 6px;
  opacity: 0.5;
}

.related-posts {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(159, 70, 83, 0.14);
}

.related-posts h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 20px;
}

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

@media (max-width: 720px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-card-link {
    padding: 24px 22px;
    gap: 12px;
  }

  .blog-card h2 {
    font-size: 1.3rem;
  }

  .article-body {
    padding: 16px 0 48px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .article-body h2 {
    font-size: 1.5rem;
    margin: 36px 0 14px;
  }

  .article-cta {
    padding: 24px 20px;
  }

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

/* =========================================================
   SOCIAL ROW (FOOTER)
   ========================================================= */

.social-row {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 36px 0 24px;
  margin-top: 8px;
  border-top: 1px solid rgba(159, 70, 83, 0.14);
}

.social-label {
  margin: 0;
  color: var(--rose-deep);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.social-icon {
  --icon-bg: rgba(255, 255, 255, 0.86);
  --icon-color: var(--rose-deep);
  --icon-border: rgba(200, 100, 112, 0.32);
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--icon-border);
  border-radius: 50%;
  background: var(--icon-bg);
  color: var(--icon-color);
  box-shadow: 0 6px 14px rgba(108, 66, 70, 0.08);
  transition:
    transform 360ms cubic-bezier(0.22, 0.94, 0.42, 1),
    background 280ms ease,
    color 280ms ease,
    border-color 280ms ease,
    box-shadow 360ms ease;
  isolation: isolate;
  will-change: transform;
}

.social-icon svg {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  transition: transform 360ms cubic-bezier(0.22, 0.94, 0.42, 1);
}

/* Ripple ring that expands outward on hover */
.social-pulse {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--rose);
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  z-index: 1;
}

.social-icon:hover {
  --icon-bg: var(--rose-deep);
  --icon-color: #fff;
  --icon-border: var(--rose-deep);
  transform: translateY(-5px) scale(1.04);
  box-shadow:
    0 16px 26px rgba(159, 70, 83, 0.32),
    0 4px 10px rgba(159, 70, 83, 0.18);
}

.social-icon:hover svg {
  transform: rotate(-6deg) scale(1.1);
}

.social-icon:hover .social-pulse {
  animation: socialRipple 700ms cubic-bezier(0.22, 0.94, 0.42, 1) forwards;
}

@keyframes socialRipple {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

/* Stagger an entrance fade so the icons don't pop in all at once */
.social-icon {
  opacity: 0;
  transform: translateY(8px);
  animation: socialEnter 600ms cubic-bezier(0.22, 0.94, 0.42, 1) forwards;
}

.social-icon:nth-child(1) { animation-delay: 0.05s; }
.social-icon:nth-child(2) { animation-delay: 0.15s; }
.social-icon:nth-child(3) { animation-delay: 0.25s; }
.social-icon:nth-child(4) { animation-delay: 0.35s; }
.social-icon:nth-child(5) { animation-delay: 0.45s; }

@keyframes socialEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Brand-color overrides per platform on hover */
.social-icon[aria-label*="Twitter"]:hover,
.social-icon[aria-label*="X ("]:hover {
  --icon-bg: #0f1419;
  --icon-border: #0f1419;
  box-shadow: 0 16px 26px rgba(15, 20, 25, 0.34);
}

.social-icon[aria-label*="Facebook"]:hover {
  --icon-bg: #1877f2;
  --icon-border: #1877f2;
  box-shadow: 0 16px 26px rgba(24, 119, 242, 0.36);
}

.social-icon[aria-label*="LinkedIn"]:hover {
  --icon-bg: #0a66c2;
  --icon-border: #0a66c2;
  box-shadow: 0 16px 26px rgba(10, 102, 194, 0.36);
}

.social-icon[aria-label*="Instagram"]:hover {
  --icon-bg: linear-gradient(135deg, #f09433 0%, #e6683c 28%, #dc2743 52%, #cc2366 76%, #bc1888 100%);
  --icon-border: #dc2743;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 28%, #dc2743 52%, #cc2366 76%, #bc1888 100%);
  box-shadow: 0 16px 26px rgba(220, 39, 67, 0.36);
}

.social-icon[aria-label*="YouTube"]:hover {
  --icon-bg: #ff0000;
  --icon-border: #ff0000;
  box-shadow: 0 16px 26px rgba(255, 0, 0, 0.34);
}

.social-icon:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 250, 247, 1),
    0 0 0 5px var(--rose);
}

@media (prefers-reduced-motion: reduce) {
  .social-icon,
  .social-icon svg,
  .social-pulse {
    animation: none !important;
    transition: none !important;
  }
  .social-icon {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .social-row {
    padding: 28px 0 18px;
  }
  .social-icon {
    width: 42px;
    height: 42px;
  }
  .social-icon svg {
    width: 16px;
    height: 16px;
  }
  .social-grid {
    gap: 11px;
  }
}

/* =========================================================
   TOP STRIP (HEADER UPPER BAR)
   ========================================================= */

.top-strip {
  position: relative;
  z-index: 51;
  background: rgba(255, 250, 247, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: visible;
}

.top-strip-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-height: 34px;
  padding: 6px 0 4px;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: var(--rose-deep);
  border: 1px solid rgba(200, 100, 112, 0.18);
  transition:
    transform 360ms cubic-bezier(0.22, 0.94, 0.42, 1),
    background 240ms ease,
    color 240ms ease,
    border-color 240ms ease,
    box-shadow 360ms ease;
  isolation: isolate;
}

.header-social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 280ms ease, transform 360ms cubic-bezier(0.22, 0.94, 0.42, 1);
  z-index: -1;
}

.header-social-icon svg {
  width: 13px;
  height: 13px;
  position: relative;
  z-index: 1;
  transition: transform 360ms cubic-bezier(0.22, 0.94, 0.42, 1);
}

.header-social-icon:hover {
  transform: translateY(-2px) scale(1.1);
  color: #fff;
  background: transparent;
  border-color: transparent;
  box-shadow: 0 10px 18px rgba(200, 100, 112, 0.32);
}

.header-social-icon:hover::before {
  opacity: 1;
  transform: scale(1);
}

.header-social-icon:hover svg {
  transform: rotate(-8deg) scale(1.1);
}

.header-social-icon:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--gold);
}

/* Stagger entrance */
.header-social-icon {
  opacity: 0;
  animation: socialEnter 540ms cubic-bezier(0.22, 0.94, 0.42, 1) forwards;
}

.header-social-icon:nth-child(1) { animation-delay: 0.1s; }
.header-social-icon:nth-child(2) { animation-delay: 0.18s; }
.header-social-icon:nth-child(3) { animation-delay: 0.26s; }
.header-social-icon:nth-child(4) { animation-delay: 0.34s; }
.header-social-icon:nth-child(5) { animation-delay: 0.42s; }

/* Hide the strip on smaller screens to keep the hamburger uncrowded */
@media (max-width: 840px) {
  .top-strip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-strip-msg svg,
  .header-social-icon,
  .header-social-icon svg,
  .header-social-icon::before {
    animation: none !important;
    transition: none !important;
  }
  .header-social-icon {
    opacity: 1;
  }
}

/* =========================================================
   CATEGORY SHOP LAYOUT (products.html)
   ========================================================= */

.cat-shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.cat-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
}

.cat-sidebar h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 14px;
}

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

.cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 500;
  transition: background 200ms ease, color 200ms ease;
}

.cat-list a:hover {
  background: rgba(200, 100, 112, 0.08);
  color: var(--rose-deep);
}

.cat-list a.active {
  background: var(--rose-deep);
  color: #fff;
  font-weight: 700;
}

.cat-list a.disabled {
  color: var(--muted);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
}

.cat-list .count {
  font-size: 0.78rem;
  opacity: 0.7;
}

.cat-sidebar-cta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.cat-sidebar-cta p {
  font-size: 0.84rem;
  color: var(--slate);
  margin: 0 0 12px;
}

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

.cat-prod-card {
  position: relative;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.cat-prod-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 100, 112, 0.32);
  box-shadow: 0 22px 36px rgba(108, 66, 70, 0.16);
}

.cat-prod-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.cat-prod-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--ivory);
  overflow: hidden;
}

.cat-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.cat-prod-card:hover .cat-prod-img img {
  transform: scale(1.04);
}

.cat-prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--sage);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cat-prod-body {
  padding: 18px 20px 22px;
  display: grid;
  gap: 8px;
  flex: 1;
}

.cat-prod-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.cat-prod-name {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-prod-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.cat-prod-meta span {
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(111, 127, 73, 0.1);
  color: var(--sage-deep);
  font-weight: 600;
}

.cat-prod-cta {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.cat-prod-cta::after {
  content: "\2192";
  transition: transform 220ms ease;
}

.cat-prod-card:hover .cat-prod-cta::after {
  transform: translateX(4px);
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  gap: 14px;
  flex-wrap: wrap;
}

.load-more-wrap {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 48px 0 16px;
  padding: 32px 24px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(249, 227, 223, 0.45), transparent 70%),
    rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.load-more-btn {
  position: relative;
  min-height: 50px;
  padding: 0 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1.5px solid var(--rose-deep);
  background: #fff;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition:
    background 240ms ease,
    color 240ms ease,
    transform 280ms cubic-bezier(0.22, 0.94, 0.42, 1),
    box-shadow 280ms ease;
}

.load-more-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 280ms ease;
}

.load-more-btn:hover {
  background: var(--rose-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(159, 70, 83, 0.28);
}

.load-more-btn:hover svg {
  transform: translateY(2px);
}

.load-more-btn:active {
  transform: translateY(0);
}

.load-more-meta {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin: 0;
}

.cat-toolbar h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.cat-toolbar .count-label {
  font-size: 0.88rem;
  color: var(--muted);
}

/* =========================================================
   PRODUCT DETAIL ALBUM GALLERY
   ========================================================= */

.pd-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

.pd-gallery {
  display: grid;
  gap: 14px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.pd-main-img {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--ivory);
  overflow: hidden;
  border: 1px solid var(--line);
}

.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.pd-thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  background: var(--ivory);
  transition: border-color 220ms ease, transform 220ms ease;
  padding: 0;
}

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

.pd-thumb:hover {
  transform: translateY(-2px);
}

.pd-thumb.active {
  border-color: var(--rose-deep);
}

.pd-info {
  display: grid;
  gap: 18px;
  align-content: start;
}

.pd-eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.pd-info h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

.pd-tagline {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.55;
}

.pd-quick-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-attr-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(111, 127, 73, 0.1);
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 600;
}

.pd-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.pd-cta-row .btn {
  width: 100%;
}

.pd-quick-perks {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(237, 245, 237, 0.42);
  border: 1px solid rgba(111, 127, 73, 0.18);
}

.pd-perk {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.pd-perk svg {
  width: 18px;
  height: 18px;
  color: var(--sage-deep);
}

.pd-spec-section {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.pd-spec-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.pd-spec-table tr {
  border-bottom: 1px solid var(--line);
}

.pd-spec-table tr:last-child {
  border-bottom: 0;
}

.pd-spec-table th,
.pd-spec-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
}

.pd-spec-table th {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  width: 220px;
  background: rgba(255, 255, 255, 0.55);
}

.pd-spec-table td {
  color: var(--charcoal);
}

.pd-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.pd-feature {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--charcoal);
  align-items: center;
}

.pd-feature svg {
  width: 18px;
  height: 18px;
  color: var(--sage-deep);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cat-shop-layout {
    grid-template-columns: 1fr;
  }

  .cat-sidebar {
    position: static;
  }

  .cat-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pd-gallery {
    position: static;
  }
}

@media (max-width: 560px) {
  .cat-products-grid {
    grid-template-columns: 1fr;
  }

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

  .pd-cta-row {
    grid-template-columns: 1fr;
  }

  .pd-spec-table th {
    width: 130px;
    font-size: 0.7rem;
  }

  .pd-spec-table th,
  .pd-spec-table td {
    padding: 12px 10px;
  }

  .pd-features-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FEATURED PRODUCTS IN BLOG POSTS
   ========================================================= */

.featured-products-block {
  margin: 48px 0 40px;
  padding: 36px 30px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 22%, rgba(249, 227, 223, 0.5), transparent 50%),
    radial-gradient(circle at 82% 78%, rgba(237, 245, 237, 0.5), transparent 55%),
    rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.featured-products-head {
  text-align: center;
  margin-bottom: 28px;
}

.featured-products-head h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  letter-spacing: -0.01em;
  margin: 6px 0 10px;
}

.featured-products-head p {
  color: var(--slate);
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.94rem;
}

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

.featured-prod-card {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.featured-prod-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 100, 112, 0.32);
  box-shadow: 0 16px 28px rgba(108, 66, 70, 0.12);
}

.featured-prod-img {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ivory);
  margin-bottom: 12px;
}

.featured-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.featured-prod-card:hover .featured-prod-img img {
  transform: scale(1.04);
}

.featured-prod-name {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.25;
  color: var(--charcoal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  min-height: 2.5em;
}

.featured-prod-link {
  margin-top: auto;
  padding-top: 6px;
  font-size: 0.78rem;
  color: var(--rose-deep);
  font-weight: 700;
}

/* =========================================================
   "FROM THE JOURNAL" SECTION ON PRODUCT DETAIL PAGES
   ========================================================= */

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

.journal-card {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.journal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 100, 112, 0.32);
  box-shadow: 0 16px 28px rgba(108, 66, 70, 0.10);
}

.journal-meta {
  display: flex;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.journal-cat {
  color: var(--rose-deep);
}

.journal-time {
  color: var(--muted);
}

.journal-card h3 {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--charcoal);
  margin: 0 0 14px;
}

.journal-link {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--rose-deep);
  font-weight: 700;
}

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

@media (max-width: 560px) {
  .featured-products-block {
    padding: 26px 18px;
  }

  .featured-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

/* =========================================================
   FLOATING WHATSAPP CHAT BUTTON
   ========================================================= */

.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  transition:
    transform 420ms cubic-bezier(0.22, 0.94, 0.42, 1),
    opacity 320ms ease;
}

.wa-widget.hidden {
  transform: translateX(140%) scale(0.9) !important;
  opacity: 0 !important;
  pointer-events: none;
}

.wa-widget.wa-entering {
  opacity: 0;
  transform: translateY(18px) scale(0.94);
}

.wa-widget.wa-entering.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-float {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 64px;
  padding: 6px 22px 6px 6px;
  background:
    linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 55%, #8a3a44 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 14px 32px rgba(159, 70, 83, 0.42),
    0 4px 12px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  text-decoration: none;
  opacity: 1;
  transform: none;
  transition:
    transform 420ms cubic-bezier(0.22, 0.94, 0.42, 1),
    box-shadow 320ms ease,
    background-position 600ms ease;
  -webkit-tap-highlight-color: transparent;
  isolation: isolate;
  overflow: visible;
  animation: waBob 3.6s ease-in-out infinite;
}

/* Gentle float bob (paused while widget is entering or hidden) */
@keyframes waBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

.wa-widget.wa-entering .wa-float,
.wa-widget.hidden .wa-float {
  animation: none;
}

.wa-float:hover {
  background-position: 100% 50%;
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 22px 44px rgba(159, 70, 83, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  animation-play-state: paused;
}

.wa-float-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08) 60%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
  overflow: hidden;
}

/* Shimmer sweep across icon */
.wa-float-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
  transform: translateX(-120%);
  pointer-events: none;
  animation: waShimmer 4.2s ease-in-out infinite;
  animation-delay: 1.6s;
}

@keyframes waShimmer {
  0%, 60%  { transform: translateX(-120%); }
  80%      { transform: translateX(120%); }
  100%     { transform: translateX(120%); }
}

.wa-float-icon svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: transform 320ms cubic-bezier(0.22, 0.94, 0.42, 1);
}

.wa-float:hover .wa-float-icon svg {
  transform: rotate(-12deg) scale(1.08);
}

.wa-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}

.wa-float-text strong {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

.wa-float-text span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Pulsing ring — now brand color */
.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--rose);
  opacity: 0;
  pointer-events: none;
  animation: waPulse 2.8s cubic-bezier(0.22, 0.94, 0.42, 1) infinite;
}

/* Second pulse ring offset for richer effect */
.wa-float-pulse::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  border: 2px solid rgba(200, 100, 112, 0.6);
  opacity: 0;
  animation: waPulse 2.8s cubic-bezier(0.22, 0.94, 0.42, 1) 1.4s infinite;
}

@keyframes waPulse {
  0%   { opacity: 0.65; transform: scale(1); }
  70%  { opacity: 0;    transform: scale(1.35); }
  100% { opacity: 0;    transform: scale(1.35); }
}

/* Notification dot — pops with a "1" badge */
.wa-float::after {
  content: "1";
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b08749);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(196, 154, 98, 0.4);
  animation: waBadgePop 600ms cubic-bezier(0.22, 1.4, 0.42, 1) 1.4s both;
}

@keyframes waBadgePop {
  0%   { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}

/* =========================================================
   CLOSE BUTTON (× on widget)
   ========================================================= */

.wa-close {
  position: absolute;
  top: -8px;
  left: -8px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--charcoal);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transform: scale(0.85);
  opacity: 0;
  transition:
    transform 280ms cubic-bezier(0.22, 1.4, 0.42, 1),
    opacity 240ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.wa-widget:hover .wa-close,
.wa-close:focus-visible {
  transform: scale(1);
  opacity: 1;
}

.wa-close:hover {
  background: var(--rose-deep);
  color: #fff;
  transform: scale(1.12) rotate(90deg);
  box-shadow: 0 8px 18px rgba(159, 70, 83, 0.4);
}

.wa-close svg {
  width: 14px;
  height: 14px;
}

/* =========================================================
   HANDLE TAB (appears when widget is hidden)
   ========================================================= */

.wa-handle {
  position: fixed;
  bottom: 28px;
  right: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  width: 52px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 16px 0 0 16px;
  background:
    linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow:
    -8px 10px 24px rgba(159, 70, 83, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 480ms cubic-bezier(0.22, 0.94, 0.42, 1),
    opacity 320ms ease,
    box-shadow 280ms ease,
    width 280ms ease;
  overflow: hidden;
  isolation: isolate;
}

.wa-handle.visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  animation: waHandleNudge 3.6s ease-in-out 1.2s infinite;
}

.wa-handle.no-anim {
  transition: none;
}

.wa-handle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 55%);
  pointer-events: none;
}

.wa-handle:hover {
  width: 84px;
  box-shadow:
    -12px 14px 32px rgba(159, 70, 83, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  animation-play-state: paused;
}

.wa-handle:active {
  transform: translateX(0) scale(0.96);
}

.wa-handle-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.wa-handle-icon svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
  transition: transform 320ms ease;
}

.wa-handle:hover .wa-handle-icon svg {
  transform: scale(1.1);
}

/* A little side-nudge animation so the handle subtly waves to grab attention */
@keyframes waHandleNudge {
  0%, 100%      { transform: translateX(0); }
  92%           { transform: translateX(0); }
  94%, 98%      { transform: translateX(-4px); }
  96%           { transform: translateX(2px); }
}

/* On touch devices, always show the close button (no hover) */
@media (hover: none) {
  .wa-close {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hide the close button on mobile — round WhatsApp button only, no overlap */
@media (max-width: 560px) {
  .wa-close {
    display: none !important;
  }
}

/* Hide the previous sticky-quote since the WhatsApp float replaces its function */
.sticky-quote {
  display: none !important;
}

/* Mobile: compact circular icon-only */
@media (max-width: 560px) {
  .wa-float {
    bottom: 16px;
    right: 16px;
    gap: 0;
    height: 58px;
    padding: 5px;
  }

  .wa-float-icon {
    width: 48px;
    height: 48px;
  }

  .wa-float-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float-pulse {
    animation: none;
  }
  .wa-float {
    transition: none;
  }
}
