/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:        #F472B6;
  --rose-light:  #FCE7F3;
  --rose-pale:   #FFF0F7;
  --blush:       #FBCFE8;
  --peach:       #FFE4E6;
  --mauve:       #D4A5C0;
  --plum:        #831843;
  --plum-mid:    #9D174D;
  --plum-dark:   #500724;
  --gold:        #C9953A;
  --gold-light:  #FEF3C7;
  --cream:       #FFFBF8;
  --white:       #FFFFFF;
  --text:        #2D0A1A;
  --text-mid:    #7C3062;
  --text-soft:   #B07898;
  --shadow:      rgba(180, 40, 100, 0.12);
  --shadow-deep: rgba(180, 40, 100, 0.28);
  --r:           18px;
  --r-sm:        10px;
  --ease:        cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--rose-light); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 4px; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 70px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,251,248,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--blush);
  transition: box-shadow .35s var(--ease);
}

.navbar.scrolled { box-shadow: 0 4px 24px var(--shadow); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--rose);
  box-shadow: 0 0 0 3px var(--blush);
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--plum-dark);
  white-space: nowrap;
}

.nav-logo-text span { color: var(--rose); }

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .6px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: width .3s var(--ease), left .3s var(--ease);
}

.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-social {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.nav-social a {
  color: var(--text-soft);
  font-size: 1.05rem;
  transition: color .3s, transform .3s;
}

.nav-social a:hover { color: var(--rose); transform: scale(1.2); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 901;
}

.hamburger span {
  display: block;
  width: 23px; height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: all .35s var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 70px; left: 0; right: 0;
  z-index: 899;
  background: var(--white);
  border-bottom: 1px solid var(--blush);
  box-shadow: 0 10px 30px var(--shadow);
  padding: 22px 28px 28px;
  transform: translateY(-110%);
  transition: transform .4s var(--ease);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul a {
  display: block;
  padding: 13px 0;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--rose-light);
  transition: color .3s;
}

.mobile-menu ul a:hover { color: var(--rose); }

.mobile-soc {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.mobile-soc a { font-size: 1.4rem; color: var(--plum-mid); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FFF0F9 0%, #FCE7F3 35%, #FFD6E9 65%, #FFF5FB 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,114,182,.22), transparent 70%);
  top: -120px; right: -100px;
}

.hero-blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,149,58,.15), transparent 70%);
  bottom: -80px; left: -60px;
}

.hero-blob-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,165,192,.25), transparent 70%);
  top: 40%; left: 15%;
}

.petals-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -20px;
  width: 10px; height: 14px;
  background: rgba(244, 114, 182, .35);
  border-radius: 50% 0 50% 0;
  animation: petalFall linear infinite;
}

@keyframes petalFall {
  0%   { transform: translateY(0) rotate(0deg) translateX(0); opacity: .8; }
  100% { transform: translateY(110vh) rotate(540deg) translateX(80px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.hero-logo-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(244,114,182,.4);
  animation: spinRing 18s linear infinite;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.hero-logo-ring::before,
.hero-logo-ring::after {
  content: '✦';
  position: absolute;
  font-size: .7rem;
  color: var(--rose);
}

.hero-logo-ring::before { top: -7px; left: 50%; transform: translateX(-50%); }
.hero-logo-ring::after  { bottom: -7px; left: 50%; transform: translateX(-50%); }

.hero-logo {
  width: 128px; height: 128px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 8px 36px var(--shadow-deep), 0 0 0 10px rgba(244,114,182,.12);
  animation: logoFloat 5s ease-in-out infinite;
  display: block;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gold), #E8A44A);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(201,149,58,.35);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 700;
  color: var(--plum-dark);
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
  display: block;
}

.hero p {
  font-size: clamp(.88rem, 2vw, 1rem);
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 38px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-pink {
  background: linear-gradient(135deg, #F472B6, #BE185D);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .5px;
  box-shadow: 0 8px 24px rgba(190,24,93,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-pink:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(190,24,93,.52);
}

.btn-outline {
  background: transparent;
  color: var(--plum);
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  border: 2px solid var(--blush);
  transition: all .3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--rose-light);
  border-color: var(--rose);
  transform: translateY(-3px);
}

.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
  font-size: .7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}

.scroll-hint i { font-size: 1rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════
   SECTIONS BASE
═══════════════════════════════════════ */
section { padding: 88px 24px; }

.container { max-width: 1240px; margin: 0 auto; }

.sec-head { text-align: center; margin-bottom: 60px; }

.sec-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--plum-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}

.sec-title em { font-style: italic; color: var(--rose); }

.sec-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px 0 12px;
}

.sec-line::before, .sec-line::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blush));
}

