:root {
  --cream: #fff7f0;
  --blush: #f4ddd1;
  --rose: #c97c67;
  --rose-dark: #7c3f34;
  --ink: #241815;
  --soft-ink: #6f5a52;
  --line: rgba(36, 24, 21, 0.12);
  --white: #fffdfb;
  --shadow: 0 22px 60px rgba(85, 43, 34, 0.15);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--cream), #f8ece5 48%, #fffaf6);
  color: var(--ink);
  font-family: var(--sans);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 240, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 23px;
}

.brand-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--rose-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.header-nav { display:flex; align-items:center; gap:14px; overflow-x:auto; white-space:nowrap; color:var(--rose-dark); font-size:12px; font-weight:800; }
.header-nav a { padding:10px 2px; }
.header-nav a:hover, .header-nav a:focus-visible { text-decoration:underline; }
@media (max-width:760px) { .site-header { flex-wrap:wrap; } .header-nav { width:100%; } }

.hero {
  display: grid;
  gap: 26px;
  padding: 30px 18px 34px;
}

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

.eyebrow {
  margin: 0;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  margin-bottom: 0;
  max-width: 900px;
  font-size: clamp(42px, 12vw, 92px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 9vw, 62px);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1;
}

.hero-subtitle {
  margin: 0;
  color: var(--rose-dark);
  font-size: clamp(22px, 6vw, 42px);
  font-weight: 800;
  line-height: 1.08;
}

.hero-text,
.section-heading p,
.product-card p,
.footer p {
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  border: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(36, 24, 21, 0.2);
}

.button-secondary {
  border: 1px solid rgba(124, 63, 52, 0.32);
  background: rgba(255, 253, 251, 0.58);
  color: var(--rose-dark);
}

.hero-length-label,
.product-card label {
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.length-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.hero-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px 34px 10px 10px;
  background:
    linear-gradient(140deg, rgba(201, 124, 103, 0.28), rgba(255, 253, 251, 0.56)),
    radial-gradient(circle at 50% 30%, rgba(255, 253, 251, 0.8), transparent 34%);
  box-shadow: var(--shadow);
}

.hero-image-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(340px, 86vw);
  height: min(520px, 118vw);
  overflow: hidden;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(36, 24, 21, 0.18);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-image-card span {
  display: none;
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  gap: 10px;
  padding: 0 18px 34px;
}

.trust-strip span,
.trust-grid div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 253, 251, 0.72);
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 44px 18px;
  scroll-margin-top: 90px;
}

.section-heading {
  margin-bottom: 22px;
}

.product-grid {
  display: grid;
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(85, 43, 34, 0.1);
}

.product-image {
  display: grid;
  height: 484px;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(244, 221, 209, 0.2)),
    var(--tone);
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transition: opacity 180ms ease, transform 220ms ease;
}

.product-photo[data-image-target="classic"] {
  object-position: center 26%;
}

.product-photo[data-image-target="hd"] {
  object-position: center 30%;
}

.product-photo[data-image-target="hd"].is-hd-zoom-out {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  padding: 0;
  object-fit: cover;
  object-position: center 38%;
}

.product-photo[data-image-target="luxury"] {
  object-position: center 34%;
}

.product-photo[data-image-target="glueless"] {
  object-position: center 32%;
}

.product-photo.is-long-length {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  padding: 3%;
  object-fit: contain;
  object-position: center;
}

.product-photo.is-switching {
  opacity: 0.35;
  transform: scale(1.02);
}

.product-content {
  display: grid;
  gap: 4px;
  padding: 10px 20px;
}

.classic-purchase-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, auto);
  align-items: end;
  gap: 12px;
}

.product-price {
  display: grid;
  min-height: 48px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 12px;
  background: #fffaf6;
}

.product-price span {
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price strong {
  color: var(--rose-dark);
  font-size: 20px;
  line-height: 1.1;
}

.product-content .button {
  margin-top: 4px;
}

.private-custom-section {
  background: #f3e8e1;
}

.private-custom-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 251, 0.13);
  border-radius: 28px;
  padding: 26px 18px;
  background:
    radial-gradient(circle at 88% 5%, rgba(201, 124, 103, 0.25), transparent 32%),
    linear-gradient(145deg, #2d1e1a, #1c1311);
  color: var(--white);
  box-shadow: 0 26px 64px rgba(36, 24, 21, 0.2);
}

