/* ==========================================================
   PE_ORIGINALS — style.css
   Women's clothing resale boutique · Pink & White theme
   Fonts: Playfair Display (headings) · Cormorant Garamond
          Dancing Script (accents) · Poppins (body)
   ========================================================== */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Palette — soft feminine pink & white */
  --blush-50: #fff7f8;
  --blush-100: #fdeef0;
  --blush-200: #fbdde1;
  --blush-300: #f8c3ca;
  --blush-400: #f29aa6;
  --blush-500: #e59191; /* main accent — dusty rose */
  --blush-600: #d96f7d;
  --blush-700: #c25566;
  --blush-800: #a34452;
  --rose-deep: #8e3b4a;

  --ink-900: #2b2226; /* charcoal-rose text */
  --ink-700: #4a3f44;
  --ink-500: #7a6b70;
  --ink-300: #b3a4a9;
  --ink-100: #e8dfe2;

  --white: #ffffff;
  --cream: #fdfbfa;
  --grey-bg: #f7f4f5;

  --gold: #d4a857;

  --grad-blush: linear-gradient(135deg, #f8c3ca 0%, #e59191 55%, #d96f7d 100%);
  --grad-soft: linear-gradient(180deg, #fff7f8 0%, #ffffff 100%);

  /* Typography */
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-serif-2: "Cormorant Garamond", Georgia, serif;
  --font-script: "Dancing Script", cursive;
  --font-body: "Poppins", "Montserrat", sans-serif;

  /* Layout */
  --container: 1240px;
  --nav-h: 76px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Effects */
  --shadow-sm: 0 2px 12px rgba(226, 143, 155, 0.12);
  --shadow: 0 12px 40px rgba(226, 143, 155, 0.18);
  --shadow-lg: 0 24px 70px rgba(226, 143, 155, 0.28);
  --border: 1px solid var(--blush-200);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overscroll-behavior-x: none;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(40px, 6vw, 72px);
}
h2 {
  font-size: clamp(30px, 4.2vw, 48px);
}
h3 {
  font-size: clamp(20px, 2.6vw, 27px);
}
p {
  margin: 0 0 1em;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
img {
  max-width: 100%;
  display: block;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: 14.5px;
}
::selection {
  background: var(--blush-300);
  color: var(--ink-900);
}
:focus-visible {
  outline: 2px solid var(--blush-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scrollbar — soft pink */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--blush-50);
}
::-webkit-scrollbar-thumb {
  background: var(--blush-300);
  border-radius: 99px;
  border: 2px solid var(--blush-50);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blush-500);
}

/* ── Layout Utilities ──────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.center {
  text-align: center;
}
.section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  justify-content: center;
}
.section-head h2 {
  margin-bottom: 14px;
}
.section-head p {
  color: var(--ink-500);
  font-size: 16px;
}

/* ── Eyebrow + Script accents ──────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-600);
  margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--blush-300);
}
.eyebrow.center {
  justify-content: center;
}
.script-accent {
  font-family: var(--font-script);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--blush-600);
  display: block;
  margin-top: -6px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.script-inline {
  font-family: var(--font-script);
  color: var(--blush-600);
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--grad-blush);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 28px -10px rgba(217, 111, 125, 0.55);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -12px rgba(217, 111, 125, 0.65);
}
.btn:hover::after {
  transform: translateX(120%);
}
.btn .arrow {
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: var(--blush-700);
  border: 1.5px solid var(--blush-400);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--blush-100);
  box-shadow: 0 10px 26px -14px rgba(217, 111, 125, 0.5);
}
.btn-light {
  background: var(--white);
  color: var(--blush-700);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.18);
}
.btn-light:hover {
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.24);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 11.5px;
}
.btn-block {
  width: 100%;
}
.btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

/* ── Announcement Bar ──────────────────────────────────── */
.announce-bar {
  background: var(--ink-900);
  color: var(--blush-100);
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  padding: 9px 16px;
  position: relative;
  z-index: 300;
}
.announce-bar span {
  font-family: var(--font-script);
  font-size: 15px;
  color: var(--blush-300);
}

/* ── Navigation ────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--blush-100);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 8px 30px -12px rgba(226, 143, 155, 0.28);
  background: rgba(255, 255, 255, 0.96);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* ═══ LOGO PLACEHOLDER ════════════════════════════════════
   Replace images/logo.png with your real logo file.
   Drop your logo at:  pe-originals/images/logo.png
   (square PNG with transparent background recommended)
   ════════════════════════════════════════════════════════ */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-900);
}
.brand-text em {
  font-style: normal;
  color: var(--blush-600);
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  padding: 9px 15px;
  border-radius: var(--radius-full);
  transition:
    color 0.25s ease,
    background 0.25s ease;
  position: relative;
}
.nav-links a:hover {
  color: var(--blush-700);
  background: var(--blush-100);
}
.nav-links a.active {
  color: var(--blush-700);
  font-weight: 600;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-blush);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s var(--ease-out);
  position: relative;
}
.icon-btn:hover {
  background: var(--blush-100);
  color: var(--blush-700);
  transform: translateY(-1px);
}
.icon-btn svg {
  width: 20px;
  height: 20px;
}
.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--blush-600);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease-spring);
}
.cart-count.visible {
  transform: scale(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease-out),
    opacity 0.2s ease;
  display: block;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu ───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(84vw, 380px);
  height: 100dvh;
  background: var(--white);
  z-index: 400;
  padding: 100px 36px 40px;
  transition: right 0.45s var(--ease-out);
  box-shadow: -20px 0 60px rgba(139, 92, 103, 0.18);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu a.m-link {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--ink-900);
  padding: 12px 0;
  border-bottom: 1px solid var(--blush-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.4s ease,
    transform 0.4s var(--ease-out),
    color 0.2s;
}
.mobile-menu.open a.m-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu a.m-link:hover {
  color: var(--blush-600);
}
.mobile-menu .m-link .m-num {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--blush-400);
  letter-spacing: 0.1em;
}
.mobile-menu .m-social {
  margin-top: 28px;
  display: flex;
  gap: 14px;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 34, 38, 0.4);
  backdrop-filter: blur(4px);
  z-index: 350;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-soft);
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -12%;
  width: 62vw;
  height: 130%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(248, 195, 202, 0.5),
    rgba(248, 195, 202, 0.12) 55%,
    transparent 72%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 40vw;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(251, 221, 225, 0.5),
    transparent 65%
  );
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy .eyebrow {
  margin-bottom: 22px;
}
.hero-copy h1 {
  font-size: clamp(44px, 6.4vw, 78px);
  margin-bottom: 20px;
}
.hero-copy h1 .script-accent {
  font-size: clamp(32px, 4.6vw, 56px);
  margin: 4px 0 -4px;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 460px;
  margin-bottom: 34px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  display: flex;
  gap: 22px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-500);
  font-weight: 500;
}
.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--blush-600);
  flex: none;
}

