:root {
  --burgundy: #6B1D3A;
  --burgundy-deep: #4A1228;
  --burgundy-soft: #8B3456;
  --blush: #F7E3E8;
  --blush-2: #FBEEF1;
  --cream: #FCF7F4;
  --paper: #FFFCFB;
  --rose-gold: #C9A36A;
  --rose-gold-light: #E4C9A0;
  --champagne: #F7E7CE;
  --ink: #2A1520;
  --ink-soft: #6B4F58;
  --line: #E7CDD5;
  --white: #FFFFFF;
  --shadow: 0 18px 50px -22px rgba(107, 29, 58, 0.28);
  --shadow-sm: 0 8px 24px -14px rgba(107, 29, 58, 0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
  --maxw: 1320px;
  --radius-arch: 999px 999px 0 0;
  --logo-burgundy: #6B1D3A;
  --logo-pink: #FFB3CA;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--burgundy);
  color: #fff;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.serif {
  font-family: var(--serif);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--burgundy-soft);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 34px;
  transition: 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.btn-burgundy {
  background: var(--burgundy);
  color: #fff;
}

.btn-burgundy:hover {
  background: var(--burgundy-deep);
}

.btn-outline {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
}

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

.btn-white {
  background: #fff;
  color: var(--burgundy);
}

.btn-white:hover {
  background: var(--blush);
}

/* Top bar */
.topbar {
  position: relative;
  background: linear-gradient(90deg, var(--burgundy-deep) 0%, #5a1830 50%, var(--burgundy-deep) 100%);
  background-size: 200% 100%;
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  animation: topbar-shimmer 8s ease-in-out infinite, topbar-enter 0.7s ease-out both;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold-light), transparent);
  opacity: 0.65;
  animation: topbar-line-glow 3s ease-in-out infinite;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-ticker {
  position: relative;
  min-height: 1.4em;
  min-width: min(420px, 58vw);
  justify-content: center;
}

.topbar-msg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  opacity: 0;
  animation: topbar-msg-cycle 12s ease-in-out infinite;
}

.topbar-msg:nth-child(1) { animation-delay: 0s; }
.topbar-msg:nth-child(2) { animation-delay: 4s; }
.topbar-msg:nth-child(3) { animation-delay: 8s; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  animation: topbar-tools-in 0.8s ease-out 0.2s both;
}

.topbar-right select {
  background: var(--burgundy-deep);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: none;
  padding: 6px 28px 6px 10px;
  min-width: 118px;
  cursor: pointer;
  border-radius: 3px;
  appearance: auto;
  -webkit-appearance: menulist;
}

.topbar-right select option {
  color: #2a1520;
  background: #fff;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  padding: 6px 8px;
}

#langSelect {
  min-width: 148px;
}

#currencySelect {
  min-width: 168px;
}

.topbar-social {
  display: flex;
  gap: 12px;
}

.topbar-social a {
  opacity: 0.85;
  transition: 0.3s;
}

.topbar-social a:hover {
  opacity: 1;
  color: var(--rose-gold-light);
}

/* Header */
.hdr {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(252, 247, 244, 0.82);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
  transform: translateY(-100%);
  opacity: 0;
}

.hdr.hdr-entered {
  animation: hdr-slide-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hdr::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--burgundy) 20%, var(--rose-gold-light) 50%, var(--burgundy) 80%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hdr.scrolled {
  background: rgba(252, 247, 244, 0.96);
  box-shadow: 0 10px 40px -18px rgba(107, 29, 58, 0.28);
  border-bottom-color: rgba(231, 205, 213, 0.65);
}

