/* ==========================================================================
   PERFUMERIA LEJDIS — 3D KEYCHAIN STICKERS & HIGH-END YOUTH BEAUTY (2026)
   Designed for: Gen-Z (14-20) & Parents | Mobile-First | 60fps Animations
   ========================================================================== */

:root {
  --bg:            #100D16; /* Satin Midnight Dark */
  --surface:       #191422;
  --surface-card:  #221B2F;
  --surface-glass: rgba(25, 20, 34, 0.85);

  --text-main:     #FFFFFF;
  --text-soft:     #E5DCF3;
  --text-muted:    #A89ABF;

  --rose-glam:     #F472B6;
  --rose-glow:     rgba(244, 114, 182, 0.28);
  --berry-soft:    #C026D3;
  --lilac-past:    #D8B4FE;
  --gold-champagne:#FDE68A;
  --cyan-soft:     #6EE7B7;

  --gradient-sticker: linear-gradient(135deg, #F472B6 0%, #C026D3 50%, #9333EA 100%);
  --gradient-gold:    linear-gradient(135deg, #FDE68A 0%, #F59E0B 100%);
  --gradient-glass:   linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);

  --border-card:   rgba(255, 255, 255, 0.12);
  --border-glow:   rgba(244, 114, 182, 0.4);

  --radius-xl:     32px;
  --radius-lg:     24px;
  --radius-pill:   50px;

  --shadow-card:   0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-sticker:0 10px 25px rgba(244, 114, 182, 0.35);

  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-sans:    'Plus Jakarta Sans', -apple-system, sans-serif;

  --container-max: 1200px;
  --container-pad: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.gradient-text {
  background: var(--gradient-sticker);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Smooth Rounded Glass Cards */
.smooth-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.smooth-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: var(--border-glow);
  box-shadow: 0 22px 50px rgba(244, 114, 182, 0.22);
}

/* ==========================================================================
   3D KEYCHAIN STICKERS (BRELOCZKI Z OBRYSEM Z POTĘŻNYM EFEKTEM)
   ========================================================================== */
.keychain-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.keychain-sticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--gradient-sticker);
  padding: 7px 16px 7px 30px; /* Space for keychain ring hole */
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(244, 114, 182, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.4);
  border: 3px solid #FFFFFF;
  transform: rotate(-3deg);
  transform-origin: 12px 50%;
  animation: dangleKeychain 4s ease-in-out infinite alternate;
  will-change: transform;
  user-select: none;
}

/* Keychain Metallic Ring Hole (Kółeczko Breloczka) */
.keychain-sticker::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #100D16;
  border: 2.5px solid #FFFFFF;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.8);
}

.keychain-sticker.tilt-right {
  transform: rotate(3deg);
  animation-delay: -2s;
}

.keychain-tiktok {
  background: linear-gradient(135deg, #00F5D4, #FF2A85);
  color: #000000;
  border-color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 245, 212, 0.35);
}

.keychain-vegan {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.keychain-natural {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
}

.keychain-gold {
  background: var(--gradient-gold);
  color: #100D16;
  border-color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(253, 230, 138, 0.35);
}

@keyframes dangleKeychain {
  0% { transform: rotate(-4deg) translateY(0px); }
  50% { transform: rotate(2deg) translateY(-3px); }
  100% { transform: rotate(-2deg) translateY(2px); }
}

/* Touch Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  touch-action: manipulation;
}

.btn-glam {
  background: var(--gradient-sticker);
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(244, 114, 182, 0.35);
}

.btn-glam:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 36px rgba(244, 114, 182, 0.5);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--lilac-past);
  transform: translateY(-2px);
}

.btn-icon-bubble {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header & Navbar */
#social-bar {
  background: #08060B;
  color: var(--text-muted);
  font-size: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-soft);
  box-shadow: 0 0 10px var(--cyan-soft);
  margin-right: 6px;
}

.social-bar-links { display: flex; align-items: center; gap: 16px; }
.social-bar-links a:hover { color: var(--rose-glam); }

