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


:root {
  --color-bg: #050016;
  --color-bg-soft: #0b0224;
  --color-primary: #ff6bff;
  --color-secondary: #ffb347;
  --color-accent: #7b5cff;
  --color-text: #ffffff;
  --color-muted: #a7a6c4;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.6);
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #2b1b7b 0, #050016 55%, #020008 100%);
  color: var(--color-text);
  min-height: 100vh;
}

body.has-galaxy-bg {
  background: #050016 url("../assets/bg_galaxy.png") center/cover fixed no-repeat;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  flex: 1;
}


main {
  padding: 96px clamp(16px, 3vw, 40px) 48px;
  max-width: 1600px;          /* erlaubt mehr Breite */
  margin: 0 auto;
  width: 100%;
}



/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;

  backdrop-filter: blur(9px);

  background:
    linear-gradient(
      rgba(5,0,30,0.85),
      rgba(5,0,30,0.85)
    ),
   
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 30px rgba(0,0,0,0.55);
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0;              /* GANZ OBEN */
  left: 0;
  right: 0;

  height: 220px;       /* Drip-Höhe – frei wählbar */
  pointer-events: none;

  background: url("../assets/dropdrip.png") repeat-x top center;
  background-size: auto 150px;
  background-position: center -58px;

  z-index: 1;
}


.header-inner {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 12px clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255,107,255,0.7);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255,255,255,0.4);
  background: linear-gradient(
    90deg,
    #80c7ea, /* Purple */
    #4400ff, /* Orange */
    #fbff00, /* Neon Yellow */
    #68f755  /* zurück zu Purple */
  );
  background-size: 300% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* Neon Glow */
  text-shadow:
    0 0 6px rgba(255, 204, 0, 0.6),
    0 0 16px rgba(156, 225, 255, 0.592),
    0 0 32px rgba(255, 162, 0, 0.851);

  /* Animation */
  animation: rainbow-neon 5s linear infinite;
}
@keyframes rainbow-neon {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.brand-sub {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Navigation */

.nav-main {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  gap: 14px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  color: var(--color-muted);
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,107,255,0.4), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.nav-links a:hover::before {
  opacity: 1;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255,107,255,0.8), rgba(123,92,255,0.9));
  box-shadow: 0 0 22px rgba(255,107,255,0.6);
}

/* Cart badge */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-icon {
  position: relative;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11,2,36,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.cart-icon span {
  font-size: 0.8rem;
}

.cart-count {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6b6b, #ffb347);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;

  /* klare Ausrichtung */
  justify-items: center;   /* horizontal */
  align-items: flex-start; /* vertikal oben */

  gap: 24px;

  padding-top: 24px;
  padding-bottom: 0;
  margin-bottom: 0;

  text-align: center;
}


.hero-card {
  border-radius: 30px;
  padding: 26px 26px 24px;
  box-shadow: var(--shadow-soft);
  background: radial-gradient(circle at top left, rgba(255,107,255,0.18), rgba(5,0,20,0.96));
  backdrop-filter: blur(3px);
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.1vw, 2.8rem);
  margin-bottom: 10px;
}

.hero-gradient {
  background: linear-gradient(120deg, #ff6bff, #ffb347, #7b5cff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  color: var(--color-muted);
   margin-bottom: 20px;
}

.hero-pills {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.hero-pill {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(5,0,30,0.8);
}

.hero-cta {
 text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6bff, #7b5cff);
  color: #fff;
  box-shadow: 0 0 25px rgba(255,107,255,0.7);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(5,0,25,0.9);
  color: #ffffff;
}

/* Hero right – animated cart */

.hero-visual {
  position: relative;
  height: 260px;
  border-radius: 32px;
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  background: url("../assets/bg_galaxy.png") center/cover no-repeat;
  opacity: 0.35;
  filter: saturate(1.2);
}

.globe-cart {
  position: absolute;
  left: -140px;          /* Start ausserhalb links */
  bottom: 18%;
  width: 100px;
  animation: cart-run 18s linear infinite;
  pointer-events: none;
}


@keyframes cart-run {
  0% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
  }

  10% {
    transform: translateX(15vw) translateY(-6px);
  }

 20% {
    transform: translateX(30vw) translateY(4px);
  }

 30% {
    transform: translateX(45vw) translateY(-4px);
  }

 40% {
    transform: translateX(60vw) translateY(3px);
  }

 55% {
    transform: translateX(75vw) translateY(-2px);
  }

  70% {
    transform: translateX(90vw) translateY(-1px);
  }

  85% {
    transform: translateX(100vw) translateY(2px) scale(0.7);
    opacity: 0.9;
  }

  100% {
    transform: translateX(102vw) translateY(-4px) scale(0.4);
    opacity: 0;
  }
}


/* Drip bar under header */

.drip-bar {
  position: relative;
  height: 12px;
  overflow: hidden;

  background: linear-gradient(
    90deg,
    #ff4fd8,  /* Purple */
    #9b5bff,  /* Orange */
    #ff9b3d,  /* Yellow */
    #3dffb8,  /* Green */
    #38bdf8,  /* Blue */
    #a855f7   /* zurück zu Purple */
  );

  background-size: 400% 100%;
  animation: dripGradient 8s linear infinite;

  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}


.drip-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;

  height: 22px;
  background: url("../assets/dropdrip.png") repeat-x top center;
  background-size: auto 22px;

  opacity: 0.9;
  pointer-events: none;
}