.hdr.scrolled::after {
  opacity: 0.85;
  transform: scaleX(1);
  animation: hdr-line-shine 4s linear infinite;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 20px;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hdr.scrolled .nav {
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.hdr-entered .brand {
  animation: brand-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.brand-logo {
  display: block;
  height: 76px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), height 0.45s ease;
}

.hdr.scrolled .brand-logo {
  height: 58px;
}

.brand:hover .brand-logo {
  transform: scale(1.04);
}

.mob-logo {
  display: block;
  height: 60px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  border-radius: 4px;
}

.navlinks {
  display: flex;
  gap: 22px;
  align-items: center;
}

.navlinks a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    color 0.35s ease,
    letter-spacing 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hdr-entered .navlinks a {
  animation: nav-link-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hdr-entered .navlinks a:nth-child(1) { animation-delay: 0.42s; }
.hdr-entered .navlinks a:nth-child(2) { animation-delay: 0.48s; }
.hdr-entered .navlinks a:nth-child(3) { animation-delay: 0.54s; }
.hdr-entered .navlinks a:nth-child(4) { animation-delay: 0.6s; }
.hdr-entered .navlinks a:nth-child(5) { animation-delay: 0.66s; }
.hdr-entered .navlinks a:nth-child(6) { animation-delay: 0.72s; }
.hdr-entered .navlinks a:nth-child(7) { animation-delay: 0.78s; }

.navlinks a::before {
  content: "✦";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  font-size: 7px;
  color: var(--rose-gold);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--burgundy), var(--rose-gold-light), var(--burgundy));
  background-size: 200% 100%;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.navlinks a:hover,
.navlinks a.active {
  color: var(--burgundy);
  letter-spacing: 0.22em;
  transform: translateY(-1px);
}

.navlinks a:hover::after,
.navlinks a.active::after {
  width: 100%;
  animation: nav-underline-shine 2.8s linear infinite;
}

.navlinks a.active::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  animation: nav-sparkle 2.4s ease-in-out infinite;
}

.navtools {
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(8px);
}

.hdr-entered .navtools {
  animation: nav-tools-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.84s forwards;
}

.navtools button {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.navtools button:hover {
  color: var(--burgundy);
  transform: translateY(-2px) scale(1.08);
}

.navtools button:active {
  transform: translateY(0) scale(0.96);
}

.navtools svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.4;
  transition: transform 0.35s ease;
}

.navtools button:hover svg {
  transform: scale(1.06);
}

@keyframes topbar-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes topbar-enter {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes topbar-line-glow {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.85; }
}

@keyframes topbar-msg-cycle {
  0%, 6%, 28% { opacity: 0; transform: translateY(calc(-50% + 8px)); }
  10%, 22% { opacity: 1; transform: translateY(-50%); }
  33%, 100% { opacity: 0; transform: translateY(calc(-50% - 8px)); }
}

@keyframes topbar-tools-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes hdr-slide-in {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hdr-line-shine {
  0% { background-position: 200% 50%; }
  100% { background-position: -200% 50%; }
}

@keyframes brand-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes nav-link-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes nav-tools-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes nav-underline-shine {
  0% { background-position: 200% 50%; }
  100% { background-position: -200% 50%; }
}

@keyframes nav-sparkle {
  0%, 100% { opacity: 0.65; transform: translateX(-50%) scale(0.9); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.badge-count {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(107, 29, 58, 0.35); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 4px rgba(107, 29, 58, 0); }
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  transition:
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.burger svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
  transition: stroke 0.35s ease, transform 0.35s ease;
}

.burger--open {
  background: rgba(107, 29, 58, 0.08);
  border-color: rgba(107, 29, 58, 0.2);
  color: var(--burgundy);
}

.burger:hover,
.burger--open:hover,
.burger:focus-visible {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--logo-pink);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(107, 29, 58, 0.45);
  animation: burger-tab-glow 1.8s ease-in-out infinite;
}

.burger:hover svg,
.burger--open:hover svg,
.burger:focus-visible svg {
  stroke: var(--logo-pink);
  transform: scale(1.06);
}

@keyframes burger-tab-glow {
  0%, 100% { box-shadow: 0 10px 28px -8px rgba(107, 29, 58, 0.45); }
  50% { box-shadow: 0 12px 32px -6px rgba(107, 29, 58, 0.55), 0 0 0 3px rgba(255, 179, 202, 0.25); }
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blush);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  animation: kenburns 8s ease forwards;
}

@keyframes kenburns {
  to {
    transform: scale(1);
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(42, 21, 32, 0.72) 0%,
    rgba(42, 21, 32, 0.35) 42%,
    rgba(107, 29, 58, 0.08) 68%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 70px 0;
}

.hero .eyebrow {
  color: var(--rose-gold-light);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6.5vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  color: #fff;
  margin-bottom: 18px;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  max-width: 420px;
  margin-bottom: 34px;
}

.hero-nav {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-nav button {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  transition: 0.4s;
}

.hero-nav button.on {
  width: 48px;
  background: var(--rose-gold-light);
}

.hero-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.hero-arrows button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.hero-arrows .prev {
  left: 24px;
}

.hero-arrows .next {
  right: 24px;
}

/* Trust bar */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  text-align: left;
}

.trust-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--rose-gold);
  stroke-width: 1.2;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}

.trust-item span {
  font-size: 12px;
  color: var(--ink-soft);
}

/* Sections */
.sec {
  padding: 88px 0;
}

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px;
}

.sec-head .eyebrow {
  margin-bottom: 16px;
}

.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
}

.sec-head h2 em {
  font-style: italic;
  color: var(--burgundy);
}

.sec-head p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-top: 16px;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.ornament span {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold));
}

.ornament span:last-child {
  background: linear-gradient(90deg, var(--rose-gold), transparent);
}

.ornament i {
  color: var(--burgundy);
  font-style: normal;
  font-size: 12px;
}

/* Arched collection cards */
.coll-section {
  background: var(--paper);
}

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

.coll-grid.swim {
  grid-template-columns: repeat(5, 1fr);
}

.coll-card {
  position: relative;
  cursor: pointer;
  group: coll;
}

.coll-frame {
  position: relative;
  aspect-ratio: 3 / 4.3;
  overflow: hidden;
  border-radius: var(--radius-arch);
  border: 1px solid var(--line);
  background: var(--blush);
  box-shadow: var(--shadow-sm);
  transition: 0.4s;
}

.coll-frame.media-frame {
  padding: 2px;
  border: none;
  isolation: isolate;
  background: transparent;
}

.coll-frame.media-frame::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg,
    var(--burgundy-deep),
    #5c1a33,
    var(--burgundy),
    var(--burgundy-soft),
    var(--logo-pink),
    var(--burgundy-soft),
    var(--burgundy),
    var(--burgundy-deep)
  );
  animation: media-frame-border-spin 5s linear infinite;
  z-index: 0;
}

@keyframes media-frame-border-spin {
  to {
    transform: rotate(360deg);
  }
}

.media-frame-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-arch);
  overflow: hidden;
  background: var(--blush);
  border: 1px solid rgba(107, 29, 58, 0.25);
}

.coll-frame.media-frame .media-frame-inner img,
.coll-frame.media-frame .media-frame-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.coll-card:hover .coll-frame {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--rose-gold-light);
}

.coll-card:hover .coll-frame.media-frame {
  border-color: transparent;
}

.coll-card:hover .media-frame-inner img,
.coll-card:hover .media-frame-inner video {
  transform: scale(1.06);
}

.coll-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.coll-card:hover .coll-frame img {
  transform: scale(1.06);
}

.coll-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 21, 32, 0.78), transparent 55%);
  z-index: 2;
  pointer-events: none;
  border-radius: var(--radius-arch);
}

.coll-frame.media-frame .coll-info {
  z-index: 3;
}

.coll-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 16px;
  text-align: center;
  color: #fff;
}

.coll-info h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.coll-info p {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-top: 6px;
}

.coll-info .shop-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.35s;
}

.coll-card:hover .shop-link {
  opacity: 1;
  transform: none;
}

/* Promo banners */
.promo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.promo {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.promo.cream {
  background: var(--blush-2);
}

.promo.burgundy {
  background: var(--burgundy);
  color: #fff;
}

.promo-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 42%);
  align-items: center;
  gap: 16px;
  min-height: 200px;
  padding: 24px 22px;
}

