
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --rose:        #D4607A;
  --rose-light:  #FAE8EE;
  --rose-dark:   #8A3A50;
  --rose-mid:    #C4526C;
  --peach:       #F5A882;
  --lavender:    #C4A8D4;
  --sage:        #7BA87E;
  --cream:       #FDF8F3;
  --warm:        #F8EFE4;
  --charcoal:    #1E1B1A;
  --soft-dark:   #2E2A28;
  --muted:       #9A8F8A;
  --wa:          #25D366;
  --fb:          #1877F2;
  --urgency:     #E07020;

  /* Gradient tokens */
  --grad-hero:    linear-gradient(135deg, #FDF0F5 0%, #FAF5FF 40%, #FFF5EC 100%);
  --grad-card:    linear-gradient(160deg, #fff 0%, #fdf6f9 100%);
  --grad-how:     linear-gradient(135deg, #8A3A50 0%, #C4607A 50%, #E89060 100%);
  --grad-cta:     linear-gradient(135deg, #C4607A 0%, #D4849A 50%, #E8A870 100%);
  --grad-pill-active: linear-gradient(135deg, #C4607A, #E07A50);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ══════════════════════════════
   STICKY BAR
══════════════════════════════ */
.sticky-bar {
  background: var(--charcoal);
  padding: 0.55rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 300;
  gap: 1rem;
}
.sticky-bar-left {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.sticky-bar-left strong { color: #fff; }
.sticky-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.s-btn {
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, opacity 0.15s;
}
.s-btn:hover { transform: scale(1.03); opacity: 0.92; }
.s-btn.wa { background: var(--wa); color: #fff; }
.s-btn.fb { background: var(--fb); color: #fff; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,96,122,0.12);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: sticky;
  top: 38px;
  z-index: 200;
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(196,82,108,0.10);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--soft-dark);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #f0e8ec;
  padding: 1.2rem 2rem;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
  z-index: 190;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
}

/* ══════════════════════════════
   TICKER
══════════════════════════════ */
.ticker {
  background: var(--grad-cta);
  color: rgba(255,255,255,0.95);
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 3.5rem;
  animation: ticker-scroll 22s linear infinite;
}
.ticker-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--grad-hero);
  min-height: 92vh;
  position: relative;
  overflow: hidden;
}

.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #F5C0D0 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: blob-drift 12s ease-in-out infinite alternate;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #D4B8F0 0%, transparent 70%);
  top: 50%; right: 5%;
  animation: blob-drift 15s ease-in-out infinite alternate-reverse;
}
.blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #F5C8A8 0%, transparent 70%);
  bottom: -50px; left: 30%;
  animation: blob-drift 10s ease-in-out infinite alternate;
}
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.07); }
}

.hero-text {
  padding: 5rem 3rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.3rem;
  position: relative;
  z-index: 1;
}
.pas-badge {
  display: inline-block;
  background: rgba(212,96,122,0.1);
  border: 1px solid rgba(212,96,122,0.25);
  color: var(--rose-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  width: fit-content;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
}
.hero-h1 em {
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero-agitate {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  padding-left: 1rem;
  border-left: 3px solid;
  border-image: var(--grad-cta) 1;
}
.hero-solution { font-size: 0.92rem; line-height: 1.72; color: var(--soft-dark); }
.hero-solution strong {
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-style: italic;
}
.hero-ctas { display: flex; flex-direction: column; gap: 0.6rem; }

.cta-wa-big {
  background: linear-gradient(135deg, #1DB954 0%, #25D366 60%, #34E278 100%);
  color: #fff;
  border-radius: 0.85rem;
  padding: 1.1rem 1.6rem;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  position: relative;
  overflow: hidden;
}
.cta-wa-big::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
}
.cta-wa-big:hover::before { transform: translateX(100%); }
.cta-wa-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.45);
}
.cta-icon { font-size: 1.1rem; }
.cta-label { flex: 1; }

.cta-wa-big::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 1rem;
  border: 2px solid rgba(37,211,102,0.6);
  animation: pulse-ring 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.07); }
}