.private-custom-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.private-custom-heading .eyebrow {
  color: var(--blush);
}

.private-custom-heading h2 {
  margin-bottom: 12px;
}

.private-custom-subtitle {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 253, 251, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.private-custom-grid {
  display: grid;
  gap: 14px;
}

.private-custom-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 251, 0.14);
  border-radius: 20px;
  background-image:
    linear-gradient(180deg, rgba(36, 24, 21, 0.05) 45%, rgba(36, 24, 21, 0.76)),
    var(--custom-image),
    linear-gradient(145deg, #936552, #3b2822);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.private-custom-card-one {
  --custom-image: url("images/custom/custom-1.jpg");
}

.private-custom-card-two {
  --custom-image: url("images/custom/custom-2.jpg");
}

.private-custom-card-three {
  --custom-image: url("images/custom/custom-3.jpg");
  background-position: center 25%;
}

.private-custom-card span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: rgba(255, 253, 251, 0.84);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.private-custom-content {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.private-custom-content p {
  margin: 0;
  color: rgba(255, 253, 251, 0.76);
  font-size: 15px;
  line-height: 1.65;
}

.private-custom-content .private-custom-price {
  color: var(--white);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
}

.private-custom-button {
  width: 100%;
  margin-top: 10px;
  background: var(--white);
  color: var(--ink);
}

.trust-section {
  background: var(--ink);
  color: var(--white);
}

.trust-section .eyebrow,
.trust-section h2 {
  color: var(--white);
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.trust-grid div {
  border-color: rgba(255, 253, 251, 0.16);
  background: rgba(255, 253, 251, 0.08);
  color: var(--white);
}

.bob-benefits-section {
  background: #fffaf6;
}

.bob-benefit-grid {
  display: grid;
  gap: 12px;
}

.bob-benefit-grid div,
.bob-length-table div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 253, 251, 0.82);
  color: var(--rose-dark);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(85, 43, 34, 0.07);
}

.bob-guide-section {
  background: linear-gradient(180deg, var(--cream), #fffaf6);
}

.bob-length-table {
  display: grid;
  gap: 10px;
}

.bob-length-table div {
  display: grid;
  grid-template-columns: minmax(86px, 0.4fr) 1fr;
  align-items: center;
  gap: 12px;
}

.bob-length-table span:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.faq-section {
  background: linear-gradient(180deg, #fffaf6, var(--cream));
}

.faq-subtitle {
  max-width: 620px;
  margin-bottom: 0;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 251, 0.82);
  box-shadow: 0 14px 34px rgba(85, 43, 34, 0.08);
}

.faq-question {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 16px 18px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 124, 103, 0.15);
  color: var(--rose-dark);
  content: "+";
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-item[open] .faq-question::after {
  background: rgba(201, 124, 103, 0.24);
  transform: rotate(45deg);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(124, 63, 52, 0.35);
  outline-offset: -3px;
}

.faq-answer {
  border-top: 1px solid var(--line);
}

.faq-answer p {
  margin: 0;
  padding: 16px 18px 18px;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.7;
}

.footer {
  position: relative;
  padding: 30px 18px 88px;
  background: var(--ink);
  color: var(--white);
}

.footer strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.footer p {
  color: rgba(255, 253, 251, 0.72);
}

.trust-bar {
  width: 100%;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: var(--line);
}

.trust-bar__item {
  min-width: 0;
  margin: 0;
  padding: 18px 10px;
  background: var(--cream);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  padding: 46px 20px 132px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.footer-title {
  margin: 0 0 16px;
  color: rgba(255, 253, 251, 0.58);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 253, 251, 0.86);
  font-size: 14px;
  line-height: 1.5;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-column p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.footer-column--brand strong {
  margin-bottom: 4px;
  font-size: clamp(30px, 4vw, 40px);
}

.footer-column--brand p {
  max-width: 35ch;
  margin-bottom: 9px;
}

.footer-column--brand .footer-signoff {
  color: var(--white);
  font-weight: 700;
}

.footer-link--pending {
  opacity: 0.58;
}

.footer-bottom {
  display: flex;
  width: min(1180px, 100%);
  flex-direction: column;
  gap: 10px;
  margin: 38px auto 0;
  border-top: 1px solid rgba(255, 253, 251, 0.14);
  padding-top: 22px;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 253, 251, 0.78);
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9;
  display: inline-flex;
  width: auto;
  min-width: 120px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: #1f9d58;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(31, 157, 88, 0.22);
}

@media (min-width: 760px) {
  .site-header {
    padding-inline: 36px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    align-items: center;
    min-height: min(780px, calc(100vh - 68px));
    padding: 58px 36px 54px;
  }

  .hero-image-card {
    width: min(430px, 100%);
    height: 620px;
  }

  .hero-image-card img {
    object-position: center 35%;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 220px));
  }

  .hero-length-label,
  .hero-copy > .length-select {
    max-width: 220px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 36px;
  }

  .section {
    padding: 70px 36px;
  }

  .section-heading {
    max-width: 760px;
  }

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

  .product-image {
    height: 605px;
  }

  .product-content {
    padding: 4px 20px;
  }

  .private-custom-shell {
    padding: 42px;
  }

  .private-custom-heading {
    margin-bottom: 30px;
  }

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

  .private-custom-card {
    min-height: 430px;
  }

  .private-custom-content {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 28px;
    margin-top: 30px;
  }

  .private-custom-content p {
    grid-column: 1;
  }

  .private-custom-button {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: auto;
    min-width: 250px;
    margin-top: 0;
  }

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

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

  .bob-length-table {
    max-width: 860px;
  }

  .faq-list {
    max-width: 860px;
  }

  .faq-question {
    padding-inline: 22px;
    font-size: 24px;
  }

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

  .trust-bar__item {
    padding: 22px 14px;
  }

  .site-footer {
    padding-inline: 36px;
  }

  .site-footer__grid {
    grid-template-columns: 1.35fr repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 64px);
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .faq-answer p {
    padding-inline: 22px;
  }
}