.promo-text {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.promo-text .label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.8;
}

.promo-text h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  margin: 8px 0 12px;
  line-height: 1.15;
}

.promo-text a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.promo.burgundy .promo-text a {
  color: var(--rose-gold-light);
}

.promo-media {
  width: 100%;
  max-width: 180px;
  margin-left: auto;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
}

.promo-media.media-frame {
  position: relative;
  padding: 2px;
  border-radius: 12px;
  isolation: isolate;
  background: transparent;
  overflow: hidden;
}

.promo-media.media-frame::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg,
    var(--burgundy-deep),
    var(--burgundy),
    var(--burgundy-soft),
    var(--logo-pink),
    var(--burgundy-soft),
    var(--burgundy-deep)
  );
  animation: media-frame-border-spin 5s linear infinite;
  z-index: 0;
}

.promo-media .media-frame-inner {
  border-radius: 10px;
}

.promo-media .media-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.promo-media--empty {
  background: linear-gradient(145deg, var(--blush) 0%, var(--blush-2) 100%);
  border: 1px dashed rgba(107, 29, 58, 0.25);
  border-radius: 10px;
  min-height: 160px;
}

/* Products */
.shop-sec {
  background: var(--cream);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-bar button {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 20px;
  color: var(--ink-soft);
  border: 1px solid transparent;
  transition: 0.3s;
}

.filter-bar button:hover {
  color: var(--burgundy);
}

.filter-bar button.active {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

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

.product-card {
  background: var(--paper);
  transition: 0.35s;
}

.product-card--shop-link {
  cursor: pointer;
}

.product-card--shop-link .card-media {
  cursor: pointer;
}

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

.card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--blush);
  margin-bottom: 14px;
}

.card-media.media-frame {
  padding: 2px;
  border: none;
  isolation: isolate;
  background: transparent;
  border-radius: 12px;
}

.card-media.media-frame::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg,
    var(--burgundy-deep),
    #5c1a33,
    var(--burgundy),
    var(--burgundy-soft),
    var(--logo-pink),
    var(--burgundy-soft),
    var(--burgundy),
    var(--burgundy-deep)
  );
  animation: media-frame-border-spin 5s linear infinite;
  z-index: 0;
}

.card-media.media-frame .media-frame-inner {
  border-radius: 10px;
}

.card-media.media-frame .media-frame-inner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.card-media.media-frame .media-frame-inner img,
.card-media.media-frame .media-frame-inner picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.product-card:hover .card-media.media-frame .media-frame-inner img,
.product-card:hover .card-media.media-frame .media-frame-inner picture img {
  transform: scale(1.06);
}

.card-media.media-frame .p-badge,
.card-media.media-frame .wish-btn,
.card-media.media-frame .quick-btn {
  z-index: 3;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.product-card:hover .card-media img {
  transform: scale(1.06);
}

.p-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--cream);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 11px;
}

.p-badge.sale {
  background: var(--burgundy);
  color: #fff;
}

.p-badge.new {
  background: var(--rose-gold);
  color: #fff;
}

.wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 252, 251, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-6px);
  transition: 0.35s;
}

.product-card:hover .wish-btn {
  opacity: 1;
  transform: none;
}

.wish-btn.on svg {
  fill: var(--burgundy);
  stroke: var(--burgundy);
}

.quick-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: var(--burgundy-deep);
  color: #fff;
  text-align: center;
  padding: 13px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: 0.4s;
}

.product-card:hover .quick-btn {
  transform: none;
}

.quick-btn:hover {
  background: var(--burgundy);
}

.card-body .cat {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 5px;
}

.card-body h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 8px;
}

.stars {
  color: var(--rose-gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--burgundy);
  font-weight: 500;
}

.price-old {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: line-through;
}

.card-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-add {
  width: 100%;
  padding: 11px 14px;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.card-add:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.2);
}

.card-add.active:not(:disabled) {
  box-shadow: 0 8px 22px rgba(107, 29, 58, 0.22);
}

.card-choice {
  width: 100%;
  padding: 10px 14px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: 0.25s;
}

.card-choice:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.card-choice.on {
  background: var(--blush);
  border-color: var(--burgundy);
  color: var(--burgundy);
  font-weight: 600;
}

.card-size-choice {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-size-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.card-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-size-grid .card-size {
  min-width: 36px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 11px;
  transition: 0.25s;
}

.card-size-grid .card-size.sel,
.card-size-grid .card-size:hover {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

/* Video gallery — same arched frames as lingerie collection cards */
.video-gallery-sec {
  background: var(--paper);
}

.video-gallery-desc {
  max-width: 560px;
  margin: 0 auto 8px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.video-gallery-card {
  cursor: pointer;
  min-width: 0;
}

.video-gallery-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.video-gallery-frame.media-frame .media-frame-inner video {
  pointer-events: none;
}

.video-gallery-frame video::-webkit-media-controls {
  display: none !important;
}

/* Featured carousel */
.featured-wrap {
  position: relative;
}

.featured-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.featured-track::-webkit-scrollbar {
  display: none;
}

.featured-track .product-card {
  flex: 0 0 calc(25% - 17px);
  scroll-snap-align: start;
  min-width: 240px;
}

.carousel-btn {
  position: absolute;
  top: 38%;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

.carousel-btn.prev {
  left: -16px;
}

.carousel-btn.next {
  right: -16px;
}

/* About */
.about {
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 50%, var(--champagne) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A36A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 48px;
  min-height: 280px;
}

.about-img.is-empty {
  display: none;
}

.about-grid:has(.about-img.is-empty) {
  grid-template-columns: 1fr;
}

.about-img-frame {
  position: relative;
  width: 57.5%;
  min-width: 276px;
  max-width: 506px;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  padding: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.about-img-frame::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg,
    var(--burgundy-deep),
    var(--burgundy),
    var(--rose-gold),
    var(--logo-pink),
    var(--rose-gold-light),
    var(--burgundy-soft),
    var(--burgundy-deep)
  );
  animation: about-frame-border-spin 5s linear infinite;
  z-index: 0;
}

.about-img-frame::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201, 163, 106, 0.45);
  border-radius: 11px;
  pointer-events: none;
  z-index: 2;
}

@keyframes about-frame-border-spin {
  to {
    transform: rotate(360deg);
  }
}

.about-img-frame-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--blush) 0%, var(--blush-2) 55%, var(--champagne) 100%);
  border: 1px solid rgba(231, 205, 213, 0.65);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-text {
  padding: 70px 64px;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--burgundy);
}

