:root {
  --bg: #ffffff;
  --bg-alt: #fff0f7;
  --pink: #ff1d8d;
  --pink-soft: #ff6bae;
  --pink-deep: #d6167a;
  --white: #2b1e22;
  --card-bg: #ffffff;
  --text-muted: #8a6d74;
  --border: rgba(255, 29, 141, 0.25);
  --shadow: 0 10px 30px rgba(255, 29, 141, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

/* Page load animation */
html.dk-skip-loader #loader { display: none; }
#loader {
  position: fixed; inset: 0; z-index: 2000;
  background-color: #4a0f2e;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 214, 158, 0.22), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(255, 111, 179, 0.28), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(255, 29, 141, 0.35), transparent 60%),
    linear-gradient(145deg, #2c0a1e 0%, #7a1246 45%, #c21e6f 75%, #8a1250 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
#loaderCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.loader-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.loader-name {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.loader-name .pink {
  display: inline-block;
  font-size: 1.25em;
  font-weight: 700;
  color: #f6cf8e;
  opacity: 0;
  animation: loaderBallDrop 1.8s cubic-bezier(0.28, 0.2, 0.4, 1) forwards;
}
.loader-name .pink.pink-k { animation-delay: 0.7s; }
@keyframes loaderBallDrop {
  0%   { transform: translateY(-70px) scaleY(1); opacity: 0; }
  22%  { transform: translateY(0) scaleY(0.8); opacity: 1; }
  30%  { transform: translateY(-32px) scaleY(1); }
  46%  { transform: translateY(0) scaleY(0.88); }
  54%  { transform: translateY(-15px) scaleY(1); }
  68%  { transform: translateY(0) scaleY(0.94); }
  74%  { transform: translateY(-6px) scaleY(1); }
  86%  { transform: translateY(0) scaleY(0.97); }
  100% { transform: translateY(0) scaleY(1); opacity: 1; }
}
.loader-tagline {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.loader-bar-track {
  margin-top: 1.6rem;
  width: 180px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  animation: barFill 2.6s ease forwards;
}
@keyframes barFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-whatsapp {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(214, 22, 122, 0.35);
}
.btn-whatsapp:hover { box-shadow: 0 12px 26px rgba(214, 22, 122, 0.5); }

.btn-outline {
  border-color: var(--pink);
  color: var(--pink-soft);
  background: transparent;
}
.btn-outline:hover { background: rgba(255, 29, 141, 0.08); }

.icon-wa { width: 18px; height: 18px; }

/* Header — centered logo + title block on top, nav row below */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.4rem 1.5rem 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.brand-badge { display: flex; align-items: center; flex-shrink: 0; }
.brand-badge-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
}
.brand-title-block { text-align: center; }
.brand-title {
  margin: 0;
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--pink);
}
.brand-initial {
  display: inline-block;
  font-size: 1.25em;
  font-weight: 700;
  background: linear-gradient(100deg, #1a1210 0%, #1a1210 42%, var(--pink) 50%, #1a1210 58%, #1a1210 100%);
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: initial-shine 3.2s linear infinite;
}
@keyframes initial-shine {
  0% { background-position: 200% 0; }
  100% { background-position: -80% 0; }
}
.brand-tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0;
}
.flourish-line { width: 30px; height: 1px; background: var(--border); }
.brand-tagline {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

.header-nav-row {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 0.45rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav {
  display: flex;
  gap: 1.8rem;
}
.nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
.nav a:hover, .nav a.active { color: var(--pink); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}
.header-right-group {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.header-cta {
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
}
.header-icons { display: flex; align-items: center; gap: 0.5rem; }
.header-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}
.header-icon-btn:hover { color: var(--pink); }
.header-icon-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--pink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.header-search-bar {
  position: absolute;
  top: 100%;
  right: 1.5rem;
  margin-top: 0.6rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}
.header-search-bar.open { display: block; }
.header-search-bar input {
  width: 220px;
  border: none;
  background: none;
  padding: 0.65rem 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  border-radius: 999px;
}
.header-search-bar input:focus { outline: none; }

.gallery-filter-banner {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}
.gallery-filter-banner a { color: var(--pink-deep); font-weight: 600; margin-left: 0.5rem; }

@media (max-width: 780px) {
  .header-top { padding: 0.4rem 1rem 0.3rem; gap: 0.5rem; }
  .brand-badge-logo { width: 110px; height: 110px; }
  .brand-title { font-size: 1.5rem; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    display: none;
    z-index: 10;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; position: absolute; left: 3rem; font-size: 1.1rem; z-index: 11; }
  .header-cta { display: none; }
  .header-right-group { right: 4.5rem; }
  .header-search-bar input { width: 160px; }
  .header-nav-row { padding: 1.1rem 1.5rem; min-height: 3rem; }
  .section { padding: 2rem 1.2rem; }
  .page-hero-section { padding-top: 1.2rem; }
}

/* Hero */
.hero {
  position: relative;
  padding: 1rem 0 1.5rem;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(255, 29, 141, 0.12), transparent 60%);
}
.hero-arcs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-petal {
  position: absolute;
  top: -40px;
  font-size: 1.3rem;
  color: var(--pink-soft);
  opacity: 0;
  animation-name: petal-drift;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes petal-drift {
  0% { transform: translateY(-40px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { transform: translateY(420px) rotate(340deg); opacity: 0; }
}

/* Hero banner slider — full-bleed, edge to edge */
.hero-slider {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.hero-slider-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  color: var(--pink-soft);
  margin: 0 0 1.4rem;
  padding: 0 1.5rem;
}
.slider-viewport {
  overflow: hidden;
  border-radius: 0;
}
.hero-slide {
  position: relative;
  width: 100%;
}
.hero-banner-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
}
.hero-banner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(90deg, rgba(20, 10, 15, 0.55) 0%, rgba(20, 10, 15, 0.15) 55%, transparent 80%);
}
.hero-banner-badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}
.hero-banner-desc {
  max-width: 420px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.hero-banner-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}
.hero-banner-btn-outline {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.slider-dots button.active {
  background: var(--pink);
}

@media (max-width: 700px) {
  .hero-slider-title { font-size: 2rem; }
  .hero-banner-img-wrap { height: auto; aspect-ratio: 16 / 9; }
  .hero-banner-overlay {
    padding: 1.4rem 1.4rem;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 40%, rgba(20, 10, 15, 0.65) 100%);
  }
  .hero-banner-desc { font-size: 1.1rem; max-width: 100%; }
}

/* Floating WhatsApp button */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(214, 22, 122, 0.5);
  z-index: 200;
  color: #ffffff;
  transition: transform 0.2s ease;
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp .icon-wa { width: 28px; height: 28px; }

/* Sections */
.section { padding: 4.5rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.page-hero-section { padding-top: 3.5rem; }

/* Contact page v2 — hero with flourish underline, split card, trust strip, CTA */
body.page-contact {
  background: linear-gradient(160deg, #ffe3ef 0%, #fff5fa 40%, #ffffff 75%);
}
.contact-section.page-hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 1rem;
}
.contact-hero-petals {
  position: absolute;
  top: -40px;
  left: -60px;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 122, 178, 0.35), transparent 60%),
    radial-gradient(circle at 60% 55%, rgba(255, 29, 141, 0.22), transparent 55%),
    radial-gradient(circle at 40% 70%, rgba(255, 180, 210, 0.3), transparent 55%);
  filter: blur(6px);
  transform: rotate(-8deg);
  pointer-events: none;
}
.contact-hero-title {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.6rem;
  text-align: center;
  color: var(--pink-deep);
  margin: 0;
}
.contact-hero-flourish {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem auto;
  width: 260px;
}
.contact-hero-flourish-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9973f, #c9973f);
}
.contact-hero-flourish-line:last-child { background: linear-gradient(90deg, #c9973f, #c9973f, transparent); }
.contact-hero-flourish-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9973f;
  flex-shrink: 0;
}
.contact-hero-flourish-symbol {
  color: #c9973f;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-v2-section { max-width: 1000px; padding-top: 0; }

.contact-v2-card {
  display: flex;
  align-items: stretch;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-v2-list { flex: 1 1 55%; }
.contact-v2-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-v2-row:last-child { border-bottom: none; }
.contact-form {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.contact-form-row { display: flex; gap: 0.8rem; }
.contact-form input,
.contact-form textarea {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--white);
  resize: vertical;
}
.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  padding: 0.6rem 1.4rem;
}
@media (max-width: 480px) {
  .contact-form-row { flex-direction: column; }
}

/* Checkout page */
.checkout-section { max-width: 1200px; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.checkout-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin: 1.4rem 0 0.8rem;
}
.checkout-col-title:first-child { margin-top: 0; }
.checkout-form-col { display: flex; flex-direction: column; gap: 0.7rem; }
.checkout-form-col input {
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--white);
}
.checkout-form-row { display: flex; gap: 0.7rem; }
.checkout-form-row input { flex: 1; min-width: 0; }
.checkout-form-row-3 { flex-wrap: wrap; }
.checkout-submit-btn {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  font-size: 0.92rem;
}
.checkout-summary-col {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
}
.checkout-summary-items { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1rem; }
.checkout-summary-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.checkout-summary-item img { width: 54px; height: 54px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.checkout-summary-item-info { flex: 1; min-width: 0; }
.checkout-summary-item-name { margin: 0 0 0.2rem; font-size: 0.85rem; font-weight: 600; color: var(--white); }
.checkout-summary-item-meta { margin: 0; font-size: 0.76rem; color: var(--text-muted); }
.checkout-summary-item-price { margin: 0; font-size: 0.85rem; font-weight: 600; color: var(--pink-deep); flex-shrink: 0; }
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--white);
}
.checkout-summary-total { font-weight: 700; font-size: 1.05rem; }
.checkout-summary-total span:last-child { color: var(--pink-deep); }
.checkout-summary-shipping-note { font-size: 0.82rem; font-weight: 700; color: #000; margin-top: 0.6rem; }
.checkout-summary-note { font-size: 0.76rem; color: var(--text-muted); margin-top: 0.4rem; }
@media (max-width: 780px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-form-row-3 { flex-direction: column; }
}
.contact-v2-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-v2-icon svg { width: 22px; height: 22px; }
.contact-v2-text { flex: 1; min-width: 0; }
.contact-v2-text h3 { font-size: 0.95rem; color: var(--white); margin: 0 0 0.2rem; }
.contact-v2-text p { color: var(--white); margin: 0; font-size: 0.92rem; font-weight: 500; }
.contact-v2-note { display: block; color: var(--text-muted); font-size: 0.78rem; margin-top: 0.15rem; }
.contact-v2-chat-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
}
.contact-v2-chevron { color: var(--pink-soft); font-size: 1.3rem; flex-shrink: 0; }

