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

body {
    font-family: 'Noka', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(180deg, 
        #002DAD 0%,
        #8B205B 32%,
        #B03D4D 37%,
        #DF613B 43%,
        #F27035 47%,
        #FD5275 63%,
        #9B07B6 76%,
        #0B2EB4 87%,
        #0B2EB4 100%
        );
}

/* Drama-Slogan: Mobile-Positionen der Melonen überschreiben (Option A) */
@media (max-width: 768px) {
  .drama-section .drama-melone[data-drama-melone="1"] {
    --top: 20% !important;
  }
  .drama-section .drama-melone[data-drama-melone="2"] {
    --top: 57% !important;
  }
}

/* Ensure all text elements inherit Noka font */
p, span, div, a, li, td, th, label, input, textarea, select, button {
    font-family: inherit;
}

h1, h2, h3, h4 {
    font-family: 'Noka', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.06em;
}

/* Visually hidden but accessible to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    text-align: center;
}

/* Ensure h2 has same styling as h1 when used as main titles */
/* Ensure h2 has same styling as h1 when used as main titles */
/* Note: .disposable-fan-title, .starterkit-fan-title, .duo-pod-fan-title have their own 
   font-size rules in emir.css (8vw) which apply to both h1 and h2 via class selector.
   .personalisierung-title and .hier-kaufen-title have their own font-size rules (8vw) 
   in their respective snippet files, so we don't override them here */
h2.section-title:not(.disposable-fan-title):not(.starterkit-fan-title):not(.duo-pod-fan-title):not(.personalisierung-title):not(.hier-kaufen-title),
h2.page-title,
h2.hero-heading,
h2.kompatibel-title {
    font-size: clamp(3rem, 8vw, 7rem);
    text-align: center;
}

h3 {
    margin-bottom: 2px;
}

.hero-heading .hero-letter {
  display: inline-block; /* each letter can move independently */
  line-height: 1; /* optional but cleaner */
}
  
/* Hero Section */
.hero-section {
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
    height: 100svh;
    display: flex;
    align-items: center;
    min-height: 100svh;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px; /* Adjust based on your image height */
    background-image: url('../images/wyld-banner.png');
    background-repeat: repeat-x;
    background-size: auto 100%;
    z-index: 1;
}

.hero-section::before {
    top: 0;
    animation: scroll-left 20s linear infinite;
}

.hero-section::after {
    bottom: 0;
    animation: scroll-right 20s linear infinite;
}

/* Animation - Scroll Left */
@keyframes scroll-left {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -1000px 0; /* Adjust based on image width */
    }
}