.cta-fb-big {
  background: rgba(24,119,242,0.08);
  color: var(--fb);
  border: 1.5px solid rgba(24,119,242,0.3);
  border-radius: 0.85rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
}
.cta-fb-big:hover {
  background: rgba(24,119,242,0.13);
  transform: translateY(-1px);
}
.cta-sub {
  font-size: 0.66rem;
  color: #bbb;
  text-align: center;
  letter-spacing: 0.04em;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.stars { color: var(--rose); font-size: 0.82rem; letter-spacing: -1px; }
.sp-text { font-size: 0.74rem; color: var(--muted); }

.hero-image-side {
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-deco-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(212,96,122,0.15);
  bottom: -80px; right: -80px;
  pointer-events: none;
}
.hero-deco-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(212,96,122,0.1);
}
.owner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3rem;
  width: 100%;
  min-height: 580px;
  justify-content: flex-end;
}
.owner-photo {
  width: 260px;
  height: 340px;
  background: linear-gradient(160deg, #EDD5E0 0%, #D4B8E0 100%);
  border-radius: 130px 130px 0 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(196,82,108,0.18);
}
.owner-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.owner-photo-placeholder {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.15);
  padding: 0.25rem 0.7rem;
  border-radius: 1rem;
  position: absolute;
  bottom: 1rem;
  text-align: center;
}
.owner-tag {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.6);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.trust-quote {
  position: absolute;
  top: 2rem; right: 2rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,96,122,0.12);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  max-width: 170px;
  font-size: 0.71rem;
  line-height: 1.5;
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.trust-quote .q-name { font-size: 0.62rem; color: #bbb; margin-top: 0.35rem; }

/* ══════════════════════════════
   HOW TO ORDER
══════════════════════════════ */
.how {
  background: var(--grad-how);
  padding: 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='rgba(255,255,255,0.04)' cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.how-inner { position: relative; z-index: 1; }
.how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.8rem;
}
.how-title em { font-style: italic; opacity: 0.85; }
.how-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.step { display: flex; align-items: flex-start; gap: 1rem; flex: 1; }
.step-arrow {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.step-text { font-size: 0.87rem; line-height: 1.6; color: rgba(255,255,255,0.88); }
.step-text strong { display: block; color: #fff; font-weight: 600; margin-bottom: 0.15rem; font-size: 0.92rem; }

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
.section { padding: 3.5rem 4rem; }
.section.warm-bg { background: var(--warm); }
.opinions-section { background: #fff; }
.sec-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.2rem;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
}
.sec-sub {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ══════════════════════════════
   CATEGORY PILLS
══════════════════════════════ */
.cat-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.pill {
  padding: 0.42rem 1.1rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(212,96,122,0.2);
  font-size: 0.76rem;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  font-family: 'Outfit', sans-serif;
  color: var(--soft-dark);
  transition: all 0.18s;
  letter-spacing: 0.02em;
}
.pill:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-1px);
}
.pill.active {
  background: var(--grad-pill-active);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(196,82,108,0.3);
}

/* ══════════════════════════════
   PRODUCT GRID + CARDS
══════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.product-card {
  background: var(--grad-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,96,122,0.07);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(196,82,108,0.15);
}

.product-img {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.img-placeholder {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,10,15,0.15) 0%,
    rgba(20,10,15,0.65) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0.45rem;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}
.product-card:hover .product-overlay { opacity: 1; }

.ov-btn {
  width: 100%;
  padding: 0.6rem 0.5rem;
  border-radius: 0.6rem;
  font-size: 0.73rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: block;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.03em;
  transition: transform 0.15s, opacity 0.15s;
  backdrop-filter: blur(4px);
}
.ov-btn:hover { opacity: 0.9; transform: scale(1.02); }
.ov-btn.wa {
  background: linear-gradient(135deg, #1DB954, #25D366);
  color: #fff;
  box-shadow: 0 3px 10px rgba(37,211,102,0.4);
}
.ov-btn.fb {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  z-index: 3;
}
.badge.hit  { background: var(--rose); color: #fff; box-shadow: 0 2px 8px rgba(212,96,122,0.45); }
.badge.new  { background: var(--sage); color: #fff; box-shadow: 0 2px 8px rgba(123,168,126,0.45); }
.badge.last { background: var(--urgency); color: #fff; box-shadow: 0 2px 8px rgba(224,112,32,0.45); }

.product-body { padding: 0.95rem 1rem; }
.product-name { font-size: 0.87rem; font-weight: 600; margin-bottom: 0.18rem; color: var(--charcoal); }
.product-meta { font-size: 0.71rem; color: var(--muted); margin-bottom: 0.65rem; }
.product-btns { display: flex; gap: 0.4rem; }
.pb {
  flex: 1;
  padding: 0.42rem;
  border-radius: 0.55rem;
  border: none;
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: all 0.15s;
  letter-spacing: 0.02em;
}
.pb:hover { transform: translateY(-1px); opacity: 0.88; }
.pb.wa { background: linear-gradient(135deg, #D4F5E2, #B8EED4); color: #0A6634; }
.pb.fb { background: linear-gradient(135deg, #D4E8FF, #B8D4FF); color: #1240A0; }

.pc1 { background: linear-gradient(160deg, #F5DDE8 0%, #ECC8D8 100%); }
.pc2 { background: linear-gradient(160deg, #D8EED8 0%, #C0E0C8 100%); }
.pc3 { background: linear-gradient(160deg, #F5EADE 0%, #EDD8C4 100%); }
.pc4 { background: linear-gradient(160deg, #D8E8F8 0%, #C0D4F0 100%); }
.pc5 { background: linear-gradient(160deg, #F5F0DE 0%, #EDE4C0 100%); }
.pc6 { background: linear-gradient(160deg, #EEE0F5 0%, #DCC8EC 100%); }
.pc7 { background: linear-gradient(160deg, #D8F0EC 0%, #C0E4DC 100%); }
.pc8 { background: linear-gradient(160deg, #F5E8DE 0%, #EDD4C4 100%); }

/* ══════════════════════════════
   OPINIONS
══════════════════════════════ */
.opinions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.opinion {
  background: var(--cream);
  border-radius: 14px;
  padding: 1.3rem;
  border: 1px solid rgba(212,96,122,0.08);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.opinion::before {
  content: '"';
  position: absolute;
  top: -0.3rem; left: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(212,96,122,0.1);
  line-height: 1;
  pointer-events: none;
}
.opinion:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(196,82,108,0.1);
}
.op-stars { color: var(--rose); font-size: 0.82rem; margin-bottom: 0.55rem; letter-spacing: 1px; }
.op-text { font-size: 0.83rem; line-height: 1.65; color: var(--soft-dark); margin-bottom: 0.65rem; font-style: italic; }
.op-name { font-size: 0.7rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ══════════════════════════════
   TIKTOK BANNER
══════════════════════════════ */
.tiktok-banner {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
  padding: 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.tt-bg-blobs { position: absolute; inset: 0; pointer-events: none; }
.tt-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}
.tt-blob-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ff0050 0%, transparent 70%);
  top: -100px; right: 10%;
  animation: blob-drift 14s ease-in-out infinite alternate;
}
.tt-blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #00f2ea 0%, transparent 70%);
  bottom: -80px; left: 15%;
  animation: blob-drift 10s ease-in-out infinite alternate-reverse;
}

