:root {
  --pink: #f50087;
  --pink-dark: #bf0069;
  --blush: #fff0f6;
  --rose: #ffd7e8;
  --ink: #17151a;
  --charcoal: #2a252d;
  --muted: #706977;
  --line: #eadde5;
  --cream: #fffaf7;
  --white: #ffffff;
  --mint: #007c78;
  --gold: #b9892f;
  --shadow: 0 18px 42px rgba(31, 15, 25, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

html.no-scroll {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 99;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 247, 0.96);
  box-shadow: 0 1px 0 rgba(23, 21, 26, 0.08);
  backdrop-filter: blur(18px);
}

.promo-strip {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 7px 18px;
  color: var(--white);
  background: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 700;
  scrollbar-width: none;
}

.promo-strip::-webkit-scrollbar {
  display: none;
}

.promo-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.promo-strip svg {
  width: 16px;
  height: 16px;
  color: var(--rose);
}

.nav-shell {
  display: flex;
  width: min(100%, var(--container));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 12px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--pink);
  box-shadow: 0 0 0 2px var(--white), 0 7px 18px rgba(245, 0, 135, 0.22);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--pink-dark);
  border-color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.icon-button {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--pink);
  color: var(--pink-dark);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.cart-trigger span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  padding: 0 5px;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
}

.mobile-menu-button {
  display: none;
}

.mobile-nav,
.search-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav.open,
.search-panel.open {
  display: block;
}

.mobile-nav {
  padding: 10px 20px 16px;
}

.mobile-nav strong {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  text-transform: uppercase;
}

.search-panel {
  padding: 16px 20px 20px;
}

.search-panel label {
  display: block;
  width: min(100%, var(--container));
  margin: 0 auto 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.search-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  width: min(100%, var(--container));
  min-height: 52px;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.search-row input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-row button {
  border: 0;
  color: var(--pink-dark);
  background: transparent;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(460px, 72vh, 690px);
  align-items: center;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 247, 0.94) 0%, rgba(255, 250, 247, 0.78) 36%, rgba(255, 250, 247, 0.12) 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 58px 20px 76px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.feature-band h2,
.kit-copy h2,
.newsletter h2,
.cart-header h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(3.15rem, 8vw, 6.8rem);
  line-height: 0.92;
}

.hero p:not(.eyebrow) {
  max-width: 550px;
  margin: 22px 0 0;
  color: var(--charcoal);
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero-actions,
.feature-band,
.kit-summary,
.newsletter form,
.product-card-actions,
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.checkout-button,
.filter-button,
.product-card button,
.kit-choice {
  min-height: 44px;
  border-radius: 6px;
  font-weight: 900;
}

.primary-button,
.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--pink);
  color: var(--white);
  background: var(--pink);
  padding: 12px 18px;
  box-shadow: 0 12px 24px rgba(245, 0, 135, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-button:hover,
.primary-button:focus-visible,
.checkout-button:hover,
.checkout-button:focus-visible {
  background: var(--pink-dark);
  transform: translateY(-1px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 18px;
}

.benefits {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto;
  padding: 0 20px;
  background: var(--line);
}

.benefits article {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 4px 14px;
  min-height: 112px;
  padding: 22px 24px;
  background: var(--white);
}

.benefits article:nth-child(2) {
  padding-inline: 24px;
}

.benefits svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--pink);
}

.benefits strong {
  font-size: 1rem;
}

.benefits span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-block {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 78px 20px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.feature-band h2,
.kit-copy h2,
.newsletter h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
}

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

.category-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 21, 26, 0.02) 35%, rgba(23, 21, 26, 0.7) 100%);
}

.category-card span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: scale(1.04);
}

.feature-band {
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--container));
  margin: 4px auto 18px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(120deg, var(--ink), #4b2439 58%, var(--pink-dark));
}

.feature-band p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.feature-band .eyebrow {
  color: var(--rose);
}

.product-section {
  padding-top: 64px;
}

.product-heading {
  align-items: center;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-control label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.sort-control select {
  min-width: 156px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  padding: 0 10px;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  padding: 9px 13px;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--pink);
  color: var(--white);
  background: var(--pink);
}

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

.product-card {
  display: flex;
  min-height: 100%;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(31, 15, 25, 0.06);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--blush);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 7px;
  border-radius: 4px;
  color: var(--white);
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(23, 21, 26, 0.09);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
}