/* Animation - Scroll Right */
@keyframes scroll-right {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 0; /* Adjust based on image width */
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-heading {
    font-weight: 900;
    font-size: 15rem;
    text-transform: lowercase;
    color: #EFFA57;
    margin: 0;
    padding: 0;
    position: relative;
    white-space: nowrap;
}


/* Zone Out Badge */
/* section.home .zone-out-sticker,
section.home .fire-sticker,
section.home .panther-sticker {
    max-width: 100px;
    position: absolute;
    top: 0;
    z-index: 1;
}

/* Fire Sticker
section.home .zone-out-sticker {
    transform: translateY(90%) translateX(110%);
}

/* Fire Sticker
section.home .fire-sticker {
    transform: translateY(10%) translateX(-149%);
}

/* Panther Sticker
section.home .panther-sticker {
    transform: translateY(10%) translateX(-149%);
    top: 150px;
}

section.home .fire-sticker small {
    font-size: 18px;
    font-weight: 900;
    display: block;
    margin-top: 5px;
}

/* Smiley Sticker
section.home .moment-sticker,
section.home .smiley-sticker {
    max-width: 50px;
    position: absolute;
    transform: translateY(-100%) translateX(70%);
} */
section.home .moment-sticker {
    position: absolute;
    max-width: 100%;
    transform: translateY(-50%) translateX(-5%);
}

.hero-tagline {
    background: white;
    color: #0033CC;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.strawberry-icon, .raspberry-icon {
    position: absolute;
    width: 80px;
    height: 80px;
}

.strawberry-icon {
    top: 20%;
    left: 10%;
}

.raspberry-icon {
    top: 30%;
    right: 10%;
}

/* === PRODUKTWELT SECTION BACKGROUND === */

/* Start hidden; GSAP will reveal them */
.produktwelt-section .section-title,
.product-card {
  opacity: 0;
  transform: translateY(40px);
  color: #fff;
}

/* Ensure h2.section-title in produktwelt has same styling as h1 */
.produktwelt-section h2.section-title {
  font-size: clamp(3rem, 8vw, 7rem);
  text-align: center;
}


.produktwelt-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Unter Starter-Kit Titel (z-index: 5) */
  }
  /* === INNER WRAPPER === */
  
  .produktwelt {
    padding: 0 1.5rem;
  }
  
  .produktwelt__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .produktwelt__header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  
  /* === GRID === */
  
  .produktwelt__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 15px;
  }
  
  @media (max-width: 1024px) {
    .produktwelt__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 640px) {
    .produktwelt__grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* === PRODUCT CARD (collapsed first, then expandable) === */
  
  .product-card {
    border-radius: 0 0 32px 32px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    padding: 10px 0 30px;
    /* max-height: 700px; */
  }

  /* .product-card.is-open .product-card__media .product-image {
    border-radius: 0 0 32px 32px;
  } */
  
  /* Image area */
  
  .product-card__media {
    border-radius: 32px 32px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .product-image {
    width: 100%;
    /* max-height: 240px; */
    object-fit: contain;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
  }
  
  /* Hidden content block (sits between image and "READ MORE") */
  
  .product-card__content {
    background: #EFFA57;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    /* transform: translateY(10px);  collapsed */
    transition:
        opacity 0.25s ease,
        transform 0.35s ease;
    position: relative;
    z-index: 0;
  }
  
  /* When card is open, the content expands UPWARDS above the bottom bar */
  .product-card.is-open .product-card__content {
    padding-top: 50px;
    padding-bottom: 16px;
    max-height: 500px;          /* large enough to show all text */
    opacity: 1;
    transform: translateY(0);
    color: #001F61;
    text-transform: uppercase;
    transform: translateY(-35px);
    z-index: -1;
    min-height: 290px;
  }

  /* Wenn ALLE Produktkarten geöffnet sind, sollen die Content-Bereiche gleich hoch sein */
  .produktwelt__grid.produktwelt__grid--all-open .product-card.is-open .product-card__content {
    max-height: none; /* JS setzt die Zielhöhe per CSS-Variable */
    min-height: var(--produktwelt-content-height, auto);
  }
  
  /* Headline + compatibility badge inside expanded part */
  
  .product-card__headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .product-title {
    margin: 0;
  }
  
  .product-description {
    margin: 0 0 15px;
    font-weight: 300;
    text-transform: none !important; /* Kein uppercase für Beschreibung */
  }
  
  /* Additional infos = AROMA, NIKOTIN, FARBE, etc. */
  

    .produktwelt__aroma-feature,
    .produktwelt__aroma-group h3,
  .product-features {
    list-style: none;
    padding: 0 15px;
    font-size: 16px;
    text-align: left;
  }
  
  .product-features li {
    font-size: 13px;
  }
  
  .product-features li strong {
    font-weight: 800;
  }
  
  /* Toggle für Additional Infos: false = uppercase, true = kein uppercase */
  .product-features li.product-feature--no-uppercase {
    text-transform: none !important;
  }
  
  .produktwelt__aroma-line {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 6px;
  }

  
  /* Green compatibility badge */
  
  /* .produktwelt__compatibility-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #4CAF50;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  } */

  img.kompatibel {
    width: auto;
    max-width: 100%;
    position: relative;
    top: -14px;
    left: -2px;
    height: 20px;
  }
  
  /* Bottom bar: always visible, matches screenshot */
  
  .product-card__toggle {
    border: none;
    outline: none;
    margin-top: auto;
    width: 100%;
    border-radius: 0 0 32px 32px;
    background: #EFFA57;
    color: #000;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 20px 10px;
    cursor: pointer;
  }
  
  /* Keep bottom radius on the yellow strip via parent card’s overflow */
  
  .product-card__toggle:hover {
    filter: brightness(1.03);
  }
  
  /* Change label when open (handled by JS) – just ensure spacing is ok */
  
  .product-card__toggle--open {
    top: -35px;
    position: relative;
    height: 50px;
  }

  /* AROMA GROUP CONTAINER */
.produktwelt__aroma-group {
    margin-top: 20px;
  }
  
  /* Feature row (3 items side-by-side, wrap on mobile) */
  #starter-kit .produktwelt__aroma-items {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
  }
  
  /* Each feature block (icon + label) */
  #starter-kit .produktwelt__aroma-feature {
    flex: 1;
    min-width: 70px;
    max-width: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Icon style (dark navy, about same size as screenshot) */
  .produktwelt__aroma-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: brightness(0) saturate(100%) invert(9%) sepia(34%) saturate(2773%)
            hue-rotate(205deg) brightness(92%) contrast(96%);
    /* Filter above turns icons navy-blue-ish */
  }
  
  /* Text style: all caps, bold, centered, small tracking */
  .produktwelt__aroma-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    display: block;
    text-align: left;
  }
  
  /* Toggle für Aroma: false = uppercase, true = kein uppercase */
  .produktwelt__aroma-text.produktwelt__aroma-text--no-uppercase {
    text-transform: none !important;
  }

  #starter-kit .produktwelt__aroma-text {
    text-align: center;
  }
  
  