#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  padding: 14px 0;
}

.navbar-container { display: flex; align-items: center; justify-content: space-between; }
.brand-logo { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.brand-sub { font-size: 11px; font-weight: 700; color: var(--lilac-past); letter-spacing: 0.15em; text-transform: uppercase; margin-left: 6px; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 14px; font-weight: 600; color: var(--text-soft); transition: color 0.2s ease; }
.nav-link:hover { color: var(--rose-glam); }

/* Hero Section with Rich Photography */
#hero {
  padding: 72px 0 88px;
  position: relative;
  background: radial-gradient(circle at 75% 25%, rgba(244, 114, 182, 0.18) 0%, rgba(192, 38, 211, 0.12) 40%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  margin: 20px 0;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--border-card);
}

.hero-img-box {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-visual-card:hover .hero-img-box img {
  transform: scale(1.05);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 13, 22, 0.2) 0%, rgba(16, 13, 22, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

/* Bento & Showcase Grid */
#lejdislab { padding: 88px 0; background: #0C0A10; }
.lab-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.lab-header h2 { font-size: clamp(2.2rem, 3.8vw, 3rem); margin: 16px 0 12px; }

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

.card-large { grid-column: span 2; }
.card-wide  { grid-column: span 3; }

.parent-zone { display: flex; justify-content: space-between; align-items: center; gap: 24px; }

#bestsellers { padding: 88px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.product-thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  height: 220px;
  background: #FFFFFF;
}

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

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-cat { background: rgba(0,0,0,0.8); color: #fff; font-weight: 700; font-size: 10px; padding: 4px 10px; border-radius: var(--radius-pill); }
.badge-trend { background: var(--gradient-sticker); color: #fff; font-weight: 800; font-size: 10px; padding: 4px 10px; border-radius: var(--radius-pill); }
.badge-vegan { background: #10B981; color: #fff; font-weight: 800; font-size: 10px; padding: 4px 10px; border-radius: var(--radius-pill); }
.badge-nat { background: #A855F7; color: #fff; font-weight: 800; font-size: 10px; padding: 4px 10px; border-radius: var(--radius-pill); }

.product-brand { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--rose-glam); letter-spacing: 0.12em; }
.product-name { font-size: 1.1rem; margin: 6px 0 14px; line-height: 1.35; color: #fff; }

.scent-pyramid {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 14px;
  font-size: 13px;
  margin-bottom: 20px;
}

.pyramid-title { font-weight: 800; color: var(--lilac-past); margin-bottom: 6px; font-size: 11px; text-transform: uppercase; }
.note-row { margin-bottom: 3px; color: var(--text-soft); }
.note-lbl { font-weight: 700; color: #fff; }

.product-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border-card); }
.bestsellers-cta { text-align: center; margin-top: 48px; }

#reviews { padding: 88px 0; background: #09070D; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card { background: var(--surface); border: 1px solid var(--border-card); border-radius: 24px; padding: 28px; }
.rev-stars { color: var(--gold-champagne); font-size: 18px; margin-bottom: 12px; }
.rev-text { font-size: 14px; color: var(--text-soft); font-style: italic; margin-bottom: 16px; line-height: 1.6; }
.rev-author { font-weight: 700; font-size: 14px; color: #fff; }
.rev-source { font-size: 12px; color: var(--rose-glam); }

#contact { padding: 88px 0; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border-radius: 14px; border: 1px solid var(--border-card); background: var(--surface); color: #fff; font-family: var(--font-sans); font-size: 15px;
}

#footer { background: #050407; color: var(--text-muted); padding: 64px 0 32px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px; margin-bottom: 48px; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .bento-lab-grid { grid-template-columns: 1fr; }
  .card-large, .card-wide { grid-column: span 1; }
  .parent-zone { flex-direction: column; text-align: center; gap: 20px; }
  .nav-links { display: none; }
  .smooth-card { padding: 24px; border-radius: 24px; }
}