.favorite.active {
  color: var(--pink);
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.product-category {
  margin: 0 0 7px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 50px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.price-row {
  margin-top: 12px;
}

.old-price {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: line-through;
}

.price {
  display: block;
  color: var(--pink-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.installments {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-size-select {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-size-select select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  padding: 0 9px;
}

.product-card-actions {
  min-width: 0;
  margin-top: auto;
  padding-top: 14px;
}

.product-card-actions button {
  min-width: 0;
  border: 0;
}

.buy-button {
  flex: 1;
  color: var(--white);
  background: var(--pink);
  padding: 10px 12px;
}

.details-button {
  width: 44px;
  border: 1px solid var(--line) !important;
  color: var(--ink);
  background: var(--white);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 48px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.kit-builder {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
  width: min(100%, var(--container));
  margin: 0 auto 20px;
  padding: 72px 20px;
}

.kit-copy p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
}

.kit-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.kit-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.kit-choice {
  display: grid;
  min-height: 185px;
  align-content: end;
  border: 0;
  background: var(--white);
  padding: 16px;
  text-align: left;
}

.kit-choice span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-choice strong {
  margin-top: 6px;
  font-size: 1rem;
}

.kit-choice small {
  margin-top: 8px;
  color: var(--pink-dark);
  font-weight: 900;
}

.kit-choice.selected {
  outline: 3px solid var(--pink);
  outline-offset: -3px;
}

.kit-summary {
  justify-content: space-between;
  padding: 18px;
}

.kit-summary span {
  color: var(--muted);
  font-weight: 800;
}

.kit-summary strong {
  font-size: 1.35rem;
}

.routine {
  padding-top: 50px;
}

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

.routine-steps article,
.review-grid article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.routine-steps span {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
}

.routine-steps h3 {
  margin: 12px 0 8px;
  font-size: 1.28rem;
}

.routine-steps p,
.review-grid p {
  color: var(--muted);
}

.reviews {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 30px 20px 78px;
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px 28px;
  padding: 52px max(20px, calc((100vw - var(--container)) / 2 + 20px));
  color: var(--white);
  background: var(--mint);
}

.newsletter .eyebrow {
  color: #bff4ed;
}

.newsletter input {
  width: min(360px, 54vw);
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background: var(--white);
  padding: 0 14px;
}

.newsletter .primary-button {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: none;
}

.form-feedback {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: #e4fffb;
  font-weight: 800;
}

.cart-drawer {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  display: flex;
  width: min(500px, 100vw);
  height: 100dvh;
  flex-direction: column;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: pan-y;
  border-left: 1px solid var(--line);
  background: var(--white);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.17);
  transform: translateX(110%);
  transition: transform 0.25s ease;
  -webkit-overflow-scrolling: touch;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  padding: 20px;
}

.cart-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: inherit;
}

.cart-header h2 {
  font-size: 2rem;
}

.cart-items {
  flex: 0 0 auto;
  max-height: min(30dvh, 230px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px 20px;
  -webkit-overflow-scrolling: touch;
}

.cart-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 66px;
  height: 66px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--blush);
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 0.96rem;
}

.cart-item p {
  margin: 0;
  color: var(--pink-dark);
  font-weight: 900;
}

.cart-item-size {
  display: block;
  margin: 2px 0 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty-button {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  font-weight: 900;
}

.remove-button {
  margin-left: auto;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
}

.cart-footer {
  border-top: 1px solid var(--line);
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart-shipping {
  display: grid;
  gap: 7px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.cart-shipping select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  padding: 0 10px;
}

.checkout-address {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.checkout-address-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.checkout-address-heading strong {
  font-size: 1rem;
}

.checkout-address-heading span,
.address-feedback {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.checkout-address label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.checkout-address input,
.checkout-address select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--cream);
  padding: 8px 10px;
  font: inherit;
}

.checkout-grid {
  display: grid;
  gap: 8px;
}

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

.checkout-grid-three {
  grid-template-columns: 1.2fr 1fr 56px;
}

.checkout-cep-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 8px;
}

.checkout-cep-row .secondary-button {
  display: none;
  min-height: 38px;
  padding: 8px 10px;
}

.save-address-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
}

.save-address-row input {
  width: 16px;
  min-height: 16px;
}

.address-feedback {
  min-height: 18px;
  margin: 0;
}

.address-feedback.error {
  color: var(--pink-dark);
}

.cart-total-line {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.checkout-button {
  width: 100%;
  margin-top: 10px;
}

.overlay {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  background: rgba(23, 21, 26, 0.45);
}

.overlay.open {
  display: block;
}

.quick-view {
  position: fixed;
  z-index: 70;
  top: 50%;
  left: 50%;
  display: none;
  width: min(860px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.quick-view.open {
  display: block;
}

.quick-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
}

.quick-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quick-body img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.quick-info {
  padding: 44px 30px 30px;
}

.quick-info h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.quick-info p {
  color: var(--muted);
}

.quick-actions {
  margin-top: 24px;
}

.quick-actions .primary-button {
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 1fr;
  gap: 28px;
  padding: 54px max(20px, calc((100vw - var(--container)) / 2 + 20px));
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  gap: 14px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer strong,
.site-footer h3 {
  display: block;
  margin: 0 0 10px;
  color: var(--white);
}

.site-footer p {
  max-width: 300px;
  margin: 0;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--rose);
}

.admin-body {
  min-height: 100vh;
  background: #f7f3f5;
}

.admin-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 24px 20px 56px;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 32px rgba(31, 15, 25, 0.08);
}

.login-card {
  width: min(100%, 420px);
}

.login-card h1,
.admin-header h1,
.admin-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.login-card h1 {
  margin-bottom: 22px;
  font-size: 2.4rem;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 10px 0 22px;
}

.admin-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.admin-app {
  display: flex;
  flex-direction: column;
}

.admin-app[hidden] {
  display: none;
}

.admin-header-actions,
.admin-card-heading,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-grid {
  order: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  margin-bottom: 18px;
}

#adminProducts {
  order: 1;
  margin-bottom: 18px;
}

#adminFeedback {
  order: 3;
}

.admin-card-heading {
  margin-bottom: 18px;
}

.admin-card h2 {
  font-size: 1.8rem;
}

.admin-form,
.admin-field {
  display: grid;
  gap: 14px;
}

.admin-form label,
.admin-field {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-field input,
.benefit-admin-row input,
.shipping-admin-row input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  padding: 10px 12px;
  color: var(--ink);
}

.admin-form textarea {
  resize: vertical;
}

.admin-two,
.admin-three {
  display: grid;
  gap: 12px;
}

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

.admin-three {
  grid-template-columns: repeat(3, 1fr);
}

.admin-block-title {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.admin-block-title h3 {
  margin: 0;
  font-size: 1.05rem;
}

.admin-block-title p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.benefit-admin-grid {
  display: grid;
  gap: 10px;
}

.benefit-admin-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.62fr) minmax(0, 1fr);
  gap: 10px;
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding-top: 22px;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.asset-picker {
  display: grid;
  gap: 9px;
}

.asset-picker img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--blush);
  object-fit: cover;
}