.contact-v2-photo { flex: 1 1 45%; min-width: 0; }
.contact-v2-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.contact-trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  margin: 1.8rem 0;
}
.contact-trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--white); max-width: 180px; }
.contact-trust-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-trust-icon svg { width: 17px; height: 17px; }

.contact-v2-cta { text-align: center; margin-top: 1rem; }
.contact-v2-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}
.contact-v2-footer-note {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.contact-v2-heart { width: 14px; height: 14px; color: var(--pink); }

@media (max-width: 700px) {
  .contact-v2-card { flex-direction: column; }
  .contact-v2-photo { min-height: 200px; }
  .contact-v2-row { flex-wrap: wrap; }
}
.section-alt { background: var(--bg-alt); max-width: none; }
.section-alt .about-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  text-align: center;
  font-size: 2.1rem;
  color: var(--white);
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0.6rem 0 2.5rem;
  font-size: 0.95rem;
}

/* Category filter tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 2.5rem;
}
.filter-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-tab:hover { color: var(--pink-soft); border-color: var(--pink); }
.filter-tab.active {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: #ffffff;
  border-color: transparent;
}

/* Announcement banner */
.announce-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 0.8rem 1.5rem;
  color: var(--pink-soft);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* Why Choose Us trust badges */
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.trust-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem 1.2rem;
  text-align: center;
}
.trust-card .trust-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.trust-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--pink-soft);
  margin: 0 0 0.4rem;
}
.trust-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* Home teaser (Popular Picks) */
.teaser-footer { text-align: center; margin-top: 2.2rem; }

