:root {
  --bg: #ffffff;
  --bg-soft: #fcf8f5;
  --bg-cream: #f5efe8;
  --bg-blush: #faf0f2;
  --ink: #2a2a2a;
  --ink-muted: #6b6560;
  --rose: #b84a62;
  --rose-deep: #9e3d53;
  --rose-soft: #d4a0ab;
  --gold: #c4a35a;
  --gold-light: #e8d5a3;
  --border: #eadfd6;
  --shadow: 0 8px 30px rgba(42, 30, 24, 0.08);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --header-h: 92px;
  --topbar-h: 38px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input {
  font: inherit;
}

/* ——— Top bar ——— */
.top-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  min-height: var(--topbar-h);
  padding: 0.45rem 1.5rem;
  background: #3a3532;
  color: #f5f0ea;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: flex-start;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar__item--center {
  justify-content: center;
}

.top-bar__item:last-child {
  justify-content: flex-end;
}

.top-bar strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo__mark {
  width: 64px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  font-weight: 500;
}

.logo__name strong {
  font-weight: 700;
  color: var(--ink);
}

.logo__tagline {
  font-family: var(--font-script);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav__link {
  position: relative;
  padding: 0.25rem 0;
  color: var(--ink);
  transition: color 0.2s;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--rose);
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--rose);
}

.badge-new {
  display: inline-block;
  margin-left: 0.2rem;
  padding: 0.1rem 0.35rem;
  background: var(--rose);
  color: #fff;
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  vertical-align: middle;
  font-weight: 600;
}

.nav__sub {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav__sub a:hover {
  color: var(--rose);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.icon-btn:hover {
  background: var(--bg-soft);
  color: var(--rose);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--rose);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: 0.25s;
}

/* Search */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 16, 14, 0.55);
  display: grid;
  place-items: start center;
  padding-top: 12vh;
}

.search-overlay[hidden] {
  display: none;
}