.asset-picker input[type="file"] {
  min-height: auto;
  padding: 9px;
}

.shipping-admin-list {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.shipping-admin-row {
  display: grid;
  grid-template-columns: 1fr 120px 42px;
  gap: 8px;
  align-items: center;
}

.product-admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.product-form {
  align-content: start;
}

.product-image-picker {
  max-width: 320px;
}

.product-admin-list {
  display: grid;
  align-content: start;
  gap: 10px;
  max-height: 760px;
  overflow: auto;
  padding-right: 4px;
}

.admin-product-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  padding: 8px;
  text-align: left;
}

.admin-product-row.selected,
.admin-product-row:hover,
.admin-product-row:focus-visible {
  border-color: var(--pink);
  background: var(--blush);
}

.admin-product-row img {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  object-fit: cover;
}

.admin-product-row strong,
.admin-product-row small {
  display: block;
}

.admin-product-row small {
  color: var(--muted);
  margin-top: 4px;
}

.admin-feedback {
  min-height: 24px;
  color: var(--mint);
  font-weight: 900;
}

.admin-feedback.error,
#loginFeedback {
  color: var(--pink-dark);
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

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

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

  .kit-builder,
  .newsletter,
  .site-footer,
  .admin-grid,
  .product-admin-layout {
    grid-template-columns: 1fr;
  }

  .newsletter form {
    width: 100%;
  }

  .product-admin-list {
    max-height: none;
  }
}