@media (min-width: 1120px) {
  .hero,
  .section,
  .trust-strip,
  .site-header,
  .footer {
    padding-inline: max(48px, calc((100vw - 1180px) / 2));
  }
}

/* Hero recommended carousel */
.hero-recommend-carousel {
  position: relative;
  width: min(430px, 90vw);
  height: min(560px, 118vw);
  overflow: hidden;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(36, 24, 21, 0.18);
}

.hero-recommend-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-recommend-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

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

.hero-recommend-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-recommend-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 72px;
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255, 253, 251, 0.92);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(36, 24, 21, 0.18);
  backdrop-filter: blur(10px);
}

.hero-recommend-tag {
  display: inline-flex;
  margin-bottom: 7px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(201, 124, 103, 0.16);
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-recommend-title {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.08;
}

.hero-recommend-info p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-recommend-controls {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-recommend-arrow {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.92);
  color: var(--rose-dark);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(36, 24, 21, 0.16);
}

.hero-recommend-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(255, 253, 251, 0.86);
  box-shadow: 0 12px 26px rgba(36, 24, 21, 0.12);
}

.hero-recommend-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(111, 63, 50, 0.28);
  cursor: pointer;
}

.hero-recommend-dot.is-active {
  width: 22px;
  background: var(--rose-dark);
}

@media (max-width: 760px) {
  .hero-recommend-carousel {
    width: min(360px, 90vw);
    height: 460px;
  }

  .hero-recommend-info {
    bottom: 66px;
    padding: 12px 14px;
  }

  .hero-recommend-title {
    font-size: 20px;
  }

  .hero-recommend-info p {
    font-size: 12px;
  }
}

/* Responsive containment and floating-action safety */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

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

.hero,
.hero-copy,
.hero-visual,
.hero-recommend-carousel,
.hero-recommend-track,
.section,
.product-grid,
.product-card,
.product-content,
.extra-product-grid,
.extra-product-card,
.extra-product-content,
.private-custom-shell,
.private-custom-grid {
  min-width: 0;
  max-width: 100%;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 1;
  overflow-wrap: break-word;
}

.hero-recommend-carousel {
  width: min(500px, 100%);
}