.search-form {
  position: relative;
  width: min(640px, 92vw);
  display: flex;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.search-form input {
  flex: 1;
  border: none;
  padding: 1rem 1.25rem;
  outline: none;
}

.search-form button[type="submit"] {
  border: none;
  background: var(--rose);
  color: #fff;
  padding: 0 1.5rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}

.search-close {
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.btn--primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  border-color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn--ghost {
  background: #fff;
  color: var(--ink-muted);
  border-color: #d5cdc4;
}

.btn--ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.btn--sm {
  padding: 0.55rem 0.7rem;
  font-size: 0.65rem;
  flex: 1;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  height: min(82vh, 760px);
  min-height: 520px;
  overflow: hidden;
  background: var(--bg-soft);
}

.hero__slides {
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s;
  background:
    linear-gradient(90deg, rgba(252, 248, 245, 0.94) 0%, rgba(252, 248, 245, 0.78) 34%, rgba(252, 248, 245, 0.22) 58%, transparent 78%),
    var(--hero-img) var(--hero-pos, right center) / cover no-repeat;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(520px, 100%);
  animation: fadeUp 0.9s ease both;
}

.hero__slide.is-active .hero__content {
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero__script {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  color: var(--rose-soft);
  line-height: 1;
  margin: -0.15rem 0 1rem;
}

.hero__desc {
  color: var(--ink-muted);
  font-size: 1rem;
  max-width: 34ch;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(42, 42, 42, 0.15);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.hero__arrow:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.hero__arrow--prev {
  left: 1rem;
}

.hero__arrow--next {
  right: 1rem;
}

.hero__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.hero__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(42, 42, 42, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.hero__dots button.is-active {
  background: var(--rose);
  transform: scale(1.25);
}

/* ——— Trust ——— */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border);
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
}

.trust__icon {
  color: var(--gold);
  flex-shrink: 0;
}

.trust__item h3 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.trust__item p {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* ——— Sections ——— */
.section {
  padding: 4rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section--alt {
  max-width: none;
  background: var(--bg-soft);
  padding-left: max(1.5rem, calc((100% - 1400px) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100% - 1400px) / 2 + 1.5rem));
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.25rem;
  gap: 1rem;
}

.section__head--center {
  flex-direction: column;
  text-align: center;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.flourish {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}

.flourish::after {
  content: "◆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.45rem;
  color: var(--gold);
  background: var(--bg);
  padding: 0 0.2rem;
}

.section--alt .flourish::after {
  background: var(--bg-soft);
}

.section__link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--rose);
  white-space: nowrap;
}

.section__sub {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-top: 0.35rem;
}

.section__sub a {
  color: var(--rose);
  font-weight: 500;
}

.center {
  text-align: center;
  margin-top: 2rem;
}

/* ——— Products ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.15rem;
}

.product-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-cream);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.tag-new {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2;
  background: var(--rose);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.4rem;
}

.wish-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
}

.wish-btn.is-active,
.wish-btn:hover {
  color: var(--rose);
}

.product-card__body {
  padding: 0.85rem 0.55rem 1rem;
}

.product-card__body h3 {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.price {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.rating {
  color: var(--gold);
  font-size: 0.7rem;
  margin: 0.2rem 0 0.45rem;
  letter-spacing: 0.05em;
}

.rating span {
  color: var(--ink-muted);
  letter-spacing: 0;
}

.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}

.sizes span {
  font-size: 0.62rem;
  color: var(--ink-muted);
  border: 1px solid var(--border);
  padding: 0.1rem 0.3rem;
  min-width: 1.4rem;
  text-align: center;
}

.swatches {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.swatches i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.ship-note {
  font-size: 0.65rem;
  color: var(--ink-muted);
  margin-bottom: 0.65rem;
}

.product-card__actions {
  display: flex;
  gap: 0.35rem;
}

/* ——— Categories ——— */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card__img {
  width: min(150px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--border), var(--shadow);
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-card:hover .category-card__img img {
  transform: scale(1.08);
}

.category-card h3 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.category-card span {
  font-size: 0.72rem;
  color: var(--rose);
}

/* ——— Offers ——— */
.offers {
  max-width: none;
  background: var(--bg-blush);
  padding-left: max(1.5rem, calc((100% - 1400px) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100% - 1400px) / 2 + 1.5rem));
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.offer-card {
  background: #fff;
  border: 1.5px dashed var(--rose-soft);
  padding: 1.5rem 1.1rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.offer-card__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  background: var(--bg-blush);
  border-radius: 50%;
  color: var(--rose);
  font-size: 1.1rem;
  font-weight: 700;
}

.offer-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.offer-card p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}

.offer-code {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  background: var(--bg-soft);
  border: 1px dashed var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.offer-code strong {
  color: var(--rose);
}

/* ——— Instagram ——— */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.ig-grid a {
  aspect-ratio: 1;
  overflow: hidden;
}

.ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s;
}

.ig-grid a:hover img {
  transform: scale(1.06);
  filter: brightness(0.92);
}

/* ——— Size chart ——— */
.size-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--border);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.size-table th,
.size-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.size-table th {
  background: var(--bg-cream);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.size-table tbody tr:hover {
  background: var(--bg-soft);
}

/* ——— Newsletter ——— */
.newsletter {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem max(1.5rem, calc((100% - 1400px) / 2 + 1.5rem));
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
}

.newsletter__left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold);
}

.newsletter__left h3 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  font-weight: 600;
}

.newsletter__left p {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  width: 100%;
}

.newsletter__form input {
  flex: 1;
  border: 1px solid var(--border);
  border-right: none;
  padding: 0.85rem 1rem;
  background: #fff;
  outline: none;
}

.newsletter__form input:focus {
  border-color: var(--rose-soft);
}

.newsletter__form .btn {
  border-radius: 0;
}

.newsletter__social {
  display: flex;
  gap: 0.65rem;
}

.newsletter__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--gold);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.newsletter__social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

/* ——— Footer ——— */
.site-footer {
  background: #f0e9e1;
  padding: 3.5rem max(1.5rem, calc((100% - 1400px) / 2 + 1.5rem)) 0;
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  max-width: 36ch;
}

.logo--footer .logo__mark {
  width: 56px;
}