@media (max-width: 780px) {
  .promo-strip {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 520px;
  }

  .hero > img {
    object-position: 63% 50%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 250, 247, 0.94) 0%, rgba(255, 250, 247, 0.73) 46%, rgba(255, 250, 247, 0.2) 100%);
  }

  .hero-content {
    align-self: start;
    padding-top: 46px;
  }

  .benefits,
  .routine-steps,
  .review-grid,
  .quick-body {
    grid-template-columns: 1fr;
  }

  .benefits article,
  .benefits article:nth-child(2) {
    padding: 18px 20px;
  }

  .section-block,
  .kit-builder,
  .reviews {
    padding-block: 56px;
  }

  .section-heading,
  .product-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .kit-options {
    grid-template-columns: 1fr;
  }

  .kit-choice {
    min-height: 132px;
  }

  .newsletter input {
    width: 100%;
  }

  .quick-body img {
    min-height: 260px;
  }

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

  .admin-two,
  .admin-three,
  .asset-grid,
  .benefit-admin-row {
    grid-template-columns: 1fr;
  }

  .shipping-admin-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-shell {
    min-height: 70px;
    padding-inline: 14px;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

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

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .category-card,
  .category-card img {
    min-height: 280px;
  }

  .feature-band {
    width: calc(100% - 28px);
    padding: 24px;
  }

  .feature-band h2,
  .section-heading h2,
  .kit-copy h2,
  .newsletter h2 {
    font-size: 2.1rem;
  }

  .product-info h3 {
    min-height: auto;
  }

  .hero-actions,
  .newsletter form,
  .kit-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .checkout-button,
  .newsletter button {
    width: 100%;
  }
}

/* Reference storefront */
.theme-reference {
  --ref-black: #09080a;
  --ref-pink: #f889a7;
  --ref-pink-strong: #ef5f8d;
  --ref-soft: #fff1f6;
  --ref-line: #f2d5df;
  background: #fff4f8;
  color: #171114;
}

body.theme-reference {
  overflow-x: hidden;
}

.theme-reference .site-header {
  position: static;
}

.reference-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ref-black);
  color: #fff;
}

.reference-promo {
  display: block;
  min-height: 34px;
  overflow: hidden;
  padding: 0;
  color: #111;
  background: var(--ref-pink);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.reference-promo-track {
  display: flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: 7px 0;
  animation: promo-marquee 24s linear infinite;
}

.reference-promo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: clamp(285px, 33vw, 430px);
  white-space: nowrap;
}

.reference-promo svg {
  width: 16px;
  height: 16px;
}

@keyframes promo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reference-promo-track {
    animation: none;
  }
}

.reference-promo i[data-lucide],
.reference-actions i[data-lucide],
.reference-menu-button i[data-lucide],
.reference-category-nav i[data-lucide] {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.reference-mainbar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 103px;
  padding: 10px clamp(18px, 5vw, 70px) 2px;
}

.reference-menu-button,
.reference-actions a,
.reference-actions button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 800;
}

.reference-menu-button {
  justify-self: start;
}

.reference-menu-button svg {
  width: 27px;
  height: 27px;
}

.reference-logo {
  display: grid;
  justify-items: center;
  align-self: center;
  color: #f7b2c4;
  line-height: 0.85;
}

.reference-logo span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6.2vw, 5.45rem);
  font-weight: 800;
  letter-spacing: 0;
}

.reference-logo small {
  margin-top: -4px;
  color: #f5b1c3;
  font-family: "Great Vibes", cursive;
  font-size: clamp(2rem, 4.1vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.reference-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.reference-actions svg {
  width: 22px;
  height: 22px;
}

.reference-cart {
  position: relative;
}

.reference-cart > span {
  position: absolute;
  top: -10px;
  left: 15px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ref-pink-strong);
  font-size: 0.72rem;
  font-weight: 900;
}

.reference-cart strong {
  font: inherit;
}

.reference-search-wrap {
  display: flex;
  justify-content: center;
  padding: 0 20px 17px;
}

.reference-search-toggle {
  display: none;
}

.theme-reference .search-panel.reference-search-panel {
  display: block;
  width: min(626px, 100%);
  padding: 0;
  border: 0;
  background: transparent;
}

.reference-search-row {
  display: grid;
  grid-template-columns: 28px 1fr 95px;
  min-height: 43px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 24px;
  background: #100e11;
}

.reference-search-row svg {
  margin-left: 17px;
  color: #fff;
}

.reference-search-row input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 0 14px;
}

.reference-search-row input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.reference-search-row button {
  align-self: stretch;
  border: 0;
  color: #1b1116;
  background: var(--ref-pink);
  font-weight: 900;
}

.reference-category-nav {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  gap: clamp(7px, 1vw, 15px);
  padding: 0 12px 1px;
  color: #f1d6de;
  background: var(--ref-black);
  font-size: 0.78rem;
  font-weight: 900;
}

.reference-category-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.reference-category-nav svg {
  width: 14px;
  height: 14px;
}

.reference-category-nav .reference-highlight {
  color: var(--ref-pink);
}