.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-img-wrap {
  position: relative;
  border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: var(--blush-100);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero:hover .hero-img-wrap img {
  transform: scale(1.06);
}
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 5s ease-in-out infinite;
  z-index: 3;
}
.hero-float-card .f-ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blush-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush-600);
  flex: none;
}
.hero-float-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink-900);
}
.hero-float-card span {
  font-size: 12px;
  color: var(--ink-500);
}
.fc-1 {
  top: 12%;
  left: -34px;
  animation-delay: 0s;
}
.fc-2 {
  bottom: 16%;
  right: -22px;
  animation-delay: 1.6s;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-500);
  z-index: 3;
}
.hero-scroll-hint .mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--blush-400);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint .mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--blush-600);
  animation: scrollWheel 1.8s ease-in-out infinite;
}

/* ── Trust / Perks bar ─────────────────────────────────── */
.perks-bar {
  border-block: 1px solid var(--blush-100);
  background: var(--cream);
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0;
}
.perk {
  display: flex;
  align-items: center;
  gap: 14px;
}
.perk-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--blush-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush-600);
  flex: none;
  box-shadow: var(--shadow-sm);
}
.perk-ic svg {
  width: 22px;
  height: 22px;
}
.perk strong {
  display: block;
  font-size: 14px;
  color: var(--ink-900);
  font-weight: 600;
}
.perk span {
  font-size: 12.5px;
  color: var(--ink-500);
}