.about-text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 460px;
}

.about-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0 32px;
}

.about-icons div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}

.about-icons svg {
  width: 22px;
  height: 22px;
  stroke: var(--burgundy);
}

/* Testimonials */
.testimonials {
  background: var(--paper);
}

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

.testi-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 32px 28px;
  text-align: center;
  transition: 0.35s;
}

.testi-card:hover {
  border-color: var(--rose-gold-light);
  box-shadow: var(--shadow-sm);
}

.testi-card .stars {
  margin-bottom: 16px;
}

.testi-card blockquote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
}

.testi-card .author {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.testi-card .loc {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Bella Boutique footer frame */
.site-footer {
  background: var(--burgundy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 48px;
}

.site-footer-wrap {
  max-width: 1200px;
}

.footer-boutique-frame {
  border: 1px solid rgba(201, 160, 137, 0.42);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.footer-frame-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy-deep), var(--burgundy), var(--rose-gold));
}

.footer-frame-newsletter {
  text-align: center;
  padding: 48px 40px 40px;
  background: linear-gradient(180deg, rgba(107, 29, 58, 0.35) 0%, rgba(74, 18, 40, 0.2) 100%);
}

.footer-frame-eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 12px;
}

.footer-frame-newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 400;
}

.footer-frame-newsletter h2 em {
  font-style: italic;
  color: var(--rose-gold-light);
}

.footer-frame-newsletter > p {
  max-width: 460px;
  margin: 0 auto 28px;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.88;
}

.footer-news-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(201, 160, 137, 0.45);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-news-label {
  flex: 1;
  display: flex;
  margin: 0;
}

.footer-news-form input {
  flex: 1;
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 13px;
}

.footer-news-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-news-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.03);
}

.footer-news-form button {
  background: var(--rose-gold);
  color: var(--ink);
  padding: 0 28px;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.footer-news-form button:hover {
  background: var(--rose-gold-light);
}

.footer-news-success {
  max-width: 520px;
  margin: 0 auto;
  padding: 22px 28px;
  border: 1px solid rgba(201, 160, 137, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 32px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.footer-news-success[hidden] {
  display: none;
}

.footer-news-success-eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 10px;
}

.footer-news-success-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 36px);
  color: #fff;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-news-success-desc {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.88;
  max-width: 420px;
  margin: 0 auto;
}

.footer-frame-newsletter.is-subscribed .footer-news-form {
  display: none;
}

.footer-frame-newsletter.is-subscribed .footer-frame-desc {
  display: none;
}

.footer-frame-newsletter.is-subscribed h2 {
  display: none;
}

.footer-frame-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 160, 137, 0.35), transparent);
}

.footer-frame-main {
  padding: 40px 36px 36px;
}

.footer-frame-cell {
  padding: 4px 0;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.footer-frame-policies {
  padding: 36px 36px 28px;
}

.footer-policies-inner {
  max-width: 920px;
  margin: 0 auto;
}

.footer-policies-head {
  text-align: center;
  margin-bottom: 28px;
}

.footer-policies-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: #fff;
  margin: 8px 0 10px;
}

.footer-policies-lead {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 252, 251, 0.78);
  max-width: 640px;
  margin: 0 auto;
}

.footer-policy-card {
  position: relative;
  padding: 28px 32px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 252, 251, 0.98) 0%, var(--blush) 100%);
  border: 1px solid rgba(107, 29, 58, 0.18);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  overflow: hidden;
}

.footer-policy-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg,
    var(--burgundy-deep),
    var(--burgundy),
    var(--burgundy-soft),
    var(--logo-pink),
    var(--burgundy-soft),
    var(--burgundy-deep)
  );
  animation: media-frame-border-spin 5s linear infinite;
  z-index: 0;
}

.footer-policy-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 252, 251, 0.98) 0%, var(--blush) 100%);
  z-index: 0;
}

.footer-policy-card > * {
  position: relative;
  z-index: 1;
}

.footer-policy-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--burgundy-deep);
  margin: 0 0 14px;
}

.footer-policy-card p,
.footer-policy-card li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.footer-policy-card p {
  margin: 0 0 12px;
}

.footer-policy-card ul {
  margin: 0 0 14px;
  padding-left: 1.2em;
}

.footer-policy-ack {
  font-weight: 500;
  color: var(--burgundy);
}

.footer-policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer-policy-btn {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 20px;
}

.footer-policy-btn--ghost {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
}

.footer-policy-btn--ghost:hover {
  background: var(--burgundy);
  color: #fff;
}

.page-body .policy-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(107, 29, 58, 0.12);
}

.page-body .policy-section:first-of-type {
  margin-top: 8px;
  padding-top: 0;
  border-top: none;
}

.page-body .policy-section-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--burgundy-deep);
  margin: 0 0 16px;
}

.footer-frame-bottom {
  padding: 0 36px 28px;
}

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

/* Footer grid (inside frame) */
footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr minmax(240px, 1.5fr);
  gap: 32px 28px;
  padding-bottom: 0;
  align-items: start;
}

.fcol-contact {
  min-width: 0;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  text-align: left;
}

.footer-logo {
  display: block;
  height: 100px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-frame-social {
  padding: 28px 36px 8px;
  display: flex;
  justify-content: center;
}

.social-icons-frame {
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(201, 160, 137, 0.35);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.14) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.18);
}

.social-icons-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
}

.footer-social {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  overflow-x: auto;
  padding: 4px 2px 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 160, 137, 0.45) transparent;
}