.mobile-category-box {
  display: none;
}

.theme-reference .mobile-nav {
  position: fixed;
  z-index: 61;
  top: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: min(82vw, 320px);
  align-content: start;
  gap: 4px;
  overflow-y: auto;
  padding: 22px 20px;
  border: 0;
  border-top: 1px solid #21171b;
  background: #100e11;
  box-shadow: 18px 0 44px rgba(111, 0, 58, 0.28);
  transform: translateX(-105%);
  visibility: hidden;
  transition: transform 0.22s ease, visibility 0.22s ease;
}

.theme-reference .mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}

.theme-reference .mobile-nav strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.1rem;
}

.theme-reference .mobile-nav a {
  color: #fff !important;
  border-color: #21171b;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
}

.reference-hero {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 42%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(90deg, #ffc5d4 0%, #f8a7bd 52%, #ef8aac 100%);
}

.reference-hero-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  width: min(100%, 1180px);
  min-height: 318px;
  align-items: center;
  margin: 0 auto;
  padding: 20px 58px 14px;
}

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

.reference-hero-copy p {
  margin: 0;
  color: #1f1216;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.reference-hero-copy h1 {
  margin: 6px 0 22px;
  color: #c94d78;
  font-family: "Great Vibes", cursive;
  font-size: clamp(3rem, 6vw, 5.15rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.9;
}

.reference-hero-copy span {
  display: block;
  max-width: 380px;
  color: #26151a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.reference-hero-copy a {
  display: inline-flex;
  min-width: 192px;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border-radius: 26px;
  color: #f5b4c4;
  background: #0d0b0d;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.reference-hero-products {
  justify-self: end;
  width: min(100%, 620px);
  height: 300px;
  overflow: hidden;
  background: transparent;
}

.reference-hero-products img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: 62% 58%;
  opacity: 0.78;
  mix-blend-mode: multiply;
  filter: saturate(1.05) contrast(0.98);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
}

.reference-slide {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(18, 13, 15, 0.75);
  transform: translateY(-50%);
}

.reference-slide-left {
  left: 33px;
}

.reference-slide-right {
  right: 33px;
}

