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

:root {
  --pink:      #ba2b5a;
  --pink-bright: #fc608d;
  --cyan:      #29d2f2;
  --cyan-dark: #00b8d2;
  --dark:      #490748;
  --dark2:     #2d0435;
  --white:     #ffffff;
  --gray:      #6b7280;
  --light:     #fdf5f8;
  --radius:    16px;
  --shadow:    0 8px 32px rgba(186,43,90,.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--white); color: #1a0a1e; overflow-x: hidden; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-bright));
  color: #fff;
  box-shadow: 0 4px 20px rgba(186,43,90,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(186,43,90,.55); }
.btn-outline {
  background: transparent;
  border-color: var(--cyan);
  color: var(--cyan-dark);
}
.btn-outline:hover { background: var(--cyan); color: var(--dark); transform: translateY(-2px); }
.btn-nav {
  background: linear-gradient(135deg, var(--pink), var(--pink-bright));
  color: #fff;
  padding: 10px 22px;
  font-size: .9rem;
  border: none;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(186,43,90,.45); }

/* ===== LABELS & TITLES ===== */
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--pink-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub { color: var(--gray); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }
.highlight {
  background: linear-gradient(135deg, var(--pink), var(--pink-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-cyan {
  background: linear-gradient(135deg, var(--cyan), #7feeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAV ===== */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}
.nav-wrapper.scrolled {
  background: rgba(73,7,72,.96);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
}
.nav-logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: rgba(255,255,255,.88); font-weight: 700; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--cyan); }
.burger { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; margin-left: auto; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 24px;
  background: rgba(73,7,72,.97);
  backdrop-filter: blur(14px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-weight: 700; font-size: 1.1rem; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu .btn { margin-top: 8px; text-align: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 45%, #1a0a3e 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -40%; left: -15%;
  width: 70%; height: 140%;
  background: radial-gradient(ellipse, rgba(186,43,90,.35) 0%, transparent 70%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 65%; height: 120%;
  background: radial-gradient(ellipse, rgba(41,210,242,.2) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-badge {
  display: inline-block;
  background: rgba(41,210,242,.12);
  border: 1px solid rgba(41,210,242,.35);
  color: var(--cyan);
  font-weight: 700;
  font-size: .9rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero-sub { color: rgba(255,255,255,.7); font-size: 1.15rem; line-height: 1.7; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--pink-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span { color: rgba(255,255,255,.55); font-size: .9rem; font-weight: 600; }

/* Hero logo background */
.hero-logo-bg {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: .12;
  z-index: 1;
  pointer-events: none;
}
.hero-logo-bg img { width: 100%; }

/* Floating emojis */
.hero-emojis { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-emojis span {
  position: absolute;
  left: var(--x); top: var(--y);
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--d);
  opacity: .55;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== WAVE ===== */
.wave-top { margin-top: -2px; line-height: 0; }
.wave-top svg { width: 100%; height: 80px; }

/* ===== CATEGORIES ===== */
.categories { padding: 80px 0 100px; background: var(--white); }
.categories .container { text-align: center; }
.categories .section-sub { margin: 0 auto 60px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; text-align: left; }
.card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid transparent;
  position: relative;
  transition: all .35s;
  opacity: 0;
  transform: translateY(24px);
}
.card.visible { opacity: 1; transform: translateY(0); }
.card:hover { border-color: var(--pink-bright); box-shadow: var(--shadow); transform: translateY(-4px); }
.card.featured { background: linear-gradient(135deg, var(--dark2), var(--dark)); color: #fff; }
.card.featured p, .card.featured li { color: rgba(255,255,255,.7); }
.card-badge {
  position: absolute; top: -12px; right: 20px;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  color: #fff;
  font-size: .75rem; font-weight: 900;
  padding: 4px 14px; border-radius: 50px;
  letter-spacing: .05em; text-transform: uppercase;
}
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: .95rem; line-height: 1.6; margin-bottom: 16px; }
.card ul { display: flex; flex-wrap: wrap; gap: 8px; }
.card ul li {
  background: rgba(186,43,90,.1);
  color: var(--pink);
  font-size: .8rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
}
.card.featured ul li { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }

/* ===== BRANDS TICKER ===== */
.brands { padding: 80px 0; background: var(--light); overflow: hidden; }
.brands .container { text-align: center; }
.brands .section-sub { margin: 0 auto 48px; }
.brands-ticker {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.brands-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.brands-track span {
  display: inline-block;
  padding: 12px 24px; margin: 8px;
  background: #fff;
  border-radius: 50px;
  font-weight: 800; font-size: 1rem;
  border: 2px solid rgba(186,43,90,.12);
  white-space: nowrap; color: #1a0a1e;
  transition: all .2s;
}
.brands-track span:hover {
  background: linear-gradient(135deg, var(--pink), var(--pink-bright));
  color: #fff; border-color: transparent; transform: scale(1.05);
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== WHY ===== */
.why { padding: 100px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .section-sub { margin-bottom: 40px; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  opacity: 0; transform: translateX(-20px); transition: all .4s;
}
.why-item.visible { opacity: 1; transform: translateX(0); }
.why-icon {
  font-size: 1.8rem; flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--light);
  border: 2px solid rgba(186,43,90,.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.why-item strong { display: block; font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.why-item p { color: var(--gray); font-size: .9rem; line-height: 1.5; }

.why-visual {
  position: relative;
  height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.why-logo-wrap {
  width: 260px;
  z-index: 1;
  filter: drop-shadow(0 12px 40px rgba(186,43,90,.3));
  animation: pulse-logo 4s ease-in-out infinite;
}
.why-logo-wrap img { width: 100%; }
@keyframes pulse-logo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.why-bubble {
  position: absolute;
  font-size: 2rem;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(186,43,90,.2);
  animation: orbit 7s ease-in-out infinite;
}
.b1 { width: 68px; height: 68px; top: 30px; left: 40px; animation-delay: 0s; }
.b2 { width: 76px; height: 76px; top: 60px; right: 20px; animation-delay: -2s; }
.b3 { width: 62px; height: 62px; bottom: 70px; left: 20px; animation-delay: -4s; }
.b4 { width: 72px; height: 72px; bottom: 40px; right: 50px; animation-delay: -1s; }
.b5 { width: 58px; height: 58px; top: 46%; left: 0px; animation-delay: -3s; }
@keyframes orbit {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.06); }
}

/* ===== VAPES ===== */
.vapes-section {
  background: linear-gradient(135deg, var(--dark2), var(--dark), #0a1a3e);
  padding: 100px 0; text-align: center;
}
.vape-label {
  background: linear-gradient(135deg, var(--cyan), #7feeff) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.vapes-section .section-sub { margin: 0 auto 48px; color: rgba(255,255,255,.6); }
.vape-sub { color: rgba(255,255,255,.6) !important; }
.vape-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 40px; }
.vape-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(41,210,242,.2);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: all .3s;
  opacity: 0; transform: translateY(24px);
}
.vape-card.visible { opacity: 1; transform: translateY(0); }
.vape-card:hover { background: rgba(41,210,242,.08); border-color: var(--cyan); transform: translateY(-4px); }
.vape-icon { font-size: 2.5rem; margin-bottom: 16px; }
.vape-card h4 { color: #fff; font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.vape-card p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.6; }
.vape-disclaimer { color: rgba(255,255,255,.35); font-size: .82rem; max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* ===== KONTAKT ===== */
.kontakt { padding: 100px 0; background: var(--light); }
.kontakt .container { text-align: center; }
.kontakt .section-sub { margin: 0 auto 60px; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; text-align: left; }
.kontakt-info { display: flex; flex-direction: column; gap: 16px; }
.kontakt-item {
  display: flex; gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid rgba(186,43,90,.1);
  opacity: 0; transform: translateY(16px); transition: all .35s;
}
.kontakt-item.visible { opacity: 1; transform: translateY(0); }
.kontakt-item > span { font-size: 1.5rem; flex-shrink: 0; }
.kontakt-item strong { display: block; font-weight: 800; margin-bottom: 4px; }
.kontakt-item p { color: var(--gray); font-size: .9rem; line-height: 1.6; }
.kontakt-item a { color: var(--pink); font-weight: 700; }
.kontakt-item a:hover { color: var(--pink-bright); }
.map-link { display: inline-block; margin-top: 6px; font-size: .85rem; font-weight: 700; color: var(--cyan-dark) !important; }
.social-links { display: flex; gap: 10px; margin-top: 10px; }
.social-btn {
  padding: 7px 18px; border-radius: 50px;
  border: 2px solid var(--pink);
  color: var(--pink); font-weight: 700; font-size: .85rem;
  transition: all .2s;
}
.social-btn:hover { background: var(--pink); color: #fff; }

.kontakt-cta-box {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  color: #fff;
}
.cta-logo { width: 180px; margin-bottom: 8px; filter: drop-shadow(0 4px 16px rgba(186,43,90,.4)); }
.kontakt-cta-box h3 { font-size: 1.55rem; font-weight: 900; }
.kontakt-cta-box p { color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.6; }
.kontakt-cta-box p strong { color: var(--cyan); }

/* ===== MAP ===== */
.map-wrapper { line-height: 0; }
.map-wrapper iframe { display: block; filter: saturate(.85) contrast(.95); }

/* ===== FOOTER ===== */
.footer { background: var(--dark2); color: rgba(255,255,255,.55); padding: 60px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { width: 160px; margin-bottom: 16px; filter: drop-shadow(0 2px 8px rgba(186,43,90,.3)); }
.footer-brand p { font-size: .9rem; line-height: 1.6; max-width: 300px; }
.footer-adresse { margin-top: 12px; font-size: .88rem; line-height: 1.7; }
.footer-adresse a { color: var(--cyan); font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { color: #fff; font-weight: 800; font-size: 1rem; margin-bottom: 6px; }
.footer-links a { font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  padding: 20px 0; font-size: .82rem;
}
.footer-bottom a { color: var(--pink-bright); }
.footer-disclaimer { color: rgba(255,255,255,.28); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { height: 280px; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-logo-bg { opacity: .06; width: 380px; right: -40px; }
}

@media (max-width: 640px) {
  .nav-links, .btn-nav { display: none; }
  .burger { display: block; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
  .cards { grid-template-columns: 1fr; }
  .vape-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-visual { display: none; }
  .hero-logo-bg { display: none; }
}
