@import url('fonts/fonts.css');

/* =====================================================================
   SONGSTORY — styles.css
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Palette: dark purple/violet bg, teal accents, gold labels
   Theme colour: #780096
===================================================================== */

/* --- Custom Properties -------------------------------------------- */
:root {
  --ss-hero-h: 70vh;
  --ss-header-h: 120px;

  --glass-light: rgba(255,255,255,.80);
  --glass-mid:   rgba(20,24,48,.34);
  --glass-deep:  rgba(10,14,34,.56);
  --glass-border: rgba(255,255,255,.30);

  --teal-start: #b9f4ef;
  --teal-end:   #2fbfb6;
  --violet-start: #d4a8ff;
  --violet-end:   #7b3bb4;
  --gold: #ffe08a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* --- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background: transparent;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(160deg, #166b75 0%, #45a8a6 28%, #6e8adb 58%, #7b3bb4 100%);
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
  transform: translateZ(0);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Container ---------------------------------------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================================
   HEADER
===================================================================== */
.header-main {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.16);
  will-change: transform;
  transition: background .3s, border-color .3s;
}
.header-main.scrolled {
  background: rgba(15,10,30,.92);
  border-bottom-color: rgba(255,255,255,.08);
}

.header--navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

/* Logo */
.logo-main { flex-shrink: 0; }
.logo--link { display: flex; align-items: center; }
.logo--img  { height: 48px; width: auto; filter: brightness(0) invert(1); transition: filter .3s; }
.header-main.scrolled .logo--img { filter: none; }

/* Nav */
.navigation-main { flex: 1; }
.navigation-main .navigation--list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.navigation--entry .navigation--link {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.navigation--entry .navigation--link:hover,
.navigation--entry.is--active .navigation--link {
  color: #fff;
  background: rgba(255,255,255,.10);
}

/* Shop nav (right) */
.shop--navigation {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.entry--account .entry--link,
.entry--cart .cart--link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  border-radius: 8px;
  transition: color .2s, background .2s;
  background: none;
  border: none;
}
.entry--account .entry--link:hover,
.entry--cart .cart--link:hover {
  color: #fff;
  background: rgba(255,255,255,.10);
}
.cart--amount { font-size: 12.5px; }

/* Burger btn */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px 8px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.18);
}
.burger-bar {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* =====================================================================
   HERO
===================================================================== */
.ss-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: var(--ss-hero-h);
  overflow: hidden;
  z-index: 1;
}
.ss-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 65%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 65%, rgba(0,0,0,0) 100%);
}
.ss-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 22% 12%, rgba(255,255,255,.10), transparent 58%),
    linear-gradient(160deg, rgba(22,107,117,.18), rgba(123,59,180,.22)),
    rgba(80,0,120,.28);
  z-index: 1;
  pointer-events: none;
}
.ss-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--ss-header-h) 20px 40px;
}
.ss-hero-h1 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
  margin-bottom: 32px;
}
.ss-hero-h1 em {
  font-style: italic;
  color: #ffe08a;
}
.ss-hero-btns {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% - 40px);
  pointer-events: auto;
}
.ss-hero-btn {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 32px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
}
.ss-hero-btn:hover { opacity: .88; transform: translateY(-2px); }
.ss-hero-btn.primary {
  color: #0a3030;
  background: linear-gradient(135deg, #b9f4ef 0%, #2fbfb6 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  animation: btn-pulse 3s ease-in-out infinite;
}
.ss-hero-btn.ghost {
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border: 2px solid rgba(197,138,255,.75);
  line-height: 46px;
}

/* Scroll indicator */
.ss-hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
  animation: scroll-bounce 2.2s ease-in-out infinite;
  opacity: .7;
}
.ss-hero-scroll-line {
  display: block;
  width: 1.5px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.7));
  border-radius: 2px;
}
.ss-hero-scroll-arrow {
  display: block;
  width: 9px; height: 9px;
  border-right: 2px solid rgba(255,255,255,.75);
  border-bottom: 2px solid rgba(255,255,255,.75);
  transform: rotate(45deg);
  margin-top: -3px;
}