@media (min-width: 760px) and (max-width: 1023px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .sb-ai-launcher {
    width: 88px;
    min-width: 88px;
    max-width: 88px;
    padding-inline: 8px;
    font-size: 0;
    letter-spacing: 0;
  }

  .whatsapp-float {
    right: 10px;
    width: 52px;
    min-width: 52px;
    max-width: 52px;
    min-height: 52px;
    padding: 0;
    font-size: 0;
    letter-spacing: 0;
  }

  .whatsapp-float::after {
    content: "WA";
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
  }

  .sb-ai-widget {
    right: 8px;
  }

  .sb-ai-launcher::after {
    content: "Bob Help";
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
  }

  .product-card .button,
  .extra-product-card .button {
    width: auto;
    margin-right: 98px;
  }

  .collections,
  .extra-collection,
  .private-custom-section {
    padding-bottom: 96px;
  }

  .footer {
    padding-bottom: 164px;
  }
}

/* Policy pages: reuse the homepage visual system without affecting products. */
.policy-page .policy-hero,
.policy-page .policy-shell {
  width: min(900px, calc(100% - 36px));
  margin-inline: auto;
  padding-inline: 0;
}

.policy-page .breadcrumbs {
  width: min(900px, calc(100% - 36px));
  margin-inline: auto;
  padding-inline: 0;
}

.policy-page .policy-hero {
  padding-top: clamp(42px, 7vw, 76px);
  padding-bottom: 30px;
}

.policy-page .policy-hero h1 {
  max-width: 100%;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
}

.policy-page .policy-hero p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.7;
}

.policy-page .policy-shell {
  padding-top: 12px;
  padding-bottom: 76px;
}

.policy-page .policy-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 46px);
}

.policy-page .policy-content p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
}

.policy-page .policy-content .button {
  margin-top: 10px;
}

.policy-page .policy-footer {
  margin-top: 0;
}