.sec-line::after { background: linear-gradient(to left, transparent, var(--blush)); }

.sec-sub {
  font-size: .9rem;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
#menu { background: var(--cream); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 30px;
}

.p-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 22px var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.p-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 40px var(--shadow-deep);
}

.p-cover {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
  background: var(--rose-light);
}

.p-cover-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
  display: block;
}

.p-card:hover .p-cover-img { transform: scale(1.07); }

.p-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(80,7,36,.55) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity .3s;
}

.p-card:hover .p-overlay { opacity: 1; }

.p-view-btn {
  background: rgba(255,255,255,.92);
  color: var(--plum);
  border: none;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
  font-family: 'Nunito', sans-serif;
}

.p-view-btn:hover { background: white; }

.p-media-count {
  background: rgba(0,0,0,.5);
  color: white;
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.p-body { padding: 20px 22px 22px; }

.p-emoji { font-size: 1.4rem; margin-bottom: 4px; }

.p-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--plum-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.p-desc {
  font-size: .8rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}

.p-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.p-price {
  background: linear-gradient(135deg, var(--rose-light), var(--peach));
  color: var(--plum);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--blush);
  line-height: 1.3;
}

.p-price small {
  display: block;
  font-weight: 500;
  font-size: .65rem;
  color: var(--text-soft);
}

.p-thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.p-thumbs::-webkit-scrollbar { display: none; }

.p-thumb {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .25s, transform .25s;
}

.p-thumb:hover { border-color: var(--rose); transform: scale(1.06); }

.p-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.p-thumb-vid {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--plum-dark), var(--plum-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-thumb-vid i { color: white; font-size: .9rem; }

.p-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: .75rem;
  color: var(--text-soft);
  font-style: italic;
  line-height: 1.5;
}