@keyframes dripGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}


/* Sections */

.section {
  margin-top: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.2rem;
}

.section-sub {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Category tiles */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  padding: 16px;
  border-radius: 20px;
  background: rgba(5,0,30,0.9);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  cursor: pointer;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(255,107,255,0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.category-card:hover::before {
  opacity: 1;
  transform: translateY(6px);
}

.category-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.category-meta {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Product grid */

.product-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}
.product-grid {
  width: 100%;
  max-width: 100%;
}


.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

@media (max-width: 1400px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  background: rgba(5,0,25,0.96);
  border-radius: 20px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.product-image {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: radial-gradient(circle at top, rgba(255,107,255,0.25), rgba(5,0,25,1));
}

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

.product-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.product-meta {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
}

.badge-accent {
  background: linear-gradient(135deg, #ff6bff, #7b5cff);
}

/* Forms */

.form-card {
  background: rgba(5,0,25,0.96);
  border-radius: 26px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(210px,1fr));
  gap: 14px 18px;
  margin-top: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 0.8rem;
}

.form-input,
.form-textarea,
.form-select {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(5,0,20,0.9);
  color: #ffffff;
  padding: 8px 10px;
  font-size: 0.85rem;
}

.form-textarea {
  min-height: 96px;
  resize: vertical;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 24px 24px;
  margin-top: 40px;
  background: radial-gradient(circle at top, rgba(255,107,255,0.16), rgba(5,0,15,0.98));
  font-size: 0.75rem;
  color: var(--color-muted);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

/* Responsive */

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
  }
  .hero-visual {
    order: -1;
    height: 220px;
  }
  main {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-inner {
    padding-inline: 16px;
  }
}
/* === Discovery Zone === */

.discovery-zone {
  padding-top: 16px;   /* extrem kompakt */
  padding-bottom: 48px;
  margin-top: -275px;   /* KEY: zieht Sektion hoch */
}


.discovery-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.discovery-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 0 18px rgba(255,120,255,0.6);
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.discovery-card {
  background: rgba(10, 10, 25, 0.65);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discovery-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 60px rgba(255,0,255,0.25);
}

.discovery-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #fff;
}

.discovery-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}

.discovery-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6bff, #ffb347, #7b5cff);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(255,150,255,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.discovery-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(255,200,255,0.9);
}
.highlights-section {
  position: relative;

  margin-top: -120px;   /* 🔥 WICHTIG */
  padding-top: 0;

  z-index: 2;
}
/* ========================================================= */
/* =============== SHOP PAGINATION EXTENSION =============== */
/* ========================================================= */

/* Container unter dem Produktgrid */
.shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Seiten-Buttons */
.shop-page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(5,0,25,0.9);
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.18s ease;
}

.shop-page-btn:hover {
  background: linear-gradient(135deg, #ff6bff, #7b5cff);
  box-shadow: 0 0 18px rgba(255,107,255,0.5);
}

/* Aktuelle Seite */
.shop-page-btn.is-active {
  background: linear-gradient(135deg, #ff6bff, #ffb347);
  color: #000;
  font-weight: 700;
  cursor: default;
  box-shadow: 0 0 22px rgba(255,180,255,0.8);
}

/* Disabled (z. B. Zurück auf Seite 1) */
.shop-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

/* Zurück / Weiter */
.shop-page-nav {
  padding-inline: 16px;
  font-weight: 600;
}

/* ========================================================= */
/* =============== PRODUCT COUNT DISPLAY =================== */
/* ========================================================= */

.shop-count-info {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 6px;
}

/* Beispiel:
   "35 von 312 Produkten"
*/

/* ========================================================= */
/* =============== RESPONSIVE SAFETY ======================= */
/* ========================================================= */

@media (max-width: 600px) {
  .shop-pagination {
    gap: 6px;
  }

  .shop-page-btn {
    min-width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }
}
.section,
.section-header,
#shopSectionGrid {
  max-width: 100%;
}