/* ── Product Card ──────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.product-media {
  position: relative;
  background: var(--grey-bg);
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}
/* Product image — swap picsum URL for your real photo below */
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s var(--ease-out),
    opacity 0.5s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.08);
}
.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 99px;
}
.badge-sale {
  background: var(--blush-600);
  color: #fff;
}
.badge-new {
  background: var(--white);
  color: var(--blush-700);
  box-shadow: var(--shadow-sm);
}
.badge-sold {
  background: var(--ink-900);
  color: #fff;
}
.badge-brand {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-900);
  backdrop-filter: blur(6px);
}

.product-quick {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translate(-50%, 20px);
  width: calc(100% - 28px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush-700);
  text-align: center;
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s var(--ease-out),
    background 0.25s,
    color 0.25s;
  z-index: 2;
}
.product-card:hover .product-quick {
  opacity: 1;
  transform: translate(-50%, 0);
}
.product-quick:hover {
  background: var(--blush-600);
  color: #fff;
}

.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s var(--ease-out),
    color 0.25s;
  z-index: 2;
}
.product-card:hover .wishlist-btn {
  opacity: 1;
  transform: translateY(0);
}
.wishlist-btn:hover {
  color: var(--blush-600);
}
.wishlist-btn.liked {
  color: var(--blush-600);
}
.wishlist-btn svg {
  width: 18px;
  height: 18px;
}

.product-info {
  padding: 16px 6px 6px;
}
.product-brand {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-600);
  font-weight: 600;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink-900);
  margin: 5px 0 6px;
  line-height: 1.3;
  display: block;
}
.product-name:hover {
  color: var(--blush-700);
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-price {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-900);
}
.product-price .currency {
  font-size: 12px;
  color: var(--blush-600);
}
.product-price-old {
  font-size: 13px;
  color: var(--ink-300);
  text-decoration: line-through;
}
.product-save {
  font-size: 11px;
  color: var(--blush-700);
  font-weight: 600;
  background: var(--blush-100);
  padding: 2px 8px;
  border-radius: 99px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-500);
}
.product-rating .stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 11.5px;
}

/* ── Category cards ────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/3.6;
  display: block;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.category-card:hover img {
  transform: scale(1.07);
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43, 34, 38, 0.72) 0%,
    transparent 55%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.category-overlay .script-accent {
  color: var(--blush-300);
  font-size: 22px;
  margin: 0 0 4px;
}
.category-overlay h3 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 12px;
}
.category-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush-200);
}
.category-link .arrow {
  transition: transform 0.3s var(--ease-out);
}
.category-card:hover .category-link .arrow {
  transform: translateX(5px);
}

/* ── Banner (split promo) ──────────────────────────────── */
.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blush-100);
  box-shadow: var(--shadow);
}
.split-banner-img {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.split-banner-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.split-banner:hover .split-banner-img img {
  transform: scale(1.05);
}
.split-banner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 60px;
}
.split-banner-copy .script-accent {
  font-size: 26px;
}
.split-banner-copy h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 14px;
}
.split-banner-copy p {
  color: var(--ink-500);
  margin-bottom: 26px;
}