@media (max-width: 760px) {
  .policy-page .policy-nav {
    gap: 14px;
    padding-bottom: 2px;
  }

  .policy-page .policy-hero,
  .policy-page .policy-shell,
  .policy-page .breadcrumbs {
    width: min(100% - 28px, 900px);
  }

  .policy-page .policy-content {
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .hero,
  .section {
    width: 100%;
  }

  .hero-recommend-carousel {
    width: 100%;
  }

  .product-content,
  .extra-product-content {
    min-width: 0;
  }
}

/* Hero recommended visual refinement */
.hero-visual {
  min-height: 660px;
}

.hero-recommend-carousel {
  width: min(500px, 92vw);
  height: auto;
  overflow: visible;
  border-radius: 30px;
  background: transparent;
  box-shadow: none;
}

.hero-recommend-track {
  position: relative;
  width: 100%;
  height: 640px;
}

.hero-recommend-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(36, 24, 21, 0.18);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

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

.hero-recommend-slide img {
  width: 100%;
  height: 500px;
  flex: 0 0 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-recommend-info {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  border-radius: 0;
  padding: 18px 22px 22px;
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-recommend-tag {
  margin-bottom: 8px;
}

.hero-recommend-title {
  font-size: 26px;
  line-height: 1.05;
}

.hero-recommend-info p {
  max-width: 38ch;
  font-size: 14px;
  line-height: 1.45;
}

.hero-recommend-controls {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.hero-recommend-dots {
  gap: 10px;
  padding: 11px 14px;
}

.hero-recommend-arrow {
  display: none;
}

@media (max-width: 760px) {
  .hero-visual {
    min-height: auto;
  }

  .hero-recommend-carousel {
    width: min(380px, 92vw);
  }

  .hero-recommend-track {
    height: 560px;
  }

  .hero-recommend-slide {
    border-radius: 26px;
  }

  .hero-recommend-slide img {
    height: 410px;
    flex-basis: 410px;
  }

  .hero-recommend-info {
    padding: 16px 18px 20px;
  }

  .hero-recommend-title {
    font-size: 22px;
  }

  .hero-recommend-info p {
    font-size: 13px;
  }
}

/* Final responsive overrides: keep after all hero refinement rules. */
.hero h1 {
  max-width: 100%;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 1;
  overflow-wrap: break-word;
}

.hero-recommend-carousel {
  width: min(500px, 100%);
}

@media (min-width: 760px) and (max-width: 1023px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .hero-recommend-carousel {
    width: 100%;
  }
}

@media (max-width: 900px) {
  body .sb-ai-widget {
    right: 8px;
  }

  body .sb-ai-widget .sb-ai-launcher {
    width: 88px;
    min-width: 88px;
    max-width: 88px;
    padding-inline: 8px;
    font-size: 0;
    letter-spacing: 0;
  }

  body .sb-ai-widget .sb-ai-launcher::after {
    content: "Bob Help";
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
  }
}

/* Product detail / policy page shared layout */
.policy-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.policy-page .page-hero {
  max-width: 880px;
  margin: 0 auto 72px;
  text-align: left;
}

.policy-page .page-hero .eyebrow {
  color: var(--accent, #8b463b);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.policy-page .page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  margin: 0 0 22px;
}

.policy-page .page-hero p {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  color: var(--muted, #735f58);
  margin-bottom: 28px;
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0 40px;
}

.policy-content h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 56px 0 18px;
}

.policy-content p,
.policy-content li {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text, #241714);
}

.policy-content ul {
  padding-left: 1.35rem;
  margin: 14px 0 24px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 34px;
  overflow: hidden;
  border: 1px solid rgba(36, 23, 20, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(47, 25, 20, 0.08);
}

.policy-table th,
.policy-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(36, 23, 20, 0.1);
}

.policy-table th {
  color: var(--accent, #8b463b);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-content .button {
  margin-top: 18px;
  margin-right: 12px;
}

.site-footer {
  margin-top: 72px;
}

.site-footer .footer-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

@media (max-width: 760px) {
  .policy-page {
    width: min(100% - 28px, 680px);
    padding: 72px 0 52px;
  }

  .policy-page .page-hero {
    margin-bottom: 48px;
  }

  .policy-page .page-hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .policy-content h2 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .policy-table th,
  .policy-table td {
    padding: 13px 14px;
  }

  .policy-content .button {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }
}

/* Product detail pages */
.product-detail-page {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 72px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 56px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 18px;
}

.product-main-image-wrap {
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 24px 60px rgba(47,25,20,0.12);
}

.product-main-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

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

.product-thumb {
  border: 1px solid rgba(36,23,20,0.12);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-thumb.is-active {
  border-color: var(--accent, #8b463b);
  box-shadow: 0 0 0 2px rgba(139,70,59,0.18);
}

.product-info-panel {
  position: sticky;
  top: 96px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 24px 60px rgba(47,25,20,0.1);
  border: 1px solid rgba(36,23,20,0.08);
}

.product-info-panel .eyebrow {
  color: var(--accent, #8b463b);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product-detail-page .product-info-panel h1 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 0 0 18px;
}

.product-intro {
  color: var(--muted, #735f58);
  line-height: 1.65;
  font-size: 1.05rem;
}

.detail-price-block {
  margin: 22px 0 26px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(139,70,59,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-price-block span {
  color: var(--accent, #8b463b);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-price-block strong {
  font-size: 2.35rem;
  color: var(--accent, #8b463b);
}

.length-picker p {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.length-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.length-pill {
  border: 1px solid rgba(36,23,20,0.18);
  background: rgba(255,255,255,0.82);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

.length-pill.is-active {
  background: var(--text, #241714);
  color: #fff;
  border-color: var(--text, #241714);
}

.product-trust-row {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.product-trust-row span {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(36,23,20,0.05);
  font-weight: 700;
}

.product-detail-content {
  max-width: 920px;
  margin: 84px auto 0;
}

.detail-copy-block {
  padding: 34px 0;
  border-top: 1px solid rgba(36,23,20,0.12);
}

.detail-copy-block h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}

.detail-copy-block p,
.detail-copy-block li {
  font-size: 1.03rem;
  line-height: 1.78;
}

@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-info-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .product-detail-page {
    width: min(100% - 28px, 680px);
    padding: 64px 0 52px;
  }

  .product-info-panel {
    padding: 24px;
  }

  .product-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail-page .product-info-panel h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .detail-price-block strong {
    font-size: 2rem;
  }

  .product-info-panel .button {
    width: 100%;
    justify-content: center;
  }
}

/* Product detail content cleanup */
.product-detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 76px auto 0;
}

.detail-copy-block {
  padding: 28px;
  border: 1px solid rgba(36,23,20,0.1);
  border-radius: 28px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 18px 42px rgba(47,25,20,0.06);
}

.detail-copy-block--wide {
  grid-column: 1 / -1;
}

.detail-copy-block h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
}

.detail-copy-block p,
.detail-copy-block li {
  font-size: 1rem;
  line-height: 1.72;
}

.detail-copy-block ul {
  padding-left: 1.2rem;
  margin: 0;
}

.product-detail-page .site-footer,
.site-footer {
  margin-top: 72px;
}

@media (max-width: 760px) {
  .product-detail-content {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 52px;
  }

  .detail-copy-block {
    padding: 22px;
    border-radius: 22px;
  }
}

/* Product detail final cleanup */
.product-detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 64px auto 0;
}

.detail-copy-block {
  padding: 28px;
  border: 1px solid rgba(36, 23, 20, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(47, 25, 20, 0.06);
}

.detail-copy-block h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
}

.detail-copy-block p,
.detail-copy-block li {
  font-size: 1rem;
  line-height: 1.72;
}

.detail-copy-block ul {
  padding-left: 1.2rem;
  margin: 0;
}

.detail-copy-block:last-child {
  grid-column: 1 / -1;
}

.product-detail-page + .site-footer {
  margin-top: 48px;
}

.product-detail-page + .site-footer .footer-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 48px;
}

.product-detail-page + .site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-detail-page + .site-footer h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
}

.product-detail-page + .site-footer p,
.product-detail-page + .site-footer li {
  color: rgba(255,255,255,0.75);
}

@media (max-width: 760px) {
  .product-detail-content {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 48px;
  }

  .detail-copy-block {
    padding: 22px;
    border-radius: 22px;
  }

  .detail-copy-block:last-child {
    grid-column: auto;
  }

  .product-detail-page + .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Product detail confidence policy cards */
.policy-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.policy-link-grid a {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(139, 70, 59, 0.08);
  border: 1px solid rgba(139, 70, 59, 0.16);
  text-decoration: none;
  color: var(--text, #241714);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.policy-link-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(47, 25, 20, 0.1);
}

.policy-link-grid strong {
  color: var(--accent, #8b463b);
  font-size: 0.95rem;
}

.policy-link-grid span {
  color: var(--muted, #735f58);
  font-size: 0.9rem;
  line-height: 1.5;
}

.brand-closing-card {
  margin-top: 28px;
  padding: 34px;
  border-radius: 28px;
  background: #241714;
  color: #fff;
}

.brand-closing-card .eyebrow {
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.brand-closing-card h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  margin: 0 0 12px;
}

.brand-closing-card p {
  color: rgba(255,255,255,0.78);
}

@media (max-width: 760px) {
  .policy-link-grid {
    grid-template-columns: 1fr;
  }

  .brand-closing-card {
    padding: 24px;
  }
}

/* Category second-layer placeholder pages */
.category-empty-media {
  min-height: 560px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(139, 70, 59, 0.08), rgba(36, 23, 20, 0.04)),
    #f8f0eb;
  border: 1px dashed rgba(139, 70, 59, 0.28);
  display: grid;
  place-items: center;
  color: rgba(36, 23, 20, 0.48);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .category-empty-media {
    min-height: 360px;
  }
}





/* Product detail final title override - second layer only */
body .product-detail-page .product-info-panel h1 {
  font-size: clamp(2.35rem, 3.6vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

body .product-detail-page .product-info-panel .product-intro {
  font-size: 1.02rem;
  line-height: 1.68;
}

@media (max-width: 980px) {
  body .product-detail-page .product-info-panel h1 {
    font-size: clamp(2.25rem, 7vw, 3.4rem);
    line-height: 1.03;
  }
}

@media (max-width: 560px) {
  body .product-detail-page .product-info-panel h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.05;
  }
}


/* So Beauty P0 human-hair trust upgrade */
.hero-quality-line {
  margin: 18px 0 4px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.45;
}

.hero-style-note {
  max-width: 680px;
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.84;
}

.product-quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 14px;
}

.product-quality-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(70, 48, 39, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.25;
}

.product-quality-badges--colour span:last-child {
  flex-basis: 100%;
  width: fit-content;
}

.trust-grid div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.trust-grid div strong {
  font-size: 1rem;
  line-height: 1.35;
}

.trust-grid div span {
  font-size: 0.86rem;
  line-height: 1.55;
  opacity: 0.82;
}

@media (max-width: 700px) {
  .hero-quality-line {
    margin-top: 14px;
  }

  .hero-style-note {
    font-size: 0.9rem;
  }

  .product-quality-badges {
    gap: 6px;
  }

  .product-quality-badges span {
    font-size: 0.7rem;
  }
}