/* Instagram page */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 4px;
  max-width: 900px;
  margin: 0 auto;
}
.instagram-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-alt);
  cursor: pointer;
}
.instagram-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.25s ease; }
.instagram-tile:hover img { transform: scale(1.05); }
.instagram-play-icon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #fff;
  font-size: 1.1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.instagram-follow-cta { text-align: center; margin-top: 2.5rem; }

.instagram-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 10, 20, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.2rem;
}
.instagram-lightbox.open { display: flex; }
.instagram-lightbox-panel { max-width: 540px; width: 100%; max-height: 90vh; overflow-y: auto; }
.instagram-lightbox-panel iframe { margin: 0 auto !important; }

@media (max-width: 640px) {
  .instagram-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 2px; }
}

/* About — bold text on the left, scattered overlapping photo collage on the right */
.about-hero-v3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.about-v3-text { flex: 1 1 46%; }
.about-eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.6rem;
}
.about-v3-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.15;
}
.about-v3-accent { color: var(--pink); }
.about-text {
  color: var(--text-muted);
  max-width: 480px;
  margin: 1rem 0 0;
  text-align: left;
  font-size: 1rem;
}
.about-v3-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 1.8rem; }
.about-v3-link { color: var(--pink-deep); font-weight: 600; font-size: 0.92rem; text-decoration: none; }
.about-v3-link:hover { text-decoration: underline; }