/* Kompatibel Section */
.kompatibel-section {
    padding: 60px 0;
    text-align: center;
    color: #fff;
    margin: 0 auto;
}

/* Outer section background (the purple gradient) */
  
  /* ICON — top-left badge style */
  .kompatibel-icon {
    position: absolute;
    left: 2%;
    top: 3%;
    height: 75px;
    width: 75px;
  }

  /* .kompatibel-icon {
    position: absolute;
    left: 20px;
    top: 40px;
    height: 40px;
    width: 40px;
  } */
  
  /* DISCLAIMER / NOTE */
  .kompatibel-note {
    margin: 0 auto;
    text-align: left;
    line-height: 1.2;
  }

  h2.kompatibel-subtitle {
    font-size: 3.125vw;
    font-size: clamp(1.5rem, 2.7vw, 6rem);
}

  .kompatibel-title {
    margin: 0;
    text-align: left!important;
}
  

.kompatibel-box {
    position: relative;
    border: 3px solid #fff;
    border-radius: 30px;
    display: inline-block;
    padding: 80px;
    margin: 0 auto;
    text-transform: uppercase;
    box-sizing: border-box;
}

.kompatibel-subtitle {
    margin: 0 0 30px;
    text-align: left;
}

.info-link {
    color: #fff;
    font-size: 12px;
    text-decoration: underline;
    display: block;
    margin-top: 20px;
}