.tt-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.tt-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.tt-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff0050, #ee1d52);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(255,0,80,0.4);
  animation: tt-icon-pulse 3s ease-in-out infinite;
}
@keyframes tt-icon-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(255,0,80,0.4); transform: scale(1); }
  50% { box-shadow: 0 12px 40px rgba(255,0,80,0.6); transform: scale(1.04); }
}
.tt-icon {
  width: 34px;
  height: 34px;
  color: #fff;
}

.tt-text { flex: 1; }
.tt-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00f2ea;
  margin-bottom: 0.4rem;
}
.tt-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.tt-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff0050, #ee1d52, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tt-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 380px;
}

.tt-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.tt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #ff0050, #ee1d52);
  color: #fff;
  border-radius: 3rem;
  padding: 0.9rem 1.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  box-shadow: 0 6px 24px rgba(255,0,80,0.4);
  white-space: nowrap;
}
.tt-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,0,80,0.55);
}

.tt-handle {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════
   BOTTOM CTA
══════════════════════════════ */
.bottom-cta {
  background: var(--grad-cta);
  padding: 4rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bc-blobs { position: absolute; inset: 0; pointer-events: none; }
.bc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
}
.bc-blob-1 {
  width: 350px; height: 350px;
  background: #fff;
  top: -80px; left: -50px;
}
.bc-blob-2 {
  width: 300px; height: 300px;
  background: #fff;
  bottom: -80px; right: -30px;
}
.bc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.bc-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.bc-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.bc-btn {
  padding: 1rem 2.4rem;
  border-radius: 3rem;
  border: none;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.bc-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.bc-btn.wa { background: #fff; color: var(--rose-dark); box-shadow: 0 4px 18px rgba(0,0,0,0.1); }
.bc-btn.fb { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--charcoal);
  padding: 1.4rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.f-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.f-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.71rem;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.f-social-link:hover {
  border-color: rgba(255,0,80,0.5);
  color: #ff0050;
  background: rgba(255,0,80,0.06);
  transform: translateY(-1px);
}
.f-social-link.ig:hover {
  border-color: rgba(196,82,108,0.5);
  color: var(--rose);
  background: rgba(196,82,108,0.06);
}

.f-copy { font-size: 0.7rem; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════
   FADE-IN ON SCROLL
══════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════ */
@media (max-width: 768px) {
  .sticky-bar { padding: 0.55rem 1rem; justify-content: center; }
  .sticky-bar-left { display: none; }
  .s-btn { flex: 1; text-align: center; }

  nav { padding: 0 1.2rem; top: 36px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { order: -1; min-height: 280px; }
  .owner-wrap { min-height: 280px; padding-bottom: 1.5rem; }
  .owner-photo { width: 180px; height: 240px; border-radius: 90px 90px 0 0; }
  .trust-quote { top: 0.8rem; right: 0.8rem; max-width: 140px; font-size: 0.65rem; }
  .hero-text { padding: 2rem 1.4rem; gap: 1.1rem; }
  .hero-h1 { font-size: 2.1rem; }
  .hero-deco-ring { display: none; }

  .how { padding: 2.5rem 1.4rem; }
  .how-steps { flex-direction: column; gap: 0.8rem; }
  .step-arrow { display: none; }

  .section { padding: 2.5rem 1.4rem; }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .product-img { height: 170px; }

  .opinions-grid { grid-template-columns: 1fr; }

  /* TikTok banner mobile */
  .tiktok-banner { padding: 2.5rem 1.4rem; }
  .tt-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .tt-left { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .tt-title { font-size: 1.4rem; }
  .tt-right { width: 100%; align-items: flex-start; }
  .tt-btn { width: 100%; justify-content: center; }

  .bottom-cta { padding: 2.5rem 1.4rem; }
  .bc-title { font-size: 1.7rem; }
  .bc-btns { flex-direction: column; }
  .bc-btn { width: 100%; text-align: center; }

  footer { padding: 1.2rem 1.4rem; flex-direction: column; gap: 0.8rem; text-align: center; }
  .f-social { justify-content: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .product-img { height: 150px; }
  .product-name { font-size: 0.8rem; }
  .product-body { padding: 0.75rem 0.75rem; }
}
/* ══════════════════════════════
   NAVBAR — chowanie przy scrollu
══════════════════════════════ */
nav {
  transition: transform 0.35s ease, box-shadow 0.3s;
}
nav.nav-hidden {
  transform: translateY(-100%);
}

/* ══════════════════════════════
   100VH SEKCJE
══════════════════════════════ */
.hero,
.section.warm-bg,
.section#kolekcja {
  min-height: 100vh;
}

/* ══════════════════════════════
   WARIANTY KOLORÓW
══════════════════════════════ */
.variant-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.variant-img.active {
  opacity: 1;
}

.color-picker {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
  padding: 0;
  outline: none;
}
.color-dot:hover {
  transform: scale(1.2);
}
.color-dot.active {
  border-color: var(--charcoal);
  transform: scale(1.15);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--rose);
}

/* ══════════════════════════════
   LIGHTBOX
══════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(8px);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}
.lightbox-name {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* Kursor "lupka" na zdjęciach */
.product-img {
  cursor: zoom-in;
}

/* Mobile lightbox */
@media (max-width: 768px) {
  .lightbox-img-wrap img {
    max-width: 95vw;
    max-height: 70vh;
  }
}
/* ══════════════════════════════
   KOLOROWE TŁA KART — 5 kolorów rotujących
   nth-child rotuje co 5 kart
══════════════════════════════ */
.product-card:nth-child(5n+1) { background: linear-gradient(160deg, #FDF0F4 0%, #F8E0E8 100%); }
.product-card:nth-child(5n+2) { background: linear-gradient(160deg, #F5F0E8 0%, #EDE4D0 100%); }
.product-card:nth-child(5n+3) { background: linear-gradient(160deg, #EEF5F0 0%, #D8EDE0 100%); }
.product-card:nth-child(5n+4) { background: linear-gradient(160deg, #F0F0F8 0%, #E0E0F0 100%); }
.product-card:nth-child(5n+5) { background: linear-gradient(160deg, #FDF5EC 0%, #F0E4D0 100%); }

/* ══════════════════════════════
   PRODUCT BODY — lepsza typografia
══════════════════════════════ */
.product-body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.color-picker {
  margin-bottom: 0.2rem;
}

.product-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ══════════════════════════════
   UKRYJ price-row (zamów →)
   Przyciski są w overlay — wystarczą
══════════════════════════════ */
/* ══════════════════════════════
   PRICE TAG
══════════════════════════════ */
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.price-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--grad-pill-active);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.38rem 0.85rem;
  border-radius: 2rem;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.price-order-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ══════════════════════════════
   COLOR DOTS — stabilny border
   żeby nie zlewały się z tłem karty
══════════════════════════════ */
.color-dot {
  box-shadow:
    0 0 0 1.5px rgba(0,0,0,0.15),
    0 1px 3px rgba(0,0,0,0.12);
  border: 2px solid transparent !important;
}

.color-dot.active {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px var(--rose) !important;
  transform: scale(1.18);
}

.color-dot:hover:not(.active) {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 3.5px rgba(196,82,108,0.5) !important;
  transform: scale(1.12);
}
/* ══════════════════════════════
   MOBILE OVERLAY — long press
   Na mobile overlay NIE pojawia się przez hover,
   tylko przez klasę .mobile-visible (long press)
══════════════════════════════ */
@media (max-width: 768px) {
  /* Wyłącz hover-overlay na mobile */
  .product-card:hover .product-overlay {
    opacity: 0;
    pointer-events: none;
  }

  /* Pokaż tylko gdy long-press doda klasę */
  .product-overlay.mobile-visible {
    opacity: 1 !important;
    pointer-events: all !important;
  }

  /* Hint — ikona długiego przytrzymania na obrazku */
  .product-img::after {
    content: '👆 przytrzymaj aby zamówić';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    color: rgba(255,255,255,0.85);
    font-size: 0.6rem;
    padding: 0.22rem 0.65rem;
    border-radius: 2rem;
    white-space: nowrap;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.02em;
  }

  /* Pokaż hint przy pierwszym hover/focus (np. scroll) */
  .product-card:hover .product-img::after,
  .product-card:focus-within .product-img::after {
    opacity: 1;
  }

  /* Kursor normalny na mobile (nie zoom-in) */
  .product-img {
    cursor: pointer;
  }
}