.site-footer h4 {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.site-footer ul li {
  margin-bottom: 0.45rem;
}

.site-footer ul a {
  font-size: 0.88rem;
  color: var(--ink-muted);
  transition: color 0.2s;
}

.site-footer ul a:hover {
  color: var(--rose);
}

.footer-contact p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.footer-contact__name {
  color: var(--ink) !important;
  font-size: 1rem !important;
}

.footer-contact a {
  color: var(--ink-muted);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold) !important;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

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

/* ——— WhatsApp float ——— */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulseWa 2.4s ease infinite;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

@keyframes pulseWa {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.12);
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 120;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.toast[hidden] {
  display: none;
}

/* ——— Responsive ——— */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .ig-grid a:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 980px) {
  .top-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .top-bar__item,
  .top-bar__item--center,
  .top-bar__item:last-child {
    justify-content: center;
  }

  .top-bar__item:not(:first-child) {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    max-height: calc(100vh - var(--topbar-h) - var(--header-h));
    overflow-y: auto;
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .nav__sub {
    justify-content: flex-start;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

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

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

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

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

  .hero__content {
    width: min(100%, 480px);
    background: linear-gradient(180deg, rgba(252, 248, 245, 0.9), rgba(252, 248, 245, 0.75));
    padding: 2rem 1.25rem;
    margin: 2rem 1rem;
    height: auto;
    align-self: center;
  }

  .hero__slides {
    display: flex;
    height: 100%;
  }

  .hero__slide {
    background:
      linear-gradient(180deg, rgba(252, 248, 245, 0.25) 0%, rgba(252, 248, 245, 0.78) 72%),
      var(--hero-img) var(--hero-pos, center top) / cover no-repeat;
    display: flex;
    align-items: flex-end;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .category-grid,
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ig-grid a:nth-child(n + 4) {
    display: none;
  }

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

  .logo__mark {
    width: 48px;
  }

  .logo__name {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 560px;
  }

  .trust {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .trust__item {
    justify-content: flex-start;
  }

  .section__title .flourish {
    display: none;
  }

  .hero__arrow {
    display: none;
  }
}

/* ——— Logo blend (transparent PNG merges into white/cream) ——— */
.logo__mark--blend,
.logo__mark {
  background: transparent !important;
  mix-blend-mode: multiply;
  border-radius: 0;
  filter: contrast(1.08) saturate(1.05);
}

.logo--footer .logo__mark {
  mix-blend-mode: multiply;
}

.product-grid#homeProducts,
#homeProducts.product-grid {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1200px) {
  #homeProducts.product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  #homeProducts.product-grid,
  #relatedGrid.product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.wish-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.compare {
  color: var(--ink-muted);
  font-weight: 400;
  font-size: 0.8em;
  margin-left: 0.25rem;
}

.size-chart-chip {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  z-index: 2;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.25s;
}

.product-card:hover .size-chart-chip {
  opacity: 1;
  transform: none;
}

/* Page hero / breadcrumb */
.page-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 1.5rem 1.75rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.12em;
  font-weight: 600;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { color: var(--ink-muted); }

/* Shop layout */
.shop-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

.shop-filters {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 12px);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.shop-filters h3 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.shop-filters label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  cursor: pointer;
  color: var(--ink-muted);
}

.shop-filters label:hover,
.shop-filters label.is-active {
  color: var(--rose);
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.shop-toolbar p {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.shop-toolbar select {
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  outline: none;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-muted);
}

.empty-state h2 {
  font-family: var(--font-serif);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

/* Product detail */
.pdp {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.pdp-gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.75rem;
}

.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-thumbs button {
  border: 1px solid var(--border);
  padding: 0;
  background: var(--bg-cream);
  cursor: pointer;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.pdp-thumbs button.is-active {
  border-color: var(--rose);
}

.pdp-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-main {
  position: relative;
  background: var(--bg-cream);
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.pdp-main .size-chart-chip {
  opacity: 1;
  transform: none;
}

.pdp-info .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pdp-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.pdp-price {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0.75rem 0;
}

.pdp-desc {
  color: var(--ink-muted);
  margin: 1rem 0 1.5rem;
  max-width: 48ch;
}

.variant-block {
  margin-bottom: 1.25rem;
}

.variant-block h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.variant-block h4 span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-muted);
  margin-left: 0.35rem;
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.size-pills button {
  min-width: 44px;
  height: 40px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  transition: 0.2s;
}

.size-pills button.is-active,
.size-pills button:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.color-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.color-pills button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--border);
  cursor: pointer;
  padding: 0;
}

.color-pills button.is-active {
  box-shadow: 0 0 0 2px var(--rose);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.qty-control {
  display: inline-flex;
  border: 1px solid var(--border);
}

.qty-control button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-soft);
  cursor: pointer;
  font-size: 1.1rem;
}

.qty-control input {
  width: 48px;
  border: none;
  text-align: center;
  outline: none;
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.pdp-actions .btn {
  flex: 1;
  min-width: 140px;
}

.pdp-meta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.pdp-meta li {
  margin-bottom: 0.35rem;
  padding-left: 0.85rem;
  position: relative;
}

.pdp-meta li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pdp-related {
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

/* Cart / wishlist tables */
.cart-page,
.wish-page,
.content-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-muted);
}

.cart-table td {
  padding: 1.15rem 0.5rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cart-item img {
  width: 88px;
  height: 110px;
  object-fit: cover;
  background: var(--bg-cream);
}

.cart-item h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.cart-item p {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 0.2rem;
}

.cart-summary {
  margin-top: 2rem;
  margin-left: auto;
  max-width: 360px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.cart-summary h3 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

.cart-summary-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.cart-summary .btn {
  width: 100%;
  margin-top: 1rem;
}

.link-btn {
  border: none;
  background: none;
  color: var(--rose);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  padding: 0;
}

/* Modal */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,16,14,0.55);
}

.modal__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  width: min(640px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}

.modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  border: none;
  background: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--ink-muted);
  line-height: 1;
}