.about-v3-collage {
  flex: 1 1 54%;
  position: relative;
  height: 440px;
  min-width: 0;
}
.about-v3-ring {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 60px;
  height: 60px;
  border: 2px solid var(--pink-soft);
  border-radius: 50%;
  opacity: 0.6;
}
.about-v3-photo {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  border: 6px solid var(--card-bg);
  box-shadow: 0 16px 34px rgba(255, 29, 141, 0.22), 0 6px 14px rgba(0, 0, 0, 0.1);
}
.about-v3-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: kenburns 10s ease-in-out infinite alternate;
}
.about-v3-photo.p1 { width: 46%; aspect-ratio: 3/4; top: 0; left: 8%; z-index: 2; animation: float-p1 5s ease-in-out infinite; }
.about-v3-photo.p2 { width: 40%; aspect-ratio: 1/1; top: 4%; right: 0; z-index: 1; animation: float-p2 4.4s ease-in-out infinite 0.3s; }
.about-v3-photo.p3 { width: 38%; aspect-ratio: 4/3; bottom: 0; left: 0; z-index: 1; animation: float-p3 4.8s ease-in-out infinite 0.6s; }
.about-v3-photo.p4 { width: 42%; aspect-ratio: 3/4; bottom: -1rem; right: 6%; z-index: 3; animation: float-p4 5.2s ease-in-out infinite 0.9s; }

@keyframes float-p1 {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-12px); }
}
@keyframes float-p2 {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-10px); }
}
@keyframes float-p3 {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-10px); }
}
@keyframes float-p4 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-12px); }
}

@media (max-width: 900px) {
  .about-hero-v3 { flex-direction: column; padding: 2.2rem 1.2rem; }
  .about-v3-text { text-align: center; }
  .about-text { margin-left: auto; margin-right: auto; text-align: center; }
  .about-v3-actions { justify-content: center; }
  .about-v3-collage { display: none; }
}
@media (max-width: 480px) {
  .about-v3-title { font-size: 2rem; }
}

/* About — full "Welcome" story section */
.about-welcome {
  max-width: 780px;
  text-align: center;
}
.about-welcome-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 1.2rem auto 0;
  text-align: center;
}
.about-welcome-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--pink);
  text-align: center;
  margin: 1.8rem 0 0;
}

/* Stats section — "Adding Happiness!" style */
.stats-section { text-align: center; }
.stats-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
}
.stats-quote {
  font-style: italic;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0.8rem auto 3rem;
  font-size: 1rem;
  line-height: 1.6;
}
.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.stat-item { flex: 1 1 200px; max-width: 260px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-item h3 {
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem 1.2rem;
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 1rem 0.8rem; }
}
.gallery-item {
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card-bg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-item-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
  overflow: hidden;
}
.gallery-item-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 1;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.gallery-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-item-img img { transform: scale(1.06); }
.gallery-item-quick-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -44px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.25s ease, bottom 0.25s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-item-quick-actions {
  bottom: 0.8rem;
  opacity: 1;
  pointer-events: auto;
}
.gallery-quick-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.gallery-quick-btn:hover { transform: translateY(-2px) scale(1.08); background: var(--pink); color: #fff; }
.gallery-quick-wishlist.active { background: var(--pink); color: #fff; }
@media (max-width: 700px) {
  .gallery-item-quick-actions { bottom: 0.6rem; opacity: 1; pointer-events: auto; }
  .gallery-quick-btn { width: 30px; height: 30px; }
}
.gallery-item-info { padding: 0.8rem 0.9rem 1rem; min-height: 3.2rem; }
.gallery-item-name {
  margin: 0 0 0.3rem;
  font-size: 0.86rem;
  color: var(--white);
  line-height: 1.35;
}
.gallery-item-price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}
.gallery-item-current-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pink-deep);
}
.gallery-item-original-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.gallery-item-save-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffffff;
  background: #2e9e5b;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-btn:hover { border-color: var(--pink); color: var(--pink); }