.footer-social::-webkit-scrollbar {
  height: 4px;
}

.footer-social::-webkit-scrollbar-thumb {
  background: rgba(201, 160, 137, 0.45);
  border-radius: 999px;
}

.footer-social .social-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, border-color 0.25s ease;
}

.footer-social .social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.footer-social .social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 160, 137, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 20px rgba(0, 0, 0, 0.28);
  filter: brightness(1.08);
}

/* Official brand colors */
.footer-social .social-icon--twitter {
  background: #000000;
}

.footer-social .social-icon--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer-social .social-icon--facebook {
  background: #1877f2;
}

.footer-social .social-icon--tiktok {
  background: #000000;
}

.footer-social .social-icon--telegram {
  background: #26a5e4;
}

.footer-social .social-icon--threads {
  background: #000000;
}

.footer-social .social-icon--youtube {
  background: #ff0000;
}

.footer-social .social-icon--medium {
  background: #000000;
}

.footer-social .social-icon--pinterest {
  background: #e60023;
}

.footer-social .social-icon--whatsapp {
  background: #25d366;
}

.footer-social .social-icon--email {
  background: #ea4335;
}

.fcol h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.footer-col-links a {
  display: block;
  width: 100%;
  padding: 9px 0;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col-links a:last-child {
  border-bottom: none;
}

.footer-col-links a:hover {
  color: var(--rose-gold-light);
  padding-left: 6px;
}

.fcol a {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.fcol a:hover {
  color: var(--rose-gold-light);
  padding-left: 4px;
}

.fcol-service {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.footer-service-links {
  max-width: none;
  margin-bottom: 0;
}

.footer-service-extra {
  margin-top: 14px;
  padding: 12px 0 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0.92;
  align-self: flex-start;
}

.footer-office-address {
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  text-align: left;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.92;
  font-style: normal;
}

.footer-office-line {
  display: block;
  width: 100%;
  padding: 2px 0;
  text-align: left;
}

.footer-office-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.95);
}

.footer-office-address strong {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-contact-note {
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  align-self: stretch;
  width: 100%;
  text-align: left;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.85;
}

.footer-bar {
  border: 1px solid rgba(201, 160, 137, 0.28);
  border-radius: 8px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.footer-bar-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.pay-icons-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.12);
}

.pay-icons-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
}

.pay-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* CrypBlocks premium footer badge */
.crypblocks-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transition: 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
  margin-left: auto;
}

.crypblocks-badge:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(34, 211, 238, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(34, 211, 238, 0.2);
}

.cb-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

.cb-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.cb-label,
.cb-name {
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 38%, #34d399 72%, #059669 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cb-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.cb-name {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pay-icons span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

/* Drawer & modal */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 21, 32, 0.45);
  backdrop-filter: blur(3px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.overlay.on {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  background: var(--cream);
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.drawer.on {
  transform: none;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h3 {
  font-family: var(--serif);
  font-size: 22px;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 26px;
}

.drawer-foot {
  padding: 24px 26px;
  border-top: 1px solid var(--line);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  height: 92px;
  object-fit: cover;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.modal.on {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--cream);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(16px);
  transition: 0.5s;
  position: relative;
}

.modal.on .modal-card {
  transform: none;
}

.modal-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--blush);
}

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

.modal-body {
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 252, 251, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 3;
}

.size-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.size-grid button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  font-size: 12px;
  transition: 0.3s;
}

.size-grid button.sel,
.size-grid button:hover {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

.modal-recommend {
  margin: 16px 0 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.modal-recommend.hidden {
  display: none;
}

.modal-rec-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.modal-rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.modal-rec-item {
  text-align: left;
  border: 1px solid var(--line);
  padding: 8px;
  background: var(--paper);
  transition: border-color 0.25s;
}

.modal-rec-item:hover {
  border-color: var(--burgundy);
}

.modal-rec-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 6px;
}

.modal-rec-item span {
  display: block;
  font-size: 11px;
  line-height: 1.35;
  margin-bottom: 4px;
}

.modal-rec-item em {
  font-size: 12px;
  color: var(--burgundy);
  font-style: normal;
}

.modal-rec-loading {
  font-size: 13px;
  color: var(--ink-soft);
}

.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--cream);
  z-index: 250;
  padding: 20px 0;
  transform: translateY(-100%);
  transition: 0.45s;
  border-bottom: 1px solid var(--line);
}

.search-panel.on {
  transform: translateY(0);
}

.search-inner {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-inner input {
  flex: 1;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 4px;
  font-size: 18px;
  font-family: var(--serif);
  background: transparent;
}

.search-inner input:focus {
  outline: none;
  border-color: var(--burgundy);
}

.mobnav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  max-width: 86vw;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush-2) 100%);
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 20px 0 60px -20px rgba(107, 29, 58, 0.18);
}

.mobnav.on {
  transform: none;
}

.mobnav a {
  font-family: var(--serif);
  font-size: 24px;
  padding: 14px 14px;
  margin: 3px 0;
  border-bottom: none;
  border-radius: 10px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-18px);
  transition: color 0.4s ease, padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobnav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--burgundy) 0%, var(--burgundy-soft) 55%, var(--burgundy) 100%);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobnav a:hover,
.mobnav a:focus-visible {
  color: var(--logo-pink);
  padding-left: 22px;
}

.mobnav a:hover::before,
.mobnav a:focus-visible::before {
  transform: scaleX(1);
  animation: mobnav-tab-shine 2.4s linear infinite;
}

@keyframes mobnav-tab-shine {
  0% { background-position: 200% 50%; }
  100% { background-position: -200% 50%; }
}