/* Duo Pod Section */
.duo-pod-section {
    background: linear-gradient(180deg, #C71585 0%, #FF6347 100%);
    padding: 80px 0;
    position: relative;
}

.duo-pod-section::before,
.duo-pod-section::after {
    content: 'wylo wylo wylo wylo wylo wylo wylo wylo wylo';
    position: absolute;
    left: 0;
    right: 0;
    color: rgba(255, 208, 0, 0.3);
    font-family: 'Noka', sans-serif;
    font-weight: 900;
    font-size: 14px;
    padding: 8px;
    white-space: nowrap;
    overflow: hidden;
}

.duo-pod-section::before {
    top: 0;
    border-bottom: 2px solid rgba(255, 208, 0, 0.5);
}

.duo-pod-section::after {
    bottom: 0;
    border-top: 2px solid rgba(255, 208, 0, 0.5);
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pod-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    width: 200px;
    text-align: center;
}

.pod-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Disposable Section */
.disposable-section {
    background: linear-gradient(180deg, #FF6347 0%, #FF8C69 100%);
    padding: 80px 0;
    position: relative;
}

.disposable-section::before,
.disposable-section::after {
    content: 'wylo wylo wylo wylo wylo wylo wylo wylo wylo';
    position: absolute;
    left: 0;
    right: 0;
    color: rgba(255, 208, 0, 0.3);
    font-family: 'Noka', sans-serif;
    font-weight: 900;
    font-size: 14px;
    padding: 8px;
    white-space: nowrap;
    overflow: hidden;
}

.disposable-section::before {
    top: 0;
    border-bottom: 2px solid rgba(255, 208, 0, 0.5);
}

.disposable-section::after {
    bottom: 0;
    border-top: 2px solid rgba(255, 208, 0, 0.5);
}

/* Drama Section */
/* .drama-section {
    background: linear-gradient(180deg, #FF8C69 0%, #FF69B4 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.drama-text {
    font-size: 56px;
    color: white;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
} */

/* Version Section */
.version-section {
    background: linear-gradient(180deg, #FF69B4 0%, #C71585 100%);
    padding: 80px 0;
    position: relative;
}

.version-section::before,
.version-section::after {
    content: 'wylo wylo wylo wylo wylo wylo wylo wylo wylo';
    position: absolute;
    left: 0;
    right: 0;
    color: rgba(255, 208, 0, 0.3);
    font-family: 'Noka', sans-serif;
    font-weight: 900;
    font-size: 14px;
    padding: 8px;
    white-space: nowrap;
    overflow: hidden;
}

.version-section::before {
    top: 0;
    border-bottom: 2px solid rgba(255, 208, 0, 0.5);
}

.version-section::after {
    bottom: 0;
    border-top: 2px solid rgba(255, 208, 0, 0.5);
}

/* Kaufen Section */
.kaufen-section {
    background: linear-gradient(180deg, #C71585 0%, #8A2BE2 100%);
    padding: 80px 0;
    text-align: center;
}

.kiosk-button {
    background: #00CED1;
    color: white;
    font-size: 24px;
    font-weight: 800;
    padding: 20px 60px;
    border-radius: 50px;
    border: none;
    margin: 15px;
    cursor: pointer;
    transition: transform 0.2s;
}

.kiosk-button:hover {
    transform: scale(1.05);
}

/* Info Section */
.info-section {
    background: linear-gradient(180deg, #8A2BE2 0%, #4169E1 100%);
    padding: 80px 0;
}

.info-box {
    background: white;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    background: #000000;
    padding: 100px 0;
    position: relative;
}

.contact-title {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 3px white;
    text-stroke: 3px white;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -3px;
}

.contact-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-right {
    flex: 1;
}

.form-group-inline {
    display: flex;
    gap: 20px;
}

.form-field {
    flex: 1;
}

.form-label-dark {
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.form-input-dark,
.form-select-dark,
.form-textarea-dark {
    width: 100%;
    background: transparent;
    border: 2px solid white;
    border-radius: 8px;
    padding: 15px 20px;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
}

.form-input-dark::placeholder,
.form-textarea-dark::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input-dark:focus,
.form-select-dark:focus,
.form-textarea-dark:focus {
    outline: none;
    border-color: #EFFA57;
    box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.2);
}

.form-select-dark {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.form-select-dark option {
    background: #000;
    color: white;
}

.form-textarea-dark {
    resize: vertical;
    min-height: 100%;
    font-family: inherit;
}

.submit-btn-dark {
    background: #000000;
    color: white;
    font-weight: 800;
    font-size: 16px;
    padding: 18px 80px;
    border: 2px solid white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-btn-dark:hover {
    background: #EFFA57;
    color: #000;
    border-color: #EFFA57;
    transform: translateY(-2px);
}

.submit-btn-dark:active {
    transform: translateY(0);
}

/* Info Section (kept for compatibility) */
.info-section {
    background: linear-gradient(180deg, #8A2BE2 0%, #4169E1 100%);
    padding: 80px 0;
}

.info-box {
    background: white;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 14px;
    line-height: 1.6;
}

/* Footer */
.footer-section {
    background: #0033CC;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-size: 48px;
    color: #EFFA57;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}


/* Responsive tweaks */

@media (max-width: 768px) {
    
    .section-title,
    h1,
    .produktwelt-section h2.section-title {
        font-size: 10vw!important;
    }

    h2.kompatibel-subtitle {
        font-size: 4.6vw;
        font-size: min(4.6vw, 6vw);
    }

    .hero-logo {
        font-size: 72px;
    }

    .zone-out-badge {
        left: -80px;
        font-size: 20px;
        padding: 10px 15px;
    }

    .fire-sticker small {
        font-size: 12px;
    }

    .drama-text {
        font-size: 36px;
    }

    .kiosk-button {
        font-size: 18px;
        padding: 15px 40px;
    }

    .hero-heading {
        font-size: 8rem;
    }

    .hero-section::before,
    .hero-section::after {
        height: 30px;
    }

    .moment-sticker  {
        max-width: 100px;
        transform: translateY(-40%) translateX(-50%);
    }

    .panther-sticker {
        top: 90px;
    }

    .smiley-sticker {
        transform: translateY(-40%) translateX(-35%);
    }

    .zone-out-sticker {
        transform: translateY(90%) translateX(-20%);
    }

    .zone-out-sticker, .fire-sticker, .panther-sticker, .smiley-sticker {
        max-width: 50px;
    }

    /* Kompatibel-Box soll mit der Bildschirmbreite mitschrumpfen,
        dabei Icon↔Titel Verhältnis beibehalten */
    .kompatibel-box {
        width: min(calc(100% - 24px), 720px);
        padding: clamp(28px, 7vw, 56px);
        --kompatibel-title-size: clamp(2rem, 9vw, 3.2rem);
        --kompatibel-icon-ratio: 0.98; /* Icon-Größe relativ zur Titel-Schriftgröße */
    }

    h2.kompatibel-title {
        font-size: var(--kompatibel-title-size);
        line-height: 0.95;
    }

    .kompatibel-icon {
        left: 1%;
        top: 3%;
        width: calc(var(--kompatibel-title-size) * var(--kompatibel-icon-ratio));
        height: calc(var(--kompatibel-title-size) * var(--kompatibel-icon-ratio));
        object-fit: contain;
    }

    .contact-title {
        font-size: 60px;
        -webkit-text-stroke: 2px white;
        text-stroke: 2px white;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-group-inline {
        flex-direction: column;
    }

    /* .product-card__toggle {
        width: calc(100% + 28px);
        margin-left: -14px;
    } */
}

@media (max-width: 575px) {
    .kompatibel-icon {
        width: 6vw;
    }
}