.reference-dots {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.reference-dots span {
  width: 15px;
  height: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.reference-dots .active {
  width: 24px;
  background: #09080a;
}

.reference-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 76px;
  background: var(--ref-black);
  color: #fff;
  padding: 0 clamp(20px, 5vw, 72px);
}

.reference-benefits article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 3px 12px;
  padding: 15px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.reference-benefits article:last-child {
  border-right: 0;
}

.reference-benefits svg,
.reference-benefits i[data-lucide] {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--ref-pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reference-benefits strong {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.reference-benefits span {
  color: #f2d9e0;
  font-size: 0.86rem;
  white-space: nowrap;
}

.reference-products {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 18px 20px 28px;
}

.reference-products-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.reference-products-heading > div {
  display: flex;
  align-items: center;
  gap: 23px;
}

.reference-products-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: var(--ref-pink-strong);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.reference-products-heading h2 svg {
  width: 24px;
  height: 24px;
}

.reference-products-heading p {
  margin: 0;
  color: #8b7f84;
  font-size: 1rem;
}

.reference-products-heading > a {
  display: inline-flex;
  min-width: 99px;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ebaec0;
  border-radius: 8px;
  color: #de6f91;
  background: #fff7fa;
  font-size: 0.72rem;
  font-weight: 900;
}

.reference-line-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 18px;
}

.reference-line-filter .filter-button {
  display: inline-flex;
  min-width: 158px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  font-size: 0.82rem;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.reference-line-filter .filter-button.active,
.reference-line-filter .filter-button:hover,
.reference-line-filter .filter-button:focus-visible {
  border-color: #ffffff;
  color: #ff008a;
  background: #ffffff;
  transform: translateY(-1px);
}

.reference-hidden-controls,
.reference-hidden-image {
  display: none !important;
}

.product-line-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.product-line-column {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.product-line-heading {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
}

.product-line-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  font-weight: 900;
  text-transform: uppercase;
}

.product-line-heading span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

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

.product-line-empty {
  min-height: 240px;
}

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

.theme-reference .product-card {
  overflow: hidden;
  border: 1px solid var(--ref-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.theme-reference .product-media {
  background: #fff;
}

.theme-reference .product-media img {
  object-fit: cover;
}

.theme-reference .tag {
  top: 10px;
  left: 10px;
  border-radius: 4px;
  background: #e84f82;
  font-size: 0.68rem;
}

.theme-reference .favorite {
  top: 12px;
  right: 12px;
  border: 0;
  color: #998d92;
  background: transparent;
}

.theme-reference .product-info {
  padding: 12px 13px 14px;
}

.theme-reference .product-category {
  display: none;
}

.theme-reference .product-info h3 {
  min-height: 42px;
  color: #2a1d22;
  font-size: 0.92rem;
  font-weight: 800;
}

.theme-reference .price {
  color: #111;
  font-size: 1.05rem;
}

.theme-reference .installments {
  color: #7f7378;
  font-size: 0.76rem;
}

.theme-reference .buy-button {
  border-radius: 6px;
  background: #0d0b0d;
}

.theme-reference .details-button {
  border-color: #f0d3dd !important;
}

.reference-extra-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 20px 56px;
}

.reference-extra-row article {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.reference-extra-row img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  opacity: 0.72;
}

.reference-extra-row div {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #fff;
}

.reference-extra-row span {
  display: block;
  color: #f6a5bb;
  font-size: 0.8rem;
  font-weight: 900;
}

.reference-extra-row strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.reference-newsletter {
  background: #111;
}

.reference-footer {
  grid-template-columns: 1.4fr 0.7fr 1fr;
  background: var(--ref-black);
}

.reference-footer-logo {
  display: grid;
  color: #f7b2c4;
  line-height: 0.8;
}

.reference-footer-logo strong {
  margin: 0;
  color: #f7b2c4;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.8rem;
  line-height: 0.8;
}

.reference-footer-logo span {
  margin: 0;
  color: #f7b2c4;
  font-family: "Great Vibes", cursive;
  font-size: 1.8rem;
}

@media (max-width: 1080px) {
  .reference-actions {
    gap: 14px;
  }

  .reference-actions span,
  .reference-actions strong {
    display: none;
  }

  .reference-category-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

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

@media (max-width: 760px) {
  .reference-promo {
    display: block;
    overflow: hidden;
    scrollbar-width: none;
  }

  .reference-promo::-webkit-scrollbar {
    display: none;
  }

  .reference-mainbar {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
    padding-inline: 16px;
  }

  .reference-logo span {
    font-size: 2.9rem;
  }

  .reference-logo small {
    font-size: 2rem;
  }

  .reference-actions {
    gap: 9px;
  }

  .reference-actions a,
  .reference-actions button:not(.reference-cart) {
    display: none;
  }

  .reference-category-nav {
    display: none;
  }

  .mobile-category-box {
    display: grid;
    gap: 6px;
    padding: 10px 16px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
  }

  .mobile-category-box label {
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-category-box select {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 6px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    padding: 0 12px;
    font-weight: 900;
  }

  .theme-reference .mobile-nav {
    position: fixed;
    z-index: 61;
    top: 0;
    bottom: 0;
    left: 0;
    display: grid;
    width: min(82vw, 320px);
    align-content: start;
    gap: 4px;
    overflow-y: auto;
    padding: 22px 20px;
    border: 0;
    box-shadow: 18px 0 44px rgba(111, 0, 58, 0.28);
    transform: translateX(-105%);
    transition: transform 0.22s ease;
  }

  .theme-reference .mobile-nav.open {
    transform: translateX(0);
  }

  .mobile-nav strong {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.1rem;
  }

  .theme-reference .mobile-nav a {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    padding: 12px;
  }

  .reference-search-wrap {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .theme-reference .search-panel.reference-search-panel {
    width: 100%;
    min-width: 0;
  }

  .reference-search-row {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .reference-search-row input {
    min-width: 0;
  }

  .reference-search-row button {
    display: none;
  }

  .reference-hero-inner {
    grid-template-columns: 1fr;
    padding: 34px 34px 26px;
  }

  .reference-hero-copy {
    max-width: 300px;
  }

  .reference-hero-products {
    position: absolute;
    right: -82px;
    bottom: 0;
    width: 340px;
    height: 230px;
    opacity: 0.55;
  }

  .reference-slide {
    display: none;
  }

  .reference-benefits {
    grid-template-columns: 1fr 1fr;
    padding-inline: 0;
  }

  .reference-benefits article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px;
  }

  .reference-products-heading,
  .reference-products-heading > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .product-line-board {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-line-column .reference-product-grid,
  .reference-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .reference-extra-row,
  .reference-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .reference-mainbar {
    gap: 8px;
  }

  .reference-menu-button span {
    display: none;
  }

  .reference-search-wrap {
    display: block;
    width: 100%;
    padding-inline: 12px;
    overflow: hidden;
  }

  .theme-reference .search-panel.reference-search-panel {
    width: 100%;
    min-width: 0;
  }

  .reference-search-row {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 26px minmax(0, 1fr);
  }

  .reference-search-row input {
    min-width: 0;
    padding-inline: 10px;
  }

  .reference-hero {
    min-height: 330px;
  }

  .reference-hero-copy h1 {
    font-size: 3.35rem;
  }

  .reference-hero-copy p {
    font-size: 1.65rem;
  }

  .reference-hero-copy span {
    font-size: 1.06rem;
  }

  .reference-benefits {
    grid-template-columns: 1fr;
  }

  .product-line-column .reference-product-grid,
  .reference-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .theme-reference .product-info {
    padding: 10px;
  }

  .theme-reference .product-info h3 {
    min-height: 38px;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .theme-reference .tag {
    top: 8px;
    left: 8px;
    padding: 4px 6px;
    font-size: 0.57rem;
  }

  .theme-reference .favorite {
    top: 6px;
    right: 6px;
    width: 31px;
    height: 31px;
  }

  .theme-reference .price {
    font-size: 0.95rem;
  }

  .theme-reference .installments {
    font-size: 0.68rem;
  }

  .theme-reference .product-card-actions {
    gap: 7px;
    padding-top: 10px;
  }

  .theme-reference .buy-button {
    min-height: 38px;
    padding: 8px 7px;
    font-size: 0.75rem;
  }

  .theme-reference .details-button {
    width: 36px;
    min-height: 38px;
    flex: 0 0 36px;
  }

  .checkout-grid-two,
  .checkout-grid-three {
    grid-template-columns: 1fr;
  }

  .checkout-cep-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Pink and white storefront */
.theme-reference {
  --ref-black: #ff008a;
  --ref-pink: #ff008a;
  --ref-pink-strong: #ffffff;
  --ref-soft: #ff008a;
  --ref-line: rgba(255, 255, 255, 0.28);
  background: #ff008a;
  color: #ffffff;
}

.reference-header,
.reference-category-nav,
.reference-benefits,
.reference-newsletter,
.reference-footer {
  background: #ff008a;
  color: #ffffff;
}

.reference-promo {
  color: #ffffff;
  background: #e6007c;
}

.reference-mainbar,
.reference-search-wrap,
.reference-category-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.reference-menu-button,
.reference-actions a,
.reference-actions button,
.reference-logo,
.reference-logo small,
.reference-logo span,
.reference-category-nav,
.reference-category-nav .reference-highlight,
.theme-reference .mobile-nav a {
  color: #ffffff;
}

.theme-reference .mobile-nav {
  background: #ff008a;
  border-top-color: rgba(255, 255, 255, 0.2);
}

.theme-reference .mobile-nav a {
  border-color: rgba(255, 255, 255, 0.2);
}

.reference-search-row {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.16);
}

.reference-search-row input,
.reference-search-row input::placeholder,
.reference-search-row svg {
  color: #ffffff;
}

.reference-search-row button {
  color: #ffffff;
  background: #c7006b;
}

.reference-cart > span,
.theme-reference .tag {
  color: #ffffff;
  background: #c7006b;
}

.reference-hero {
  background: #ff008a;
}

.reference-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(199, 0, 105, 0.08);
}

.reference-hero-copy p,
.reference-hero-copy h1,
.reference-hero-copy span {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(118, 0, 58, 0.18);
}

.reference-hero-copy a,
.theme-reference .buy-button,
.theme-reference .primary-button,
.theme-reference .checkout-button {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background: #c7006b;
}

.reference-slide {
  color: #ffffff;
  background: rgba(185, 0, 97, 0.78);
}

.reference-dots span {
  background: rgba(255, 255, 255, 0.64);
}

.reference-dots .active {
  background: #ffffff;
}

.reference-benefits article {
  border-color: rgba(255, 255, 255, 0.24);
}

.reference-benefits svg,
.reference-benefits i[data-lucide],
.reference-products-heading h2,
.reference-extra-row span,
.reference-footer-logo strong,
.reference-footer-logo span {
  color: #ffffff;
}

.reference-benefits span,
.reference-products-heading p,
.reference-footer p,
.reference-footer a,
.reference-footer h3 {
  color: rgba(255, 255, 255, 0.86);
}

.reference-products {
  color: #ffffff;
}

.reference-products-heading > a {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.theme-reference .product-card {
  border-color: rgba(255, 255, 255, 0.28);
  background: #ff008a;
  color: #ffffff;
}

.theme-reference .product-media {
  background: rgba(255, 255, 255, 0.22);
}

.theme-reference .favorite,
.theme-reference .product-info h3,
.theme-reference .price,
.theme-reference .installments {
  color: #ffffff;
}

.theme-reference .product-size-select {
  color: rgba(255, 255, 255, 0.86);
}

.theme-reference .product-size-select select {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.theme-reference .details-button {
  border-color: rgba(255, 255, 255, 0.52) !important;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.reference-extra-row article {
  background: #e6007c;
}

.reference-extra-row div,
.reference-extra-row strong {
  color: #ffffff;
}

.reference-newsletter input,
.theme-reference .cart-shipping select,
.theme-reference .checkout-address input,
.theme-reference .checkout-address select {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.theme-reference .checkout-address input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.reference-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.theme-reference .cart-drawer,
.theme-reference .quick-view {
  color: #ffffff;
  background: #ff008a;
}

.theme-reference .cart-header,
.theme-reference .cart-footer,
.theme-reference .cart-line,
.theme-reference .cart-item,
.theme-reference .checkout-address,
.theme-reference .quick-view section {
  border-color: rgba(255, 255, 255, 0.22);
}

.theme-reference .cart-item small,
.theme-reference .cart-shipping span,
.theme-reference .checkout-address label,
.theme-reference .checkout-address-heading span,
.theme-reference .address-feedback,
.theme-reference .quick-view p,
.theme-reference .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.theme-reference .address-feedback.error {
  color: #ffe1ec;
}

.theme-reference .icon-button,
.theme-reference .quantity-button {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.reference-logo img {
  width: clamp(190px, 24vw, 320px);
  max-height: 124px;
  object-fit: contain;
}

.reference-footer-logo img {
  width: min(100%, 280px);
  max-height: 170px;
  object-fit: contain;
}

/* Customer account */
.account-body {
  min-height: 100vh;
  color: #ffffff;
  background: #ff008a;
}

.account-shell {
  display: grid;
  width: min(100%, 980px);
  min-height: 100vh;
  align-content: center;
  gap: 24px;
  margin: 0 auto;
  padding: 28px 20px;
}

.account-brand {
  display: grid;
  justify-items: center;
  color: #ffffff;
  line-height: 0.82;
}

.account-brand img {
  width: min(100%, 390px);
  max-height: 250px;
  object-fit: contain;
}

.account-brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 10vw, 5.7rem);
}

.account-brand span {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.account-card {
  width: min(100%, 560px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  padding: 26px;
  box-shadow: 0 28px 80px rgba(110, 0, 54, 0.22);
}

.account-heading h1,
.account-profile h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1;
}

.account-heading p:not(.eyebrow),
.account-profile p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 22px 0;
}

.account-tabs button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.account-tabs button.active {
  color: #ff008a;
  background: #ffffff;
}

.account-form {
  display: grid;
  gap: 14px;
}

.account-form label {
  display: grid;
  gap: 7px;
  color: #ffffff;
  font-weight: 800;
}

.account-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  padding: 10px 12px;
}

.account-form input::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.account-form .primary-button,
.account-actions .primary-button {
  border-color: rgba(255, 255, 255, 0.68);
  color: #ffffff;
  background: #c7006b;
}

.account-form button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.account-feedback {
  min-height: 24px;
  margin: 14px 0 0;
  color: #ffffff;
  font-weight: 900;
}

.account-feedback.error {
  color: #ffe2ec;
}

.account-profile {
  display: grid;
  gap: 22px;
}

.account-management {
  width: min(100%, 920px);
  display: grid;
  gap: 20px;
}

.account-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.account-section-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

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

.account-list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
}

.account-list-card strong,
.account-list-card span,
.account-list-card small {
  display: block;
}

.account-list-card span {
  margin-top: 4px;
}

.account-list-card small,
.account-empty {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.account-address-form {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.account-two,
.account-three {
  display: grid;
  gap: 12px;
}

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

.account-three {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) 72px;
}

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

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.account-actions .secondary-button {
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.account-list-card .secondary-button,
.account-section-heading .secondary-button,
.account-cep-row .secondary-button {
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.account-cep-row .secondary-button {
  display: none;
}

@media (max-width: 680px) {
  .account-section-heading,
  .account-list-card {
    align-items: stretch;
    flex-direction: column;
  }

  .account-two,
  .account-three {
    grid-template-columns: 1fr;
  }

  .account-cep-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