.p-note i { color: #25D366; font-size: .85rem; flex-shrink: 0; }

/* ═══════════════════════════════════════
   CUSTOM ORDER BANNER
═══════════════════════════════════════ */
.custom-banner {
  background: linear-gradient(145deg, var(--plum-dark) 0%, #9D174D 45%, #BE185D 100%);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.custom-banner::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(244,114,182,.15), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.custom-banner::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -15%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201,149,58,.12), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.custom-banner .sec-title { color: white; position: relative; z-index: 2; }
.custom-banner .sec-sub   { color: rgba(255,255,255,.75); position: relative; z-index: 2; max-width: 580px; }

.custom-feats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
  position: relative;
  z-index: 2;
}

.custom-feat {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  padding: 16px 22px;
  border-radius: var(--r-sm);
  font-size: .83rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.custom-feat i { color: var(--gold); font-size: 1.1rem; }

.btn-wa {
  position: relative;
  z-index: 2;
  background: #25D366;
  color: white;
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,.6);
}

/* ═══════════════════════════════════════
   SOCIAL
═══════════════════════════════════════ */
.social-sec {
  background: var(--rose-pale);
  padding: 88px 24px;
  text-align: center;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.soc-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 30px 36px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 18px var(--shadow);
  border: 2px solid transparent;
  transition: all .35s var(--ease);
  min-width: 190px;
}

.soc-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 36px var(--shadow-deep);
}

.soc-card.ig:hover   { border-color: #E1306C; }
.soc-card.tk:hover   { border-color: #010101; }
.soc-card.snap:hover { border-color: #FFFC00; }
.soc-card.wa:hover   { border-color: #25D366; }

.soc-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.soc-card.ig .soc-icon   { background: linear-gradient(135deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888); color: white; }
.soc-card.tk .soc-icon   { background: #010101; color: white; }
.soc-card.snap .soc-icon { background: #FFFC00; color: #000; }
.soc-card.wa .soc-icon   { background: #25D366; color: white; }

.soc-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
}

.soc-handle {
  font-size: .75rem;
  color: var(--text-soft);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: 44px 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-logo img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose);
}

.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

footer p { font-size: .78rem; opacity: .55; margin-top: 6px; }
footer strong { color: var(--rose); opacity: 1; }

/* ═══════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 950;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(37,211,102,.55);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.float-wa::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,.35);
  animation: waRing 2.2s ease infinite;
}

@keyframes waRing {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37,211,102,.7);
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 950;
  width: 44px; height: 44px;
  background: var(--plum-mid);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px var(--shadow-deep);
  opacity: 0;
  transform: translateY(16px);
  transition: all .35s var(--ease);
}

.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--rose); }

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 2, 12, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.lb.open { opacity: 1; pointer-events: all; }

.lb-inner {
  position: relative;
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.lb-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,.8);
}

.lb-close {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  flex-shrink: 0;
}

.lb-close:hover { background: var(--rose); border-color: var(--rose); transform: rotate(90deg); }

.lb-stage {
  position: relative;
  width: 100%;
  max-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.2);
  border-radius: var(--r);
  overflow: hidden;
}

.lb-img {
  max-width: 100%;
  max-height: 62vh;
  object-fit: contain;
  border-radius: var(--r);
  display: block;
}

.lb-vid {
  max-width: 100%;
  max-height: 62vh;
  border-radius: var(--r);
  display: block;
  background: #000;
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s;
  z-index: 2;
}

.lb-arrow:hover { background: var(--rose); border-color: var(--rose); }

.lb-prev { left: 10px; }
.lb-next { right: 10px; }

.lb-counter {
  margin-top: 10px;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

.lb-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  max-width: 100%;
  padding: 4px 2px;
  scrollbar-width: none;
}

.lb-thumbs::-webkit-scrollbar { display: none; }

.lb-thumb {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .55;
  transition: all .25s;
}

.lb-thumb:hover, .lb-thumb.cur { opacity: 1; border-color: var(--rose); }

.lb-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.lb-thumb-vid {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--plum-dark), var(--plum-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-thumb-vid i { color: white; font-size: .85rem; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
}

@media (max-width: 768px) {
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; gap: 22px; }

  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
}

@media (max-width: 500px) {
  section { padding: 64px 16px; }
  .hero { padding: 82px 16px 56px; }
  .hero h1 { font-size: 2.3rem; }
  .lb { padding: 12px 8px; }
  .lb-arrow { display: none; }
}

.p-card:nth-child(1)  { transition-delay: .05s; }
.p-card:nth-child(2)  { transition-delay: .1s;  }
.p-card:nth-child(3)  { transition-delay: .15s; }
.p-card:nth-child(4)  { transition-delay: .2s;  }
.p-card:nth-child(5)  { transition-delay: .25s; }
.p-card:nth-child(6)  { transition-delay: .3s;  }
.p-card:nth-child(7)  { transition-delay: .35s; }
.p-card:nth-child(8)  { transition-delay: .4s;  }
.p-card:nth-child(9)  { transition-delay: .45s; }
.p-card:nth-child(10) { transition-delay: .5s;  }
.p-card:nth-child(11) { transition-delay: .55s; }