/* Floating note decorations */
.ss-hero-deco {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
.ss-note {
  position: absolute;
  color: rgba(255,255,255,.38);
  font-style: normal;
  line-height: 1;
  animation: note-float 14s ease-in-out infinite;
  user-select: none;
  text-shadow: 0 0 20px rgba(180,240,255,.5);
  will-change: transform;
}
.ss-note--1 { font-size: 72px; top: 22%; left: 6%;   animation-delay: 0s;   animation-duration: 14s; }
.ss-note--2 { font-size: 52px; top: 40%; right: 7%;  animation-delay: -5s;  animation-duration: 11s; }
.ss-note--3 { font-size: 40px; top: 16%; right: 18%; animation-delay: -9s;  animation-duration: 17s; }

@keyframes note-float {
  0%, 100% { transform: translateY(0) rotate(-6deg); opacity: .32; }
  50%       { transform: translateY(-28px) rotate(6deg); opacity: .55; }
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .6; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1; }
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(0,0,0,.22), 0 0 0 0 rgba(47,191,182,.5); }
  50%       { box-shadow: 0 10px 24px rgba(0,0,0,.22), 0 0 22px 10px rgba(47,191,182,.15); }
}

/* =====================================================================
   MAIN WRAPPER
===================================================================== */
.ss-home {
  padding: 0 0 60px;
  font-family: var(--font-body);
  color: #ffffff;
  overflow-x: hidden;
}

/* =====================================================================
   SECTIONS
===================================================================== */
.ss-section {
  max-width: 1100px;
  margin: 64px auto 0;
  padding: 0 16px;
}
.ss-section--trust {
  margin-top: 40px;
}

.ss-section-label {
  display: block;
  font-size: 12px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.ss-section-label.center { text-align: center; }

.ss-section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 14px rgba(0,0,0,.25), 0 0 50px rgba(180,120,255,.20);
}
.ss-section-title.center { text-align: center; }

/* =====================================================================
   TRUST BOX
===================================================================== */
.ss-trust {
  max-width: 700px;
  margin: 0 auto;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 40px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.14);
  text-align: center;
}
.ss-stars {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  margin-bottom: 8px;
}
.ss-stars svg { width: 18px; height: 18px; display: block; }

.ss-rating-line {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.ss-rating-sub {
  font-size: 14px;
  color: rgba(255,255,255,.68);
  margin-bottom: 16px;
}
.ss-trust-facts {
  display: flex;
  justify-content: center;
  gap: 10px 28px;
  flex-wrap: wrap;
}
.ss-trust-fact {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ss-trust-fact::before {
  content: "✓";
  color: #7ffcf4;
  font-weight: 800;
}

/* =====================================================================
   DIVIDER
===================================================================== */
.ss-divider {
  width: 80%;
  height: 1px;
  margin: 52px auto;
  border: none;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.4), rgba(255,255,255,0));
}

/* =====================================================================
   3 SCHRITTE
===================================================================== */
.ss-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.ss-step {
  flex: 1;
  min-width: 240px;
  max-width: 340px;
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--glass-mid);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.ss-step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.28), 0 0 28px rgba(100,50,200,.18); border-color: rgba(255,255,255,.28); }