.mobnav.on a {
  animation: mobnav-link-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mobnav.on a:nth-of-type(1) { animation-delay: 0.08s; }
.mobnav.on a:nth-of-type(2) { animation-delay: 0.14s; }
.mobnav.on a:nth-of-type(3) { animation-delay: 0.2s; }
.mobnav.on a:nth-of-type(4) { animation-delay: 0.26s; }
.mobnav.on a:nth-of-type(5) { animation-delay: 0.32s; }
.mobnav.on a:nth-of-type(6) { animation-delay: 0.38s; }
.mobnav.on a:nth-of-type(7) { animation-delay: 0.44s; }

@keyframes mobnav-link-in {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .topbar,
  .topbar-msg,
  .topbar-right,
  .hdr,
  .hdr::after,
  .hdr-entered .brand,
  .hdr-entered .navlinks a,
  .hdr-entered .navtools,
  .navlinks a::after,
  .navlinks a.active::before,
  .badge-count,
  .burger,
  .burger:hover,
  .burger--open:hover,
  .mobnav,
  .mobnav.on a,
  .mobnav a::before,
  .mobnav a:hover::before,
  .about-img-frame::before,
  .coll-frame.media-frame::before,
  .card-media.media-frame::before,
  .footer-policy-card::before,
  .promo-media.media-frame::before {
    animation: none !important;
    transition: none !important;
  }

  .hdr {
    transform: none;
    opacity: 1;
  }

  .hdr-entered .brand,
  .hdr-entered .navlinks a,
  .hdr-entered .navtools,
  .topbar-msg {
    opacity: 1;
    transform: none;
  }

  .topbar-msg {
    position: static;
    transform: none;
  }

  .topbar-ticker {
    display: flex;
    gap: 24px;
    min-width: 0;
  }

  .topbar-msg:not(:first-child) {
    display: none;
  }
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(70px);
  background: var(--burgundy-deep);
  color: #fff;
  padding: 14px 26px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 600;
  opacity: 0;
  transition: 0.4s;
}

.toast.on {
  transform: translateX(-50%);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

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

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

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

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

  .featured-track .product-card {
    flex: 0 0 calc(33.333% - 15px);
  }
}

@media (max-width: 900px) {
  .navlinks {
    display: none;
  }

  .burger {
    display: flex;
  }

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

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

  .video-gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

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

  .promo-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px 20px;
  }

  .promo-media {
    max-width: 220px;
    margin: 0 auto;
  }

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

  .about-img {
    padding: 40px 32px 24px;
    min-height: 0;
  }

  .about-img-frame {
    width: 80.5%;
    max-width: 414px;
  }

  .about-text {
    padding: 48px 32px;
  }

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

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

  .footer-frame-main {
    padding: 32px 24px 28px;
  }

  .footer-frame-policies {
    padding: 28px 24px 22px;
  }

  .footer-policy-card {
    padding: 22px 20px;
  }

  .footer-frame-bottom {
    padding: 0 24px 22px;
  }

  .modal-card {
    grid-template-columns: 1fr;
  }

  .hero-arrows {
    display: none;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 18px;
  }

  .sec {
    padding: 64px 0;
  }

  .topbar-ticker {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .topbar-msg {
    animation: none;
    opacity: 1;
    position: static;
    transform: none;
  }

  .topbar-msg:not(:first-child) {
    display: none;
  }

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

  .coll-grid,
  .coll-grid.swim {
    grid-template-columns: 1fr;
  }

  .video-gallery-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .video-gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .video-gallery-grid .video-gallery-card {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }

  .featured-track .product-card {
    flex: 0 0 72%;
  }

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

  .footer-frame-newsletter {
    padding: 36px 22px 32px;
  }

  .footer-frame-main {
    padding: 28px 22px 24px;
  }

  .footer-frame-bottom {
    padding: 0 22px 20px;
  }

  .footer-news-form {
    flex-direction: column;
    max-width: 100%;
    border-radius: 8px;
  }

  .footer-news-form button {
    width: 100%;
    padding: 14px 20px;
  }

  .pay-icons-frame {
    align-items: center;
    width: 100%;
  }

  .footer-frame-social {
    padding: 20px 16px 4px;
  }

  .social-icons-frame {
    padding: 16px 14px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .pay-icons {
    justify-content: center;
  }

  .brand-logo {
    height: 58px;
    max-width: 92px;
  }

  .footer-logo {
    height: 80px;
    max-width: 104px;
  }

  .mob-logo {
    height: 50px;
    max-width: 130px;
  }

  .crypblocks-badge {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    padding: 12px 16px;
  }

  .footer-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .footer-bar-left {
    align-items: center;
  }

  .carousel-btn {
    display: none;
  }
}

.checkout-card {
  grid-template-columns: 1fr;
  max-width: 520px;
  padding: 36px 32px;
}

.checkout-title {
  font-size: 30px;
  margin-bottom: 8px;
}

.checkout-total {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.checkout-total strong {
  color: var(--burgundy);
  font-size: 18px;
}

.checkout-form label {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.checkout-form input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  font: inherit;
  background: var(--white);
}

.checkout-section {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.checkout-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.pay-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.pay-method:has(input:checked) {
  border-color: var(--burgundy);
  background: var(--blush-2);
}

.pay-method input {
  margin: 0;
  width: auto;
}

.payment-panel {
  margin-top: 12px;
}

.payment-panel.hidden {
  display: none;
}

.pay-hint {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.checkout-submit {
  width: 100%;
  margin-top: 8px;
}

#stripeElement {
  min-height: 44px;
}

.hidden {
  display: none !important;
}

html[dir="rtl"] body,
body.rtl {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .topbar-inner,
html[dir="rtl"] .nav,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .drawer-head,
html[dir="rtl"] .cart-item,
html[dir="rtl"] .checkout-form,
html[dir="rtl"] .filter-bar,
html[dir="rtl"] .hero-arrows {
  direction: rtl;
}

html[dir="rtl"] .navlinks,
html[dir="rtl"] .navtools,
html[dir="rtl"] .topbar-right,
html[dir="rtl"] .footer-bar-left,
html[dir="rtl"] .price-row,
html[dir="rtl"] .drawer-foot > div:first-child {
  flex-direction: row-reverse;
}

html[dir="rtl"] .footer-col-links a:hover,
html[dir="rtl"] .fcol a:hover {
  padding-left: 0;
  padding-right: 6px;
}

html[dir="rtl"] .drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

html[dir="rtl"] .drawer.on {
  transform: translateX(0);
}

html[dir="rtl"] .search-inner input {
  text-align: right;
}

html[dir="rtl"] .nav-group {
  border-left: none;
  border-right: 3px solid rgba(201, 160, 137, 0.35);
}

html[dir="rtl"] .nav-group.on {
  border-right-color: var(--rose);
}

.account-pill {
  display: none;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 4px;
}

@media (min-width: 1100px) {
  .account-pill {
    display: inline;
  }
}

#accountModal .account-frame {
  max-width: 480px;
  width: 100%;
  grid-template-columns: 1fr;
  border: 1px solid rgba(201, 160, 137, 0.45);
  box-shadow: 0 28px 80px rgba(42, 21, 32, 0.28);
  overflow: hidden;
  padding: 0;
}

.account-frame-inner {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.account-close {
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.account-header {
  text-align: center;
  padding: 32px 28px 22px;
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}

.account-header-badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 1px solid rgba(201, 160, 137, 0.5);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(107, 29, 58, 0.1);
}

.account-logo {
  width: 52px;
  height: auto;
}

.account-eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 8px;
}

.account-title {
  font-size: clamp(28px, 5vw, 34px);
  font-weight: 400;
  color: var(--burgundy-deep);
  margin-bottom: 8px;
}

.account-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 340px;
  margin: 0 auto;
}

.account-body {
  padding: 24px 28px 8px;
  flex: 1;
  overflow: auto;
}

.account-social-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-provider-slot {
  display: none;
}

.auth-provider-slot.active {
  display: block;
}

.auth-provider-slot iframe {
  width: 100% !important;
  margin: 0 auto !important;
}

.auth-provider-btn {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.auth-provider-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(42, 21, 32, 0.12);
}

.auth-provider-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-provider-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.auth-google {
  background: #fff;
  color: #3c4043;
  border-color: #dadce0;
}

.auth-apple {
  background: #000;
  color: #fff;
}

.auth-email {
  background: #fff;
  color: var(--burgundy-deep);
  border-color: var(--line);
}

.account-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.account-divider::before,
.account-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.account-email-panel.hidden {
  display: none;
}

.account-field {
  display: block;
  margin-bottom: 14px;
}

.account-field span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.account-field input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 15px;
}

.account-field input:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107, 29, 58, 0.08);
}