/* ── Testimonial ───────────────────────────────────────── */
.testimonials {
  background: var(--blush-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1px solid var(--blush-100);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 90px;
  color: var(--blush-200);
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-family: var(--font-serif-2);
  font-size: 17.5px;
  font-style: italic;
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-blush);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  flex: none;
}
.t-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-900);
}
.t-role {
  font-size: 12.5px;
  color: var(--ink-500);
}

/* ── Instagram strip ───────────────────────────────────── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.insta-item:hover img {
  transform: scale(1.1);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(217, 111, 125, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}
.insta-overlay svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

/* ── Newsletter ────────────────────────────────────────── */
.newsletter {
  background: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -10%;
  width: 50%;
  height: 200%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 111, 125, 0.28),
    transparent 65%
  );
  pointer-events: none;
}
.newsletter-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter-inner .script-accent {
  color: var(--blush-300);
}
.newsletter-inner h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}
.newsletter-inner p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 30px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  padding: 15px 22px;
  color: #fff;
  font-size: 14px;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--blush-400);
  background: rgba(255, 255, 255, 0.12);
}
.newsletter-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}
.newsletter-success {
  color: var(--blush-300);
  font-size: 14px;
  margin-top: 14px;
  min-height: 20px;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--blush-100);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding: 70px 0 50px;
}
.footer-brand .brand {
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--ink-500);
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--blush-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush-600);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s var(--ease-out);
}
.footer-social a:hover {
  background: var(--blush-600);
  color: #fff;
  transform: translateY(-3px);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--ink-500);
  padding: 5px 0;
}
.footer-col a:hover {
  color: var(--blush-700);
  padding-left: 4px;
}
.footer-pay {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.pay-badge {
  background: var(--white);
  border: 1px solid var(--blush-200);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}
.footer-bottom {
  border-top: 1px solid var(--blush-100);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--ink-500);
}
.footer-bottom a {
  color: var(--ink-500);
}
.footer-bottom a:hover {
  color: var(--blush-700);
}
.footer-legal {
  display: flex;
  gap: 22px;
}