.page-btn.active {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: #ffffff;
  border-color: transparent;
}

/* About */
.about-text {
  color: var(--text-muted);
  max-width: 720px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.footer-logo { width: 200px; height: 200px; object-fit: contain; margin: 0 auto 0.8rem; }
.footer-tagline {
  font-family: 'Dancing Script', cursive;
  color: var(--pink-soft);
  font-size: 1.3rem;
  margin: 0 0 1.5rem;
}
.footer-meta { color: var(--text-muted); margin-top: 1.2rem; font-size: 0.9rem; }
.footer-copy { color: #7a6d74; font-size: 0.8rem; margin-top: 0.8rem; }

/* Lightbox — product detail view */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 10, 20, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem 1.2rem;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.9);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}

.lightbox-panel {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  max-width: 1160px;
  width: 100%;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lightbox-breadcrumb {
  padding: 1.1rem 1.8rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}
.lightbox-body {
  display: flex;
  flex: 1;
  min-height: 0;
}

.lightbox-thumbs {
  width: 84px;
  flex: 0 0 84px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 0.7rem;
  background: var(--bg-alt);
}
.lightbox-thumbs img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.lightbox-thumbs img:hover { opacity: 0.85; }
.lightbox-thumbs img.active { opacity: 1; border-color: var(--pink); }

.lightbox-main {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  padding: 1.5rem;
  overflow: hidden;
}
.lightbox-img {
  max-height: 72vh;
  max-width: 100%;
  border-radius: 10px;
  object-fit: contain;
}
.lightbox-img.lightbox-zoom {
  animation: kenburns 3.5s ease-in-out forwards;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-info {
  width: 400px;
  flex: 0 0 400px;
  padding: 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  overflow-y: auto;
}
.lightbox-category {
  display: inline-block;
  align-self: flex-start;
  background: var(--bg-alt);
  color: var(--pink-deep);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.lightbox-info h3 {
  font-size: 1.3rem;
  color: var(--white);
}

.lightbox-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.lightbox-price { font-size: 1.4rem; font-weight: 600; color: var(--white); }
.lightbox-price-original { font-size: 0.95rem; color: var(--text-muted); text-decoration: line-through; }
.lightbox-discount-badge {
  background: #e4f6ea;
  color: #1e7d42;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.lightbox-size-section { margin: 1rem 0; }
.lightbox-size-label { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 0.6rem; }
.lightbox-size-label b { color: var(--white); }
.lightbox-size-options { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.lightbox-size-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.9rem 0.45rem 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: var(--white);
  cursor: pointer;
}
.lightbox-size-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  position: relative;
}
.lightbox-size-price {
  color: var(--pink);
  font-weight: 600;
  font-size: 0.75rem;
}
.lightbox-size-option.active { border-color: var(--pink); background: var(--bg-alt); }
.lightbox-size-option.active .lightbox-size-radio { border-color: var(--pink); }
.lightbox-size-option.active .lightbox-size-radio::after {
  content: "";
  position: absolute;
  inset: 2.5px;
  border-radius: 50%;
  background: var(--pink);
}

.lightbox-actions-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.lightbox-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 0.7rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.lightbox-qty-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 16px;
}
.lightbox-cart {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1730;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.lightbox-cart:hover { background: #262048; }
.lightbox-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}
.lightbox-wishlist:hover { border-color: var(--pink); color: var(--pink); }
.lightbox-wishlist.active { border-color: var(--pink); color: var(--pink-deep); background: var(--bg-alt); }
.lightbox-wishlist.active .wishlist-heart::before { content: "\2665"; }

@media (max-width: 480px) {
  .lightbox-actions-row { flex-wrap: wrap; }
  .lightbox-cart { order: 3; flex: 1 1 100%; }
}

.lightbox-util-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 0.2rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}
.lightbox-util-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.lightbox-util-link:hover { color: var(--pink); }
.lightbox-share-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.2rem;
  padding-top: 0.6rem;
  padding-bottom: 0.2rem;
  border-top: 1px solid var(--border);
}
.lightbox-share-label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.lightbox-share-icons { display: flex; gap: 0.5rem; }
.lightbox-buy-now {
  display: block;
  width: 100%;
  text-align: center;
  background: #d64545;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  margin-top: 0.7rem;
  cursor: pointer;
}
.lightbox-buy-now:hover { background: #c13a3a; }

/* Cart drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 10, 15, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 92vw;
  height: 100%;
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
}
.cart-drawer-overlay.open .cart-drawer { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 { margin: 0; font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); }
.cart-drawer-header h3 span { font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.cart-drawer-header button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--bg-alt);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
}
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1rem 1.3rem; }
.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.9rem;
  height: 100%;
  color: var(--text-muted);
}
.cart-drawer-empty svg { opacity: 0.4; }
.cart-drawer-empty p { margin: 0; font-size: 0.95rem; }
.cart-drawer-items { display: flex; flex-direction: column; gap: 1rem; }
.cart-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.cart-item img { width: 62px; height: 62px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { margin: 0 0 0.2rem; font-size: 0.85rem; font-weight: 600; color: var(--white); }
.cart-item-size { margin: 0 0 0.4rem; font-size: 0.76rem; color: var(--text-muted); }
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.82rem;
}
.cart-qty-btn { border: none; background: none; cursor: pointer; font-size: 0.9rem; color: var(--white); line-height: 1; padding: 0.1rem 0.2rem; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; flex-shrink: 0; }
.cart-item-price { margin: 0; font-size: 0.85rem; font-weight: 600; color: var(--pink-deep); }
.cart-item-remove { border: none; background: none; color: var(--text-muted); font-size: 1rem; cursor: pointer; }
.cart-item-remove:hover { color: var(--pink); }
.cart-drawer-footer { border-top: 1px solid var(--border); padding: 1rem 1.3rem 1.2rem; }
.cart-drawer-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--white); }
.cart-drawer-total-row span:last-child { font-size: 1.1rem; color: var(--pink-deep); }
.cart-checkout-btn { display: block; width: 100%; text-align: center; border: none; }

.size-guide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 10, 20, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 1.5rem;
}
.size-guide-overlay.open { display: flex; }
.size-guide-modal {
  background: var(--card-bg);
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.size-guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.size-guide-header h3 { margin: 0; font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); }
.size-guide-header button {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}
.size-guide-body { padding: 1.5rem; }
.size-guide-diagram {
  width: 140px;
  height: 140px;
  border: 2px dotted var(--pink);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0 1rem;
}
.size-guide-diagram-arrow {
  width: 70%;
  height: 1px;
  background: var(--pink);
  position: relative;
}
.size-guide-diagram-arrow::before,
.size-guide-diagram-arrow::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--pink);
  border-right: 1.5px solid var(--pink);
}
.size-guide-diagram-arrow::before { left: 0; transform: rotate(-135deg); }
.size-guide-diagram-arrow::after { right: 0; transform: rotate(45deg); }
.size-guide-note { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 1.2rem; }
.size-guide-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.size-guide-table th,
.size-guide-table td {
  text-align: left;
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--border);
}
.size-guide-table th { color: var(--white); font-weight: 600; }
.size-guide-table td { color: var(--text-muted); }
.size-guide-table td:first-child { color: var(--white); font-weight: 600; }
.share-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
}
.share-icon:hover { border-color: var(--pink); color: var(--pink); }

.lightbox-trust {
  margin-top: 0.2rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.lightbox-trust p { margin: 0; font-size: 0.82rem; color: var(--text-muted); }
.lightbox-trust p strong { color: #000; font-weight: 700; }

@media (max-width: 960px) {
  .lightbox-body { flex-direction: column; overflow-y: auto; }
  .lightbox-thumbs { flex-direction: row; width: auto; flex: 0 0 auto; overflow-x: auto; overflow-y: hidden; }
  .lightbox-thumbs img { width: 64px; flex: 0 0 64px; }
  .lightbox-main { padding: 0; flex: 0 0 auto; overflow: visible; }
  .lightbox-img { width: auto; height: auto; max-height: 55vh; max-width: 100%; border-radius: 0; }
  .lightbox-info { width: auto; flex: 1 1 auto; overflow-y: visible; }
  .lightbox-size-options { gap: 0.5rem; }
  .lightbox-size-option { flex: 1 1 calc(50% - 0.5rem); justify-content: space-between; padding: 0.55rem 0.8rem; font-size: 0.78rem; }
}