.account-action {
  width: 100%;
  margin-top: 4px;
}

.account-password-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.account-password-actions .account-action {
  margin-top: 0;
}

.account-code-step {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.account-code-step.hidden,
.account-demo-hint.hidden {
  display: none;
}

.account-demo-hint {
  font-size: 12px;
  color: var(--burgundy);
  margin: 8px 0;
  padding: 10px 12px;
  background: var(--blush-2);
  border: 1px solid rgba(107, 29, 58, 0.12);
}

.account-profile-bar {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--blush-2), var(--cream));
  border: 1px solid var(--line);
  margin-bottom: 18px;
}

.account-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  flex-shrink: 0;
}

.account-welcome {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 2px;
}

.account-profile-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--burgundy-deep);
}

.account-profile-email {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.account-provider-tag {
  font-size: 11px;
  color: var(--rose-gold);
  margin-top: 4px;
  text-transform: capitalize;
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.account-tab {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.25s;
}

.account-tab.on {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

.account-panels {
  border: 1px solid var(--line);
  background: var(--paper);
}

.account-panel {
  display: none;
  max-height: 200px;
  overflow: auto;
  padding: 14px 16px;
}

.account-panel.on {
  display: block;
}

.account-panel h4 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.account-line {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.45;
}

.account-line:last-child {
  border-bottom: none;
}

.account-signout {
  width: 100%;
  margin-top: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.account-footer {
  padding: 16px 28px 22px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.account-secure {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.auth-provider-btn.hidden {
  display: none;
}

.account-provider-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.5;
}

.account-divider.hidden {
  display: none;
}

/* Track order modal */
#trackModal .track-frame {
  max-width: 480px;
  width: 100%;
  grid-template-columns: 1fr;
  border: 1px solid rgba(201, 160, 137, 0.45);
  box-shadow: 0 28px 80px rgba(42, 21, 32, 0.28);
  overflow: hidden;
  padding: 0;
}

.track-frame-inner {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.track-close {
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.track-header {
  text-align: center;
  padding: 32px 28px 22px;
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}

.track-header-badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 1px solid rgba(201, 160, 137, 0.5);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(107, 29, 58, 0.1);
  color: var(--burgundy);
}

.track-icon {
  width: 34px;
  height: 34px;
}

.track-eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 8px;
}

.track-title {
  font-size: clamp(28px, 5vw, 34px);
  font-weight: 400;
  color: var(--burgundy-deep);
  margin-bottom: 8px;
}

.track-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 340px;
  margin: 0 auto;
}

.track-body {
  padding: 24px 28px 12px;
  flex: 1;
  overflow: auto;
}

.track-mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
  padding: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.track-mode {
  padding: 11px 10px;
  border: none;
  background: transparent;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: 0.25s;
}

.track-mode.on {
  background: var(--burgundy);
  color: #fff;
}

.track-panel.hidden {
  display: none;
}

.track-hint {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: -4px;
  margin-bottom: 4px;
  line-height: 1.5;
}

.track-select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}

.track-select:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107, 29, 58, 0.08);
}

.track-result {
  margin-top: 18px;
  padding: 16px;
  background: linear-gradient(135deg, var(--blush-2), var(--cream));
  border: 1px solid var(--line);
}

.track-result.hidden {
  display: none;
}

.track-result.is-error {
  background: #fff5f5;
  border-color: rgba(107, 29, 58, 0.2);
}

.track-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.track-status-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--burgundy);
  color: #fff;
}

.track-status-badge.is-pending {
  background: var(--rose-gold);
}

.track-meta {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}

.track-meta strong {
  color: var(--burgundy-deep);
  font-weight: 500;
}