/* ── Cart Drawer ───────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 34, 38, 0.45);
  backdrop-filter: blur(4px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: min(440px, 100vw);
  height: 100dvh;
  background: var(--white);
  z-index: 600;
  display: flex;
  flex-direction: column;
  transition: right 0.45s var(--ease-out);
  box-shadow: -24px 0 70px rgba(139, 92, 103, 0.22);
}
.cart-drawer.open {
  right: 0;
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--blush-100);
}
.cart-header h3 {
  font-size: 22px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-header h3 span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--blush-600);
  font-weight: 600;
}
.cart-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  background: var(--blush-50);
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.cart-close:hover {
  background: var(--blush-100);
  color: var(--blush-700);
  transform: rotate(90deg);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 26px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-500);
}
.cart-empty-ic {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blush-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush-400);
}
.cart-empty-ic svg {
  width: 36px;
  height: 36px;
}
.cart-empty h4 {
  font-size: 19px;
  margin-bottom: 8px;
}
.cart-empty p {
  font-size: 13.5px;
  margin-bottom: 20px;
}
.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--blush-100);
  animation: slideInRight 0.35s var(--ease-out);
}
.cart-item-img {
  width: 74px;
  height: 92px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--grey-bg);
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-name {
  font-family: var(--font-serif);
  font-size: 14.5px;
  color: var(--ink-900);
  line-height: 1.3;
}
.cart-item-brand {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush-600);
  font-weight: 600;
  margin: 3px 0 4px;
}
.cart-item-meta {
  font-size: 12px;
  color: var(--ink-500);
  margin-bottom: 8px;
}
.cart-item-price {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-900);
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--blush-200);
  border-radius: 99px;
  overflow: hidden;
  background: var(--white);
}
.qty-control button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  font-size: 14px;
  transition:
    background 0.2s,
    color 0.2s;
}
.qty-control button:hover {
  background: var(--blush-100);
  color: var(--blush-700);
}
.qty-control .qty-val {
  min-width: 26px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
}
.cart-item-remove {
  font-size: 11px;
  color: var(--ink-300);
  text-decoration: underline;
  transition: color 0.2s;
}
.cart-item-remove:hover {
  color: var(--blush-700);
}
.cart-footer {
  border-top: 1px solid var(--blush-100);
  padding: 22px 26px;
  background: var(--blush-50);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 13.5px;
  color: var(--ink-500);
}
.cart-total-row.total {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink-900);
  font-family: var(--font-serif);
}
.cart-total-row.total .amount {
  color: var(--blush-700);
}
.cart-ship-note {
  font-size: 11.5px;
  color: var(--ink-500);
  margin: 8px 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-ship-note svg {
  width: 14px;
  height: 14px;
  color: var(--blush-600);
}
.cart-free-ship {
  font-size: 12px;
  color: var(--blush-700);
  margin-bottom: 14px;
}
.cart-free-ship .ship-bar {
  display: block;
  height: 5px;
  background: var(--blush-100);
  border-radius: 99px;
  margin-top: 7px;
  overflow: hidden;
}
.cart-free-ship .ship-bar span {
  display: block;
  height: 100%;
  background: var(--grad-blush);
  border-radius: 99px;
  width: 0%;
  transition: width 0.5s var(--ease-out);
}
.cart-toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 120%);
  background: var(--ink-900);
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 800;
  box-shadow: var(--shadow-lg);
  transition: transform 0.45s var(--ease-spring);
}
.cart-toast.show {
  transform: translate(-50%, 0);
}
.cart-toast svg {
  width: 18px;
  height: 18px;
  color: var(--blush-300);
}

/* ── Nav search modal ──────────────────────────────────────
   Centered "spotlight" dialog (distinct from the cart's side
   drawer) so search reads as quick + lightweight. Dims and blurs
   the page behind it; closes via ×, Esc, or a click anywhere on
   the dimmed backdrop outside the panel. ─────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(43, 34, 38, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.search-panel {
  position: relative;
  width: min(560px, 100%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(139, 92, 103, 0.3);
  padding: 38px 34px 30px;
  text-align: center;
  transform: translateY(-18px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.4s var(--ease-out),
    opacity 0.3s ease;
}
.search-overlay.active .search-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.search-panel-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--blush-50);
  color: var(--ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.search-panel-close:hover {
  background: var(--blush-200);
  color: var(--ink-900);
}
.search-panel-close svg {
  width: 16px;
  height: 16px;
}
.search-panel-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush-600);
  margin-bottom: 6px;
}
.search-panel h3 {
  margin: 0 0 22px;
  font-size: 26px;
}
.search-panel-form {
  position: relative;
  display: flex;
  align-items: center;
}
.search-panel-icon {
  position: absolute;
  left: 18px;
  width: 19px;
  height: 19px;
  color: var(--blush-500);
  pointer-events: none;
}
.search-panel-form input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--blush-200);
  background: var(--blush-50);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-900);
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.search-panel-form input::placeholder {
  color: var(--ink-300);
}
.search-panel-form input:focus {
  border-color: var(--blush-500);
  background: var(--white);
}
.search-panel-hint {
  margin: 16px 0 0;
  font-size: 12.5px;
  color: var(--ink-500);
}
.search-panel-hint kbd {
  font-family: var(--font-body);
  font-size: 11px;
  background: var(--blush-50);
  border: 1px solid var(--blush-200);
  border-radius: 6px;
  padding: 2px 6px;
  color: var(--ink-700);
}
@media (max-width: 560px) {
  .search-overlay {
    padding: 9vh 16px 16px;
  }
  .search-panel {
    padding: 30px 22px 24px;
  }
  .search-panel h3 {
    font-size: 21px;
  }
}

/* ── Page hero (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--grad-soft);
  border-bottom: 1px solid var(--blush-100);
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -80%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 200%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(248, 195, 202, 0.4),
    transparent 60%
  );
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  position: relative;
}
.page-hero .script-accent {
  font-size: 26px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 12.5px;
  color: var(--ink-500);
  margin-top: 18px;
  position: relative;
}
.breadcrumb a:hover {
  color: var(--blush-700);
}
.breadcrumb .sep {
  color: var(--blush-300);
}

/* ── Shop filters ──────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 56px;
}
.filters-panel {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  background: var(--cream);
  border: 1px solid var(--blush-100);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.filter-group {
  padding: 18px 0;
  border-bottom: 1px solid var(--blush-100);
}
.filter-group:last-child {
  border-bottom: none;
}
.filter-group h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.filter-group h4 .f-toggle {
  color: var(--blush-400);
  font-size: 16px;
  transition: transform 0.3s ease;
}
.filter-group.collapsed h4 .f-toggle {
  transform: rotate(-90deg);
}
.filter-group.collapsed .filter-options {
  display: none;
}
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--ink-700);
  transition: background 0.2s;
}
.filter-option:hover {
  background: var(--white);
}
.filter-option input {
  accent-color: var(--blush-600);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.filter-option .count {
  margin-left: auto;
  font-size: 11.5px;
  color: var(--ink-300);
}
.filter-option input:checked ~ * {
  color: var(--blush-700);
  font-weight: 500;
}
.price-range {
  padding: 6px 2px;
}
.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--blush-600);
  cursor: pointer;
}
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 8px;
}
.filter-clear {
  width: 100%;
  margin-top: 14px;
  padding: 11px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--blush-300);
  color: var(--blush-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s;
}
.filter-clear:hover {
  background: var(--blush-600);
  color: #fff;
}

.shop-main {
  min-width: 0;
}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.shop-results {
  font-size: 13.5px;
  color: var(--ink-500);
}
.shop-results strong {
  color: var(--ink-900);
}
.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sort-select {
  background: var(--white);
  border: 1px solid var(--blush-200);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--ink-700);
  cursor: pointer;
}
.sort-select:focus {
  outline: none;
  border-color: var(--blush-500);
}
.mobile-filter-btn {
  display: none;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--blush-300);
  color: var(--blush-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--white);
}
.no-results {
  text-align: center;
  padding: 80px 20px;
  display: none;
}
.no-results h3 {
  font-size: 24px;
}
.no-results p {
  color: var(--ink-500);
}

/* ── Product detail page ───────────────────────────────── */
.product-detail {
  padding: 56px 0 90px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.gallery {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-thumb {
  width: 84px;
  height: 104px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.65;
  transition:
    border-color 0.25s,
    opacity 0.25s;
  padding: 0;
  background: var(--grey-bg);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumb:hover {
  opacity: 1;
}
.gallery-thumb.active {
  border-color: var(--blush-500);
  opacity: 1;
}
.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-bg);
  aspect-ratio: 3/4;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-main .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.gallery-zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 99px;
  padding: 7px 14px;
  font-size: 11px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.gallery-zoom-hint svg {
  width: 14px;
  height: 14px;
  color: var(--blush-600);
}

.pd-brand {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blush-600);
  font-weight: 600;
}
.pd-title {
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 8px 0 12px;
}
.pd-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--ink-500);
}
.pd-rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
}
.pd-rating a {
  color: var(--blush-600);
  font-weight: 500;
}
.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}
.pd-price {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink-900);
}
.pd-price-old {
  font-size: 18px;
  color: var(--ink-300);
  text-decoration: line-through;
}
.pd-save-badge {
  background: var(--blush-100);
  color: var(--blush-700);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
}
.pd-condition {
  font-size: 13.5px;
  color: var(--ink-500);
  margin-bottom: 22px;
}
.pd-condition strong {
  color: var(--blush-700);
  font-weight: 600;
}
.pd-desc {
  color: var(--ink-700);
  font-size: 14.5px;
  margin-bottom: 26px;
  max-width: 520px;
}