/* Content / policy pages */
.prose {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-muted);
}

.prose h2 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 1.35rem;
  margin: 1.75rem 0 0.65rem;
  letter-spacing: 0.04em;
}

.prose p, .prose li { margin-bottom: 0.75rem; line-height: 1.7; }
.prose ul { padding-left: 1.2rem; list-style: disc; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.contact-card a { color: var(--rose); }

.contact-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
  background: #fff;
  outline: none;
}

.contact-form textarea { min-height: 140px; resize: vertical; }

@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp { grid-template-columns: 1fr; }
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; order: 2; }
  .pdp-thumbs button { width: 64px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .cart-item img { width: 64px; height: 80px; }
  .cart-table thead { display: none; }
  .size-chart-chip { opacity: 1; transform: none; }
}

/* ——— Checkout ——— */
.checkout-wrap { max-width: 1100px; }
.checkout-steps {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  list-style: none;
}
.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.4rem 0.75rem;
}
.checkout-steps li span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-cream);
  font-weight: 600;
}
.checkout-steps li.active,
.checkout-steps li.done { color: var(--rose); }
.checkout-steps li.active span,
.checkout-steps li.done span {
  background: var(--rose);
  color: #fff;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.checkout-panel { display: none; }
.checkout-panel.active { display: block; }
.checkout-panel h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: space-between;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.checkout-cart-row,
.summary-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.checkout-cart-row img,
.summary-item img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  background: var(--bg-cream);
}
.checkout-cart-row strong,
.summary-item strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  display: block;
}
.checkout-cart-row p,
.summary-item span {
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.checkout-cart-row em,
.summary-item em {
  margin-left: auto;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}
.checkout-summary {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 12px);
}
.checkout-summary h3 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.ship-hint {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}
.pay-methods { display: grid; gap: 0.75rem; margin-bottom: 1rem; }
.pay-option {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}
.pay-option:has(input:checked) {
  border-color: var(--rose);
  background: var(--bg-blush);
}
.pay-option strong { display: block; margin-bottom: 0.15rem; }
.pay-option small { color: var(--ink-muted); font-size: 0.8rem; }
.pay-note { font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 1rem; }
.checkout-error {
  background: #fde8ec;
  color: #9e3d53;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}
.secure-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-align: center;
}
.confirm-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}
.confirm-success {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.confirm-card h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.confirm-id { margin-bottom: 1rem; color: var(--ink-muted); }
.confirm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.confirm-grid h3 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.confirm-items {
  text-align: left;
  margin-top: 0.75rem;
}
.confirm-items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .confirm-grid { grid-template-columns: 1fr; }
}