.track-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.track-progress-step {
  text-align: center;
  position: relative;
}

.track-progress-step::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--line);
  margin-bottom: 8px;
  border-radius: 2px;
}

.track-progress-step.done::before {
  background: var(--burgundy);
}

.track-progress-step span {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.3;
  display: block;
}

.track-progress-step.done span {
  color: var(--burgundy);
}

.track-timeline {
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

.track-event {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  padding: 8px 0;
}

.track-event-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose-gold);
  margin-top: 4px;
}

.track-event:first-child .track-event-dot {
  background: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107, 29, 58, 0.12);
}

.track-event p {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.45;
}

.track-event time {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.track-carrier-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 29, 58, 0.25);
  padding-bottom: 2px;
}

.track-carrier-link:hover {
  color: var(--burgundy-deep);
}

.track-footer {
  padding: 16px 28px 22px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.track-footer-note {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.track-footer a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CMS page modals (Privacy, Terms, FAQ) */
body.scroll-locked {
  overflow: hidden;
  touch-action: none;
}

#pageModal .page-frame {
  max-width: 560px;
  width: 100%;
  grid-template-columns: 1fr;
  border: 1px solid rgba(201, 160, 137, 0.45);
  box-shadow: 0 28px 80px rgba(42, 21, 32, 0.28);
  overflow: hidden;
  padding: 0;
  background: var(--cream);
}

#pageModal .track-frame-inner {
  max-height: min(90vh, 820px);
}

.page-nav-wrap {
  padding: 0 28px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-nav-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  background: var(--paper);
}

.page-nav {
  padding: 12px 8px;
  border: none;
  border-right: 1px solid var(--line);
  background: transparent;
  font-family: inherit;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-align: center;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-nav:last-child {
  border-right: none;
}

.page-nav:hover {
  color: var(--burgundy);
  background: rgba(250, 240, 243, 0.6);
}

.page-nav.on {
  background: var(--burgundy);
  color: #fff;
}

#pageModal .page-body {
  padding: 24px 28px 16px;
  text-align: left;
}

.page-body > *:first-child {
  margin-top: 0;
}

.page-body .policy-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft, #6b5a5f);
  margin-bottom: 18px;
}

.page-body h2,
.page-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--burgundy-deep);
  margin: 0 0 10px;
}

.page-body h2 {
  font-size: 22px;
  margin-top: 8px;
}

.page-body h3 {
  font-size: 18px;
  margin-top: 22px;
}

.page-body h3:first-child {
  margin-top: 0;
}

.page-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.page-body ul {
  margin: 0 0 14px;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.page-body li + li {
  margin-top: 6px;
}

.page-body a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 600px) {
  #pageModal .page-frame {
    max-width: 100%;
  }

  #pageModal .track-header {
    padding: 24px 20px 18px;
  }

  .page-nav-wrap {
    padding: 0 16px;
  }

  .page-nav {
    font-size: 8px;
    letter-spacing: 0.06em;
    padding: 10px 4px;
    min-height: 52px;
  }

  #pageModal .track-body,
  #pageModal .page-body {
    padding: 20px 20px 12px;
  }

  #pageModal .track-footer {
    padding: 14px 20px 18px;
  }

  .footer-service-links {
    max-width: 100%;
  }
}

.seo-breadcrumbs-wrap {
  margin-bottom: 16px;
}

.seo-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.seo-breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--muted);
}

.seo-breadcrumbs a {
  color: var(--burgundy);
  text-decoration: none;
}

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

/* Journal & Designers — luxury framed panels */
.blog-sec {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

.brands-sec {
  background: var(--paper);
}

.editorial-panel,
.brands-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.editorial-panel-accent,
.brands-panel-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy-deep), var(--burgundy), var(--rose-gold));
}

.editorial-panel-inner,
.brands-panel-inner {
  padding: 28px;
  border-top: 1px solid rgba(231, 205, 213, 0.6);
}

.editorial-panel--article .editorial-panel-inner {
  padding: 40px 36px;
}

.editorial-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  padding: 48px 24px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: var(--cream);
}

.blog-card,
.brand-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.blog-card:hover,
.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--rose-gold-light);
  box-shadow: var(--shadow);
}

.blog-card-frame,
.brand-card-frame {
  position: relative;
  padding: 12px 12px 0;
}

.blog-card-frame::before,
.brand-card-frame::before {
  content: "";
  position: absolute;
  inset: 8px 8px auto;
  height: calc(100% - 8px);
  border: 1px solid rgba(201, 163, 106, 0.35);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--blush) 0%, var(--blush-2) 55%, var(--champagne) 100%);
}

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

.blog-card-media--editorial {
  display: grid;
  place-items: center;
}

.blog-card-initial {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-style: italic;
  color: var(--burgundy);
  opacity: 0.55;
}

.blog-card-body,
.brand-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 10px;
}

.blog-card h3,
.brand-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ink);
}

.blog-card-excerpt,
.brand-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}

.blog-card .shop-link,
.brand-card .shop-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
}

.blog-card:hover .shop-link,
.brand-card:hover .shop-link {
  opacity: 1;
  transform: translateX(4px);
}

.brand-logo-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 227, 232, 0.9), transparent 58%),
    linear-gradient(180deg, var(--white) 0%, var(--blush-2) 100%);
}

.brand-logo-frame img {
  width: auto;
  max-width: 120px;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(107, 29, 58, 0.08));
}

.brand-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 8px;
}

.blog-article-sec {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}

.blog-article-sec.hidden {
  display: none;
}

.blog-article h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 14px;
}

.blog-excerpt {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.blog-body {
  line-height: 1.75;
  margin-bottom: 28px;
  color: var(--ink);
}

.blog-body p + p {
  margin-top: 1em;
}

@media (max-width: 900px) {
  .editorial-panel-inner,
  .brands-panel-inner {
    padding: 20px;
  }

  .blog-grid,
  .brand-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .blog-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .editorial-panel--article .editorial-panel-inner {
    padding: 24px 18px;
  }
}