.size-selector {
  margin-bottom: 26px;
}
.size-selector-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.size-selector-label span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-900);
}
.size-guide {
  font-size: 12px;
  color: var(--blush-600);
  text-decoration: underline;
}
.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.size-option {
  min-width: 46px;
  padding: 11px 14px;
  border: 1.5px solid var(--blush-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.size-option:hover {
  border-color: var(--blush-500);
}
.size-option.selected {
  border-color: var(--blush-600);
  background: var(--blush-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -6px rgba(217, 111, 125, 0.6);
}
.size-option.disabled {
  opacity: 0.3;
  text-decoration: line-through;
  pointer-events: none;
}
.size-error {
  font-size: 12.5px;
  color: var(--rose-deep);
  margin-top: 8px;
  display: none;
}
.size-error.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.qty-selector > span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-900);
}
.qty-control.lg button {
  width: 36px;
  height: 36px;
}
.qty-control.lg .qty-val {
  min-width: 34px;
  font-size: 15px;
}
.pd-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.pd-actions .btn {
  flex: 1;
  min-width: 190px;
}
.pd-wish-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--blush-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush-600);
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s var(--ease-out);
}
.pd-wish-btn:hover {
  background: var(--blush-600);
  color: #fff;
  transform: translateY(-2px);
}
.pd-wish-btn.liked {
  background: var(--blush-600);
  color: #fff;
}
.pd-wish-btn svg {
  width: 20px;
  height: 20px;
}