.ss-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.ss-step:nth-child(1) .ss-step-num { background: linear-gradient(135deg, #b9f4ef, #2fbfb6); }
.ss-step:nth-child(2) .ss-step-num { background: linear-gradient(135deg, #d4a8ff, #7b3bb4); }
.ss-step:nth-child(3) .ss-step-num { background: linear-gradient(135deg, #ffdca8, #ff9435); }

.ss-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.ss-step p {
  font-size: 15px;
  color: rgba(255,255,255,.80);
  line-height: 1.65;
  margin: 0;
}

/* =====================================================================
   PRODUKT-KARTEN
===================================================================== */
.ss-products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.ss-product {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
  border-radius: 20px;
  padding: 24px 22px 22px;
  background: var(--glass-deep);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.ss-product:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,.32), 0 0 32px rgba(100,50,200,.20); border-color: rgba(255,255,255,.30); }

.ss-product-deco {
  position: absolute;
  bottom: 0; right: 0;
  width: 120px;
  opacity: .22;
  pointer-events: none;
}

.ss-product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ss-product-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ss-product-badge.human {
  background: rgba(45,212,191,.22);
  border: 1px solid rgba(45,212,191,.45);
  color: #7ffcf4;
}
.ss-product-fav {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffe89a, #ffc84a);
  color: #4b3a00;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  white-space: nowrap;
}

.ss-product h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.ss-product p {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.ss-product-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #0a3030;
  background: linear-gradient(135deg, #7ffcf4 0%, #2fbfb6 100%);
  box-shadow: 0 6px 20px rgba(0,160,150,.3);
  transition: opacity .2s, transform .2s;
}
.ss-product-btn.purple {
  color: #ffffff;
  background: linear-gradient(135deg, #b56ee6 0%, #7b3bb4 100%);
  box-shadow: 0 6px 20px rgba(100,0,160,.35);
}
.ss-product-btn:hover { opacity: .9; transform: translateY(-1px); }

/* =====================================================================
   TEAM
===================================================================== */
.ss-team {
  display: flex;
  gap: 14px;
  flex-direction: column;
}
@media (min-width: 640px) {
  .ss-team { flex-direction: row; }
}

.ss-member {
  flex: 1;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: var(--glass-mid);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.ss-member:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.28); }

.ss-member::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.ss-member.tone-teal::before  { background: linear-gradient(180deg, #7ffcf4, #2dd4bf); }
.ss-member.tone-violet::before { background: linear-gradient(180deg, #d4a8ff, #a855f7); }

.ss-avatar {
  width: 90px; height: 90px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.ss-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ss-member-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.ss-member-role {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ss-member.tone-teal .ss-member-role {
  background: rgba(45,212,191,.22);
  border: 1px solid rgba(45,212,191,.45);
  color: #7ffcf4;
}
.ss-member.tone-violet .ss-member-role {
  background: rgba(168,85,247,.22);
  border: 1px solid rgba(168,85,247,.45);
  color: #d4a8ff;
}
.ss-member-desc {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  margin: 0;
}

/* =====================================================================
   VIDEO THUMBNAILS
===================================================================== */
.ss-video-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.ss-video-thumb {
  position: relative;
  width: 380px;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,.22);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ss-video-thumb:hover { transform: scale(1.02); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.ss-video-thumb::before { content: ""; display: block; padding-top: 100%; }
.ss-video-thumb > * { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.ss-video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ss-play {
  top: 50%; left: 50%;
  right: auto; bottom: auto;
  width: 62px; height: 62px;
  transform: translate(-50%,-50%);
  background: rgba(120,0,150,.80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.5);
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  transition: transform .2s ease;
  position: absolute;
}
.ss-video-thumb:hover .ss-play { transform: translate(-50%,-50%) scale(1.1); }
.ss-play-tri {
  width: 0; height: 0;
  margin-left: 5px;
  border-left: 14px solid #ffffff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

/* =====================================================================
   TESTIMONIALS
===================================================================== */
.ss-testimonials {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .ss-testimonials { grid-template-columns: repeat(12, 1fr); }
  .ss-testi.featured { grid-column: 1 / -1; }
  .ss-testi.compact  { grid-column: span 6; }
}

.ss-testi {
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--glass-mid);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.ss-testi:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.28); }
.ss-testi.featured { background: var(--glass-deep); }

.ss-testi::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.ss-testi.tone-violet::before { background: linear-gradient(180deg, #d4a8ff, #7b3bb4); }
.ss-testi.tone-teal::before   { background: linear-gradient(180deg, #7ffcf4, #2dd4bf); }
.ss-testi.tone-orange::before { background: linear-gradient(180deg, #ffdca8, #ff9435); }

.ss-testi-quote {
  position: absolute;
  top: 6px; right: 14px;
  font-size: 60px;
  color: rgba(255,255,255,.1);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.ss-testi-stars {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  background: linear-gradient(90deg,#ffd89e,#ff9435);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ss-testi p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px;
}
.ss-testi.featured p { font-size: 17px; }
.ss-testi-name { font-weight: 700; color: #ffffff; font-size: 14px; }
.ss-testi-loc  { font-size: 14px; color: rgba(255,255,255,.62); }

/* =====================================================================
   SCROLL ANIMATIONS
===================================================================== */
.ss-fade-up, .ss-fade-left, .ss-fade-right {
  opacity: 1;
  transform: none;
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.ss-home.ss-anim-ready .ss-fade-up,
.ss-v2.ss-anim-ready   .ss-fade-up    { opacity: 0; transform: translateY(36px); }
.ss-home.ss-anim-ready .ss-fade-left,
.ss-v2.ss-anim-ready   .ss-fade-left  { opacity: 0; transform: translateX(-36px); }
.ss-home.ss-anim-ready .ss-fade-right,
.ss-v2.ss-anim-ready   .ss-fade-right { opacity: 0; transform: translateX(36px); }
.ss-home.ss-anim-ready .ss-fade-up.ss-visible,
.ss-home.ss-anim-ready .ss-fade-left.ss-visible,
.ss-home.ss-anim-ready .ss-fade-right.ss-visible,
.ss-v2.ss-anim-ready   .ss-fade-up.ss-visible,
.ss-v2.ss-anim-ready   .ss-fade-left.ss-visible,
.ss-v2.ss-anim-ready   .ss-fade-right.ss-visible {
  opacity: 1;
  transform: none;
}
.ss-delay-1 { transition-delay: .10s; }
.ss-delay-2 { transition-delay: .20s; }
.ss-delay-3 { transition-delay: .32s; }
.ss-delay-4 { transition-delay: .44s; }

/* =====================================================================
   FOOTER
===================================================================== */
.footer-main {
  background: rgba(10,8,24,.70);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 56px 0 24px;
}

.footer--columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.column--headline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.50);
  margin-bottom: 18px;
}

.footer--column .navigation--list {}
.footer--column .navigation--list li { margin-bottom: 10px; }
.footer--column .navigation--list a  {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer--column .navigation--list a:hover { color: var(--gold); }

/* Payment icons */
.paymenticonsin {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.paymenticonsin img {
  height: 26px;
  width: auto;
  border-radius: 6px;
  background: #fff;
  padding: 3px 5px;
  object-fit: contain;
}

/* Social links */
.em-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.em-social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.em-social-links li a:hover { background: var(--gold); color: #2e1f49; }
.em-social-links li a svg { width: 20px; height: 20px; }

.footer--bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer--bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.footer--bottom a { color: rgba(255,255,255,.55); }
.footer--bottom a:hover { color: var(--gold); text-decoration: underline; }

/* =====================================================================
   COOKIE NOTICE
===================================================================== */
.cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9999;
  background: rgba(15,8,30,.95);
  border: 1px solid rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
  width: calc(100% - 48px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.80);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s, transform .35s;
}
.cookie-notice.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-notice.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.cookie-notice p { flex: 1; }
.cookie-notice__actions { display: flex; gap: 8px; flex-shrink: 0; align-items: flex-start; }

.cn-btn {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.cn-btn:hover { opacity: .85; }
.cn-decline {
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.20);
}
.cn-accept {
  background: linear-gradient(135deg, #b9f4ef 0%, #2fbfb6 100%);
  color: #0a3030;
}

/* =====================================================================
   RESPONSIVE
===================================================================== */
@media (max-width: 1024px) {
  :root { --ss-header-h: 96px; }
  .ss-hero {
    background: linear-gradient(175deg, #6fd8d3 0%, #8d68bc 55%, #bc69ca 100%);
  }
  .ss-hero video {
    -webkit-mask-image: none;
    mask-image: none;
    transform: scale(1.12);
  }
  .footer--columns { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --ss-hero-h: 380px; --ss-header-h: 78px; }

  .navigation-main { display: none; }
  .navigation-main.open {
    display: block;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(15,8,30,.97);
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 16px 20px;
    z-index: 999;
  }
  .navigation-main.open .navigation--list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .navigation-main.open .navigation--link { width: 100%; }

  .entry--account,
  .cart--amount,
  .cart--display { display: none; }

  .burger-btn { display: flex; }

  .ss-hero video {
    -webkit-mask-image: none;
    mask-image: none;
    transform: scale(1.24);
  }
  .ss-hero-h1 { font-size: 30px; }
  .ss-hero-btns { bottom: 26px; width: calc(100% - 24px); }
  .ss-hero-btn { height: 44px; line-height: 44px; font-size: 15px; padding: 0 22px; }
  .ss-hero-btn.ghost { line-height: 40px; }

  .ss-section-title { font-size: 26px; }
  .ss-section--trust { margin-top: 24px; }

  .ss-trust { padding: 16px 16px; }
  .ss-trust-facts { gap: 6px 16px; }
  .ss-trust-fact  { justify-content: center; text-align: center; font-size: 13px; }

  .ss-video-thumb { width: 100%; }

  .footer--columns { grid-template-columns: 1fr 1fr; }
  .footer--bottom  { flex-direction: column; text-align: center; justify-content: center; }

  .cookie-notice { flex-direction: column; }
  .cookie-notice__actions { width: 100%; justify-content: flex-end; }
}

@media (max-width: 480px) {
  .footer--columns { grid-template-columns: 1fr; }
  .ss-section-title { font-size: 22px; }
}