.pd-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--blush-100);
  font-size: 13px;
  color: var(--ink-500);
}
.pd-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-meta svg {
  width: 15px;
  height: 15px;
  color: var(--blush-600);
  flex: none;
}
.pd-meta strong {
  color: var(--ink-900);
  font-weight: 600;
}

.accordion {
  margin-top: 34px;
  border-top: 1px solid var(--blush-100);
}
.accordion-item {
  border-bottom: 1px solid var(--blush-100);
}
.accordion-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
  text-align: left;
  transition: color 0.2s;
}
.accordion-head:hover {
  color: var(--blush-700);
}
.accordion-head .a-icon {
  transition: transform 0.35s var(--ease-out);
  color: var(--blush-500);
  font-size: 20px;
}
.accordion-item.open .accordion-head .a-icon {
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.accordion-body-inner {
  padding: 0 0 22px;
  font-size: 14px;
  color: var(--ink-700);
}
.accordion-body-inner ul {
  list-style: disc;
  padding-left: 20px;
}
.accordion-body-inner li {
  margin-bottom: 6px;
}

.related-section {
  padding: 30px 0 90px;
  background: var(--blush-50);
  border-top: 1px solid var(--blush-100);
}

/* ── About page ────────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-small {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  animation: floatY 6s ease-in-out infinite;
}
.about-img-small img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.about-copy h2 {
  margin-bottom: 18px;
}
.about-copy p {
  color: var(--ink-500);
}
.about-copy .btn {
  margin-top: 10px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--blush-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease,
    background 0.3s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: var(--white);
}
.value-ic {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--grad-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(217, 111, 125, 0.6);
}
.value-ic svg {
  width: 26px;
  height: 26px;
}
.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 13.5px;
  color: var(--ink-500);
  margin: 0;
}

.stats-band {
  background: var(--ink-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 120% at 50% 0%,
    rgba(217, 111, 125, 0.25),
    transparent 70%
  );
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 0;
  text-align: center;
  position: relative;
}
.stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--blush-300);
  display: block;
  line-height: 1;
}
.stat-item .stat-num::after {
  content: "+";
}
.stat-item span {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--blush-100);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--grad-blush);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  box-shadow: 0 10px 24px -8px rgba(217, 111, 125, 0.55);
  position: relative;
}
.team-avatar::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1.5px solid var(--blush-200);
  border-radius: 50%;
}
.team-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush-600);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 13px;
  color: var(--ink-500);
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--blush-100);
  border-radius: var(--radius-lg);
  padding: 40px 30px 30px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 700;
  color: var(--blush-200);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}
.step-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
}
.step-card p {
  font-size: 13.5px;
  color: var(--ink-500);
  margin: 0;
  position: relative;
}

/* ── Contact page ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--blush-100);
  border-radius: var(--radius);
  padding: 20px;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
}
.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.ci-ic {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 14px;
  background: var(--grad-blush);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(217, 111, 125, 0.6);
}
.ci-ic svg {
  width: 20px;
  height: 20px;
}
.contact-info-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink-900);
  margin-bottom: 3px;
}
.contact-info-item span {
  font-size: 13.5px;
  color: var(--ink-500);
}
.contact-info-item a:hover {
  color: var(--blush-700);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--blush-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
}
.form-field label .req {
  color: var(--blush-600);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--cream);
  border: 1.5px solid var(--blush-100);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--ink-900);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  width: 100%;
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blush-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(229, 145, 145, 0.15);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-300);
}
.form-status {
  font-size: 13.5px;
  margin-top: 8px;
  min-height: 20px;
}
.form-status.ok {
  color: var(--blush-700);
}
.form-status.err {
  color: var(--rose-deep);
}

.hours-list {
  margin-top: 26px;
}
.hours-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 14px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--blush-200);
  font-size: 13.5px;
  color: var(--ink-500);
}
.hours-row.today {
  color: var(--blush-700);
  font-weight: 600;
}

.map-placeholder {
  margin-top: 70px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 360px;
  background: var(--blush-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217, 111, 125, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 111, 125, 0.14) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
}
.map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
}
.map-pin .pin-ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--grad-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(217, 111, 125, 0.7);
  animation: floatY 4s ease-in-out infinite;
}
.map-pin .pin-ic svg {
  width: 28px;
  height: 28px;
}
.map-pin strong {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink-900);
  display: block;
}
.map-pin span {
  font-size: 13.5px;
  color: var(--ink-500);
}

/* ── FAQ accordion (contact) ───────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

/* ── CTA band ──────────────────────────────────────────── */
.cta-band {
  background: var(--grad-blush);
  border-radius: var(--radius-lg);
  padding: 56px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -10%;
  width: 50%;
  height: 220%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 40px);
  margin-bottom: 10px;
  position: relative;
}
.cta-band .script-accent {
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
  position: relative;
}
.cta-band .btn-light {
  position: relative;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  .hero-copy .eyebrow {
    justify-content: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-float-card.fc-1 {
    left: -8px;
  }
  .hero-float-card.fc-2 {
    right: -8px;
  }
  .split-banner {
    grid-template-columns: 1fr;
  }
  .split-banner-img {
    min-height: 320px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .filters-panel {
    position: fixed;
    top: 0;
    left: -320px;
    width: min(320px, 86vw);
    height: 100dvh;
    z-index: 460;
    border-radius: 0;
    overflow-y: auto;
    transition: left 0.4s var(--ease-out);
    background: var(--white);
  }
  .filters-panel.open {
    left: 0;
  }
  .mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
  }
  .gallery-thumb {
    flex: none;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-img-small {
    right: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .product-grid,
  .product-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .split-banner-copy {
    padding: 40px 30px;
  }
  .section {
    padding: 72px 0;
  }
  .fc-2 {
    display: none;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 20px;
  }
  .product-grid,
  .product-grid.cols-3 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .product-name {
    font-size: 15px;
  }
  .product-quick {
    display: none;
  }
  .wishlist-btn {
    opacity: 1;
    transform: none;
  }
  .perks-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .btn {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .cart-drawer {
    width: 100vw;
  }
  .contact-form-card {
    padding: 26px 22px;
  }
  .cta-band {
    padding: 44px 26px;
  }
  .gallery-main {
    aspect-ratio: 4/5;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
