/* ==========================================================================
   Tiger Aura Microsite — /aura (izolovaný layout, bez main.css)
   Design: Pixel-perfect podľa Figma (fileKey 7rxidAdr7feos7Xvw6hrRl)
   ========================================================================== */

/* ========== Fixture font family (Pangram Pangram) ========== */
@font-face {
    font-family: 'Fixture';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/fixture/Fixture-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Fixture';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/fixture/fixture-light.ttf') format('truetype');
}

@font-face {
    font-family: 'Fixture Expanded';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/fixture/fixture-expandedregular.ttf') format('truetype');
}

@font-face {
    font-family: 'Fixture Expanded';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/fixture/fixture-expandedlight.ttf') format('truetype');
}

@font-face {
    font-family: 'Fixture Expanded';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/fixture/fixture-expandedextrabold.ttf') format('truetype');
}

/* ========== Design tokens (extrahované z Figmy) ========== */
:root {
    /* Brand colors */
    --aura-gold: #FAD98A;
    --aura-pink: #DB195B;
    --aura-pink-glow: #F472B6;
    --aura-white: #E6E6E6;
    --aura-black: #000000;
    --aura-dark: #0A0A0A;

    /* Typography */
    --ff-body: 'Fixture', system-ui, -apple-system, sans-serif;
    --ff-display: 'Fixture Expanded', 'Fixture', system-ui, sans-serif;

    /* Font sizes (z Figma merani) */
    --fs-body: 28px;
    --fs-heading: 50px;
    --fs-button: 45.913px;
    --fs-answer: 21.701px;
    --fs-aura-prefix: 31.83px;
    --fs-aura-name: 82.986px;
    --fs-result-desc: 41px;

    /* Layout */
    --container-max: 1440px;
    --radius-pill: 9999px;
    --radius-card: 40px;

    /* Offset od okraja viewportu po okraj content boxu (max-width 1440px).
       Pouzivane na ukotvenie dekorativnych hviezd k content edge namiesto viewport edge.
       Na sirkach <= container-max je 0 (content fills viewport). */
    --aura-content-edge: max(0px, calc((100vw - var(--container-max)) / 2));

    /* Z-indexes */
    --z-hero: 1;
    --z-quiz: 10;
    --z-modal: 100;
    --z-particles: 9999;
}

/* ========== Base reset pre aura microsite ==========
   Pozadie na html (nie na body) — body background sa na iOS Safari propaguje
   na root canvas a repeat-y sa zastavi po prvom pruhu. html ako skutocny root
   element ma canvas = vyska dokumentu, repeat-y funguje cez cely scroll. */
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background-color: var(--aura-black);
    background-image: url('../images/aura/hero-bg.webp');
    background-repeat: repeat-y;
    background-position: top center;
    background-size: 100% auto;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body.aura-body {
    margin: 0;
    padding: 0;
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    line-height: 1.4;
    color: var(--aura-white);
    position: relative;
    min-height: 100vh;
}

/* ========== Particles canvas (aura-particles.js) ==========
   Premium warm white/cream dust efekt cez celú stránku.
   Scrolluje s obsahom (absolute), nezasahuje do interakcie
   (pointer-events: none), svetlé cez tmavé pozadie (mix-blend-mode: screen). */
#aura-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: var(--z-particles);
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* Mobile: globalny particles canvas je na mobile hlavny scroll bottleneck —
   `mix-blend-mode: screen` nad full-document absolute plochou nuti
   re-composite pri kazdom scroll frame. Vypnutim odomkneme plynuly scroll.
   Cluster canvases okolo produktov (IntersectionObserver pauza) zostavaju. */
@media (max-width: 768px) {
    #aura-particles {
        display: none;
    }

    /* Mobile: cluster canvases v products su scroll perf bottleneck
       (mix-blend-mode: screen nad 3x scale canvas + rAF loop). Modal
       variant (.aura-products__visual--modal .aura-products__cluster-canvas)
       zostava aktivny — scroll tam nehra rolu. JS aura-particles.js skipne
       init pre mobile non-modal, CSS je safety net. */
    .aura-products__visual:not(.aura-products__visual--modal) .aura-products__cluster-canvas {
        display: none;
    }
}

body.aura-body a {
    color: inherit;
    text-decoration: none;
}

body.aura-body img {
    max-width: 100%;
    display: block;
}

body.aura-body button.aura-quiz__answer {
    font-family: inherit;
    cursor: pointer;
    /* color sa ovlada cez .aura-quiz__answer (base/hover/selected) — nie inherit,
       aby base reset nerozbil specificity color override-ov. */
}

body.aura-body h1,
body.aura-body h2,
body.aura-body h3 {
    font-family: var(--ff-display);
    font-weight: 800;
    margin: 0;
}

/* ========== Hero (cover image podla Figma) ========== */
.aura-hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: var(--container-max);
    aspect-ratio: 1457 / 1000;
    overflow: hidden;
    /* Feather — plynuly fade obrazka do pozadia na vsetkych 4 okrajoch.
       Dva linear-gradienty kombinovane cez mask-composite: intersect vytvoria ramec. */
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-composite: intersect;
}

/* Dekorativne vertikalne hviezdy v hornych rohoch hero (Figma 47:500, 47:501)
   Span prvky, absolute k body.aura-body (ktory ma position: relative).
   star-long.png je horizontalny asset (head-left, tail-right) — rotate 90deg
   otoci na vertikalu (head-top, tail-down) podla Figma orientacie */
.aura-hero-star {
    position: absolute;
    top: 120px;
    width: 200px;
    max-width: 18%;
    aspect-ratio: 560 / 272;
    background: url('../images/aura/star-long.webp') no-repeat center / contain;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
    transform-origin: center center;
}

.aura-hero-star--left {
    left: var(--aura-content-edge);
    transform: rotate(90deg);
}

.aura-hero-star--right {
    right: var(--aura-content-edge);
    transform: rotate(180deg) rotate(90deg) scaleX(-1);
}

.aura-hero__cover {
    display: block;
    width: 100%;
    height: 100%;
}

.aura-hero__cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

/* ==========================================================================
   Quiz sekcia — Figma 42:243 "Aura test otazky" (frame 1457×1640)
   Stage je vzdy viditelny (ruka + outline), obsah sa prepina vo vnutri plate.
   ========================================================================== */

/* Pozn.: z-index zamerne nenastaveny — z-index na positioned elemente
   vytvara novy stacking context, ktory by izoloval mix-blend-mode: screen
   na .aura-quiz__stage-outline od body backgroundu. Particles na produktoch
   funguju kvoli tomu, ze .aura-products tiez nema z-index. */
.aura-quiz {
    position: relative;
    padding: 40px 0 80px;
    color: var(--aura-white);
    text-align: center;
    overflow: hidden;
    /* clip ruku vycnievajucu z lavej strany viewport */
}

/* Dekorativne hviezdy — 4 rohy quiz sekcie (Figma 47:502-505, 454x220) */
.aura-quiz__star {
    position: absolute;
    width: 20%;
    /* zmensene z 31.2% na poziadavku */
    aspect-ratio: 454 / 220;
    background: url('../images/aura/star-small.webp') no-repeat center / contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.aura-quiz__star--tl {
    top: 0px;
    left: calc(var(--aura-content-edge) + 3%);
}

.aura-quiz__star--tr {
    top: 0px;
    right: calc(var(--aura-content-edge) + 3%);
    transform: scaleX(-1);
}

.aura-quiz__star--bl {
    bottom: 40px;
    left: calc(var(--aura-content-edge) + 3%);
}

.aura-quiz__star--br {
    bottom: 40px;
    right: calc(var(--aura-content-edge) + 3%);
    transform: scaleX(-1);
}

/* ========== Stage — aspect-ratio Figma frame 1457:1640, centrovany, flex center pre plate ========== */
.aura-quiz__stage {
    position: relative;
    width: 100%;
    max-width: 1440px;
    aspect-ratio: 1457 / 1640;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vynutit border-box pre vsetky potomky stage (main.css reset mozno override-uje) */
.aura-quiz__stage,
.aura-quiz__stage *,
.aura-quiz__stage *::before,
.aura-quiz__stage *::after {
    box-sizing: border-box;
}

/* Outline plechovky (glow background) — presahuje nad/pod stage,
   mix-blend-screen prepusta iba svetle pixely cez pozadie */
.aura-quiz__stage-outline {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 85.2%;
    /* 1241/1457 */
    height: 128.54%;
    /* 2108/1640 */
    transform: translate(-50%, -50%);
    object-fit: contain;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
}

/* Ruka s plechovkami — vzdy zarovnana k lavemu okraju viewportu.
   min() vyberie viac negativnu hodnotu:
   - uzke viewporty (≤1440px): -9.8% podla Figmy
   - sirsie viewporty: (stage_width - viewport_width)/2 - 40px = trci za lavy okraj */
.aura-quiz__stage-hand {
    position: absolute;
    left: min(-9.8%, calc((100% - 100vw) / 2 - 40px));
    top: 19.39%;
    /* 318/1640 */
    width: 53.8%;
    /* 784/1457 */
    min-width: 560px;
    height: auto;
    pointer-events: none;
    z-index: 3;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
}

/* ========== Plate pozadie (samostatny img, skalovatelny nezavisle od obsahu) ==========
   plechovka-question.png ako samostatny element — centrovany voci stage (match plate) */
.aura-quiz__plate-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 61%;
    /* 889/1457 */
    height: 92.07%;
    /* 1510/1640 */
    transform: translate(-50%, -50%);
    object-fit: fill;
    pointer-events: none;
    z-index: 2;
}

/* ========== Plate — stredna plocha (42% × 92%), relative centered cez stage flex ========== */
.aura-quiz__plate {
    position: relative;
    width: 42%;
    height: 100%;
    z-index: 3;
}

/* ========== Perzistentne AURA TEST logo — absolute voci .aura-quiz__stage ==========
   Logo je v stage DOM (nie sibling). Plate ma height: 100% stage, takze top% voci stage
   sedi identicky voci plate na vsetkych breakpointoch. Desktop: fixna sirka 288px
   (nezvacsuje sa s viewportom). Mobile/tablet: proportional cez media queries. */
.aura-quiz__plate-logo {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: auto;
    pointer-events: none;
    z-index: 4;
}

/* ========== Intro state (default, pod logom) ========== */
.aura-quiz__intro {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22% 10% 10%;
    /* top padding = priestor pre plate-logo */
    text-align: center;
}

.aura-quiz__intro-text,
.aura-quiz__completed-text {
    font-family: var(--ff-body);
    font-weight: 300;
    font-size: clamp(15px, 1.35vw, 22px);
    line-height: 1.5;
    color: rgba(230, 230, 230, 0.9);
    margin: 0 auto 8%;
    max-width: 460px;
    text-wrap: balance;
}

/* ========== CTA tlacidla ========== */
.aura-quiz__start-btn,
.aura-quiz__restart-btn,
.aura-quiz__show-result-btn,
.aura-quiz__restart-new-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    min-height: 60px;
    padding: 14px 36px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(18px, 1.7vw, 26px);
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-wrap: balance;
    color: var(--aura-black);
    background: linear-gradient(135deg, var(--aura-gold) 0%, #F3C66B 100%);
    border: none !important;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow:
        0 0 0 0px rgba(250, 217, 138, 0.12),
        0 12px 40px rgba(250, 217, 138, 0.35),
        0 0 80px rgba(219, 25, 91, 0.15);
}

.aura-quiz__restart-new-btn {
    background: transparent;
    color: var(--aura-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

/* Start-btn — kruhovy shape, pulzujuce halo-shadow pritahuje pozornost k CTA.
   Override shared CTA rule: aspect-ratio 1/1, override min/max z pill formy.
   text-wrap: balance (shared rule vyssie) vyvazi 2-riadkovy text v kruhu. */
.aura-quiz__start-btn {
    aspect-ratio: 1 / 1;
    width: clamp(200px, 22vw, 240px);
    min-width: 0;
    min-height: 0;
    max-width: none;
    padding: 20px;
    border-radius: 50%;
    animation: auraStartBtnPulse 2.4s ease-in-out infinite;
}

/* Halo ring pulz — rozpinajuci sa zlaty ring od 0 do 18px (fade-out transparent),
   zaroven vnutorny glow zosilnie. 2.4s je rhythmically subtle (nie rusivy). */
@keyframes auraStartBtnPulse {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(250, 217, 138, 0.2),
            0 12px 40px rgba(250, 217, 138, 0.35),
            0 0 80px rgba(219, 25, 91, 0.15);
    }
    50% {
        box-shadow:
            0 0 0 18px rgba(250, 217, 138, 0),
            0 16px 60px rgba(250, 217, 138, 0.55),
            0 0 120px rgba(219, 25, 91, 0.35);
    }
}

.aura-quiz__start-btn:hover,
.aura-quiz__restart-btn:hover,
.aura-quiz__show-result-btn:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.08);
    box-shadow:
        0 0 0 0px rgba(250, 217, 138, 0.2),
        0 16px 56px rgba(250, 217, 138, 0.45),
        0 0 120px rgba(219, 25, 91, 0.25);
}

.aura-quiz__start-btn:focus-visible,
.aura-quiz__restart-btn:focus-visible,
.aura-quiz__show-result-btn:focus-visible,
.aura-quiz__restart-new-btn:focus-visible {
    outline: 3px solid var(--aura-gold);
    outline-offset: 4px;
}

/* ========== Visually hidden (a11y) ========== */
.aura-quiz .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== Swiper (hidden pri intro, activuje sa po Start klikani) ========== */
.aura-quiz__swiper {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.aura-quiz__swiper.active {
    display: block;
}

.aura-quiz__swiper .swiper-wrapper,
.aura-quiz__swiper .swiper-slide {
    height: 100%;
}

.aura-quiz__swiper .swiper-slide:not(.swiper-slide-active) {
    pointer-events: none;
}

/* ========== Question slide — background je uz na .aura-quiz__plate,
               logo je perzistentne .aura-quiz__plate-logo (SSOT) ========== */
.aura-quiz__question {
    position: relative;
    width: 100%;
    height: 100%;
    /*   padding: 22% 12% 14%;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.aura-quiz__question-text {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(14px, 1.9vw, 28px);
    line-height: 1.15;
    letter-spacing: -0.005em;
    margin: 0 0 5%;
    color: var(--aura-white);
    text-transform: uppercase;
    max-width: 62%;
}

/* ========== Answers — 6 kruhov 2x3 (Figma Layer_1 495×881, kruhy 188×188) ========== */
.aura-quiz__answers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.5%;
    width: 66%;
    /* 495/750 = ~66% z padded obsahu */
    max-width: 390px;
    margin: 0 auto;
}

.aura-quiz__answer {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(10px, 2.2vw, 22px);
    padding: 20px;
    line-height: 1.15;
    text-align: center;
    text-wrap: balance;
    color: var(--aura-white);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(250, 217, 138, 0.6);
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.aura-quiz__answer:hover {
    background: rgba(250, 217, 138, 0.14);
    border-color: var(--aura-gold);
    color: var(--aura-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(250, 217, 138, 0.25);
}

.aura-quiz__answer:focus-visible {
    outline: 2px solid var(--aura-gold);
    outline-offset: 3px;
}

.aura-quiz__answer.selected {
    background: linear-gradient(135deg, var(--aura-gold) 0%, #F3C66B 100%);
    border-color: var(--aura-gold);
    color: var(--aura-black);
    font-weight: 800;
    box-shadow:
        0 0 0 3px rgba(250, 217, 138, 0.25),
        0 12px 32px rgba(250, 217, 138, 0.45);
    transition: all .3s;
}

.aura-quiz__answers--emoji .aura-quiz__answer {
    flex-direction: column;
    gap: 4px;
}

.aura-quiz__answer-emoji {
    font-size: clamp(24px, 3.5vw, 42px);
    line-height: 1;
}

/* ========== Image answers (Q3 coffee / Q5 animals / Q7 house / Q101 outfit / Q103 aesthetic) ==========
   Obrazok je dodany inline cez custom property `--quiz-bg-image` aby `.selected` mohol
   prebit gradientom (rovnaky zlaty fill ako textove odpovede). Bez gradient overlaya —
   hover/selected robi zoom 120% na background-size a text ma text-shadow pre citatelnost. */
.aura-quiz__answer--image {
    padding: 0;
    background-image: var(--quiz-bg-image);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    border: 1px solid rgba(250, 217, 138, 0.6);
    overflow: hidden;
    transition: background-size 0.35s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.aura-quiz__answer--image:hover {
    background-color: transparent;
    /* Explicit re-set: parent `.aura-quiz__answer:hover` pouziva `background:` shorthand
       ktory by inak resetoval background-image na none (rovnaka specificita 0-0-2-0). */
    background-image: var(--quiz-bg-image);
    background-size: 120% 120%;
    background-position: center;
    border: 2px solid var(--aura-gold);
    color: #fff;
    transform: none;
}

.aura-quiz__answer--image .aura-quiz__answer-label {
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.aura-quiz__answer--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ========== Completed state (hidden initially) ========== */
.aura-quiz__completed {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10% 8%;
    text-align: center;
}

.aura-quiz__completed.active {
    display: flex;
}

.aura-quiz__completed-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

/* ========== Progress bar — absolute v stage (v spodku plate, Figma y=79.56%). ========== */
.aura-quiz__progress {
    display: none;
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 12px;
    z-index: 4;
}

.aura-quiz__progress.active {
    display: block;
}

.aura-quiz__progress-bar {
    position: relative;
    height: 100%;
    border-radius: 6px;
    background: #ffffff;
    overflow: visible;
}

.aura-quiz__progress-fill {
    height: 100%;
    border-radius: 6px;
    background: #808081;
    width: 0%;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.aura-quiz__progress-star {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 60px;
    /* Figma hviezda 3 node 42:273 = 59.78x85.12 */
    height: auto;
    pointer-events: none;
    transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 12px rgba(250, 217, 138, 0.6));
}

/* ========== Back button v kvize ========== */
.aura-quiz__back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 10px 24px;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(230, 230, 230, 0.6);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    min-height: 40px;
}

.aura-quiz__back-btn:hover {
    border-color: var(--aura-gold);
    color: var(--aura-gold);
    background: rgba(250, 217, 138, 0.05);
}

.aura-quiz__back-btn:focus-visible {
    outline: 2px solid var(--aura-gold);
    outline-offset: 2px;
}

/* ========== Responsive — tablet & mobile (iba mensie rozmery, bez reflow) ========== */
@media (max-width: 768px) {

    /* Zvacsena vertikalna medzera — priestor pre 2x scaled bg obrazky (plate-bg + outline).
       overflow: hidden clipne horizontalny presah ruky aj vertikalny presah outline glow.
       Vyska sekcie = padding + stage_height (aspect-ratio 1457/1640 interne na stage). */
    .aura-quiz {
        padding: 80vw 0 80vw;
        overflow: hidden;
    }

    .aura-quiz__star,
    .aura-hero-star {
        display: none;
    }

    /* Outline a plate pozadie zvacsene o 100% (scale(2)) — obsah v .aura-quiz__plate
       nie je dotknuty (plate je samostatny div nad plate-bg). */
    .aura-quiz__stage-outline {
        transform: translate(-50%, -50%) scale(2.7);
    }

    .aura-quiz__plate-bg {
        transform: translate(-50%, -50%) scale(2.7);
    }

    /* Plate — sirsi na mobile (obsah fit do scaled plate-bg 2x). Height zdedi z base 92.07%. */
    .aura-quiz__plate {
        width: 80%;
    }

    /* Plate-logo — mobile: width 40% voci stage (scale 2×). Top dedi z base -3%. */
    .aura-quiz__plate-logo {
        top: 5%;
        width: 70%;
    }

    .aura-quiz__progress {

        bottom: 18%;
        width: 240px;
        height: 8px;
    }


    /* Hero cover zvacseny na 200%, centrovany na stred stranky.
       body.aura-body { overflow-x: hidden } zabranuje horizontalnemu scrollu. */
    .aura-hero__cover {
        width: 200%;
        height: 200%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    /* KROK 1 — DIAGNOSTIKA: odomknutie overflow na mobile, aby sa ukazalo,
       co presne je orezavane. Nic neopravuje, len odhaluje. */
    .aura-quiz__stage {
        overflow: visible;
    }

    .aura-quiz__swiper {
        overflow: visible;
    }

}

/* Tablet-only (769–1023px) — scale(1.5) pre outline/plate-bg a hero cover 150%.
   Medzi mobilom (scale 2) a desktopom (scale 1) — jemnejsi presah. */
@media (min-width: 769px) and (max-width: 1023px) {

    /* Vertikalna medzera pre presahajuce scaled obrazky (scale 1.5 → cca 22vw presah).
       overflow: hidden — konzistentne s mobile breakpointom (clippne presahy outline/ruky). */
    .aura-quiz {
        padding: 25vw 0 28vw;
        overflow: hidden;
    }

    .aura-quiz__stage-outline {
        transform: translate(-50%, -50%) scale(1.5);
    }

    .aura-quiz__plate-bg {
        transform: translate(-50%, -50%) scale(1.5);
    }

    /* Plate-logo — tablet: width 30% (= 20% base × 1.5) aby skaloval rovnako ako stage-outline/plate-bg scale(1.5). */
    .aura-quiz__plate-logo {
        top: 3%;
        width: 87%;
    }

    .aura-quiz__progress {

        bottom: 18%;
        width: 240px;
        height: 8px;
    }

    .aura-hero__cover {
        width: 150%;
        height: 150%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

}

/* Tablet a mensie — skryvame ruku s plechovkami (Figma je pre desktop),
   a answers menime na 1 stlpec pill buttonov so zvacsenym textom (cca +50% oproti desktopu).
   Vyssia specificita (body.aura-body) prebije `body.aura-body img { display: block }`. */
@media (max-width: 1023px) {
    body.aura-body .aura-quiz__stage-hand {
        display: none;
    }

    .aura-quiz__answers {
        gap: 8px;
        width: 100%;
    }

    .aura-quiz__answer {
        font-size: clamp(16px, 4.5vw, 22px);
    }

    /* Emoji variant — emoji vedla textu (row) namiesto nad nim (column). */
    .aura-quiz__answers--emoji .aura-quiz__answer {
        flex-direction: row;
        gap: 10px;
    }

    /* Aura-hero na mobile/tablete — aspect-ratio: auto (zrusi desktop 1457/1000),
       height: auto → vyska sa prisposobi obsahu (cover img). */
    .aura-hero {
        aspect-ratio: auto;
        height: auto;
    }
}

/* ==========================================================================
   Result modal (Figma redesign) — particle glow + Fixture font
   ========================================================================== */

.aura-quiz__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
    padding: 0;
}

.aura-quiz__modal.active {
    display: flex;
}

.aura-quiz__modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

/* Fullscreen modal — visual je absolute backdrop (inset:0), text elementy flex items
   v strede nad visualom. overflow:hidden oreže cluster canvas mimo viewportu. */
.aura-quiz__modal-content {
    position: relative;
    z-index: 1;
    background: #0A0A0A;
    border: none;
    border-radius: 0;
    padding: 48px 24px;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: none;
    max-height: none;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
    box-shadow: none;
}

.aura-quiz__modal.active .aura-quiz__modal-content {
    transform: scale(1);
    opacity: 1;
}

.aura-quiz__modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.aura-quiz__modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--aura-gold);
    color: var(--aura-gold);
}

.aura-quiz__modal-close:focus-visible {
    outline: 2px solid var(--aura-gold);
    outline-offset: 2px;
}

/* Skry cookies banner (Adopt goadopt.io — id="cookie-banner") pocas modalu. */
body.aura-modal-open #cookie-banner {
    display: none !important;
}

/* ========== Result obsah — text overlay nad visual backdrop-om ==========
   Wrapper .aura-quiz__modal-body drži text/share/restart ako samostatny blok —
   sirka, padding a gap sa ladia nezavisle per breakpoint bez vplyvu na graficke
   pozadie (.aura-products__visual--modal je absolute inset:0 za obsahom).
   z-index:1 stavia wrapper nad absolute visual. */
.aura-quiz__modal-body {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.aura-quiz__result-label {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(18px, 2vw, 32px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.75);
    margin: 0 0 12px;
}

.aura-quiz__result-aura-name {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(44px, 8vw, 83px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #000 !important;
    margin: 0 0 32px;
    text-shadow: none;
}

.aura-quiz__result-description {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: clamp(20px, 1.8vw, 24px);
    line-height: 1.5;
    color: #000;
    max-width: 560px;
    margin: 0 auto 40px;
}

/* ========== Share sekcia ========== */
.aura-quiz__share {
    margin: 0 0 36px;
}

.aura-quiz__share-label {
    display: block;
    font-family: var(--ff-body);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 16px;
}

.aura-quiz__share-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* Share btn — ghost style, uniform farba rovnako ako restart btn.
   Default (gold/white): cierny border + cierny text; hover inverzne.
   Pink override nizsie propaguje biely color scheme. */
.aura-quiz__share-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid #000;
    background: transparent;
    color: #000;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aura-quiz__share-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.aura-quiz__share-btn:focus-visible {
    outline: 2px solid var(--aura-gold);
    outline-offset: 2px;
}

.aura-quiz__share-copied {
    display: block;
    margin-top: 14px;
    font-family: var(--ff-body);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #25D366;
}

/* ========== Modal restart button override — ghost style ==========
   Default (gold/white aury): transparent bg + cierny border/text; hover invertne.
   Pink aura: inverzne — biely border/text + pri hoveri biely bg + cierny text.
   Scope cez .aura-quiz__modal-body zabezpecuje ze sa nerozbije start-btn
   v hlavnom kvize (zdiela rovnake base pravidlo). */
.aura-quiz__modal-body .aura-quiz__restart-btn {
    background: transparent;
    color: #000;
    border: 1.5px solid #000 !important;
    box-shadow: none;
}

.aura-quiz__modal-body .aura-quiz__restart-btn:hover,
.aura-quiz__modal-body .aura-quiz__restart-btn:focus-visible {
    background: #000;
    color: #fff;
    filter: none;
    box-shadow: none;
}

/* Pink aura — propagacia cez data-aura na modal roote (nastavuje showResult). */
.aura-quiz__modal[data-aura="pink"] .aura-quiz__result-label,
.aura-quiz__modal[data-aura="pink"] .aura-quiz__result-aura-name,
.aura-quiz__modal[data-aura="pink"] .aura-quiz__result-description,
.aura-quiz__modal[data-aura="pink"] .aura-quiz__share-label,
.aura-quiz__modal[data-aura="pink"] .aura-quiz__share-copied {
    color: #fff !important;
}

.aura-quiz__modal[data-aura="pink"] .aura-quiz__share-btn {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.aura-quiz__modal[data-aura="pink"] .aura-quiz__share-btn:hover {
    background: #fff;
    color: #000;
}

.aura-quiz__modal[data-aura="pink"] .aura-quiz__modal-body .aura-quiz__restart-btn {
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff !important;
    box-shadow: none;
}

.aura-quiz__modal[data-aura="pink"] .aura-quiz__modal-body .aura-quiz__restart-btn:hover,
.aura-quiz__modal[data-aura="pink"] .aura-quiz__modal-body .aura-quiz__restart-btn:focus-visible {
    background: #fff;
    color: #000;
}

/* ========== Modal responsive ========== */
@media (max-width: 640px) {
    .aura-quiz__modal-content {
        padding: 56px 20px 32px;
    }

    .aura-quiz__share-btn {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   Product sekcia (Figma: 3 striedavé riadky s plechovkami + textom)
   ========================================================================== */

/* Horizontalny scroll lock lokalizovany na sekciu kde realne presahuju prvky
   (shape 300%, orb 300%, particles 220%). overflow-x: clip — nevytvara
   scroll container, netrapi root scroller optimalizaciu v Chrome/iOS Safari.
   Podpora: Chrome 90+, Safari 16+, Firefox 81+. Nahradza skorsie html+body
   overflow hacky ktore lamali iOS scroll performance. */
.aura-products {
    position: relative;
    padding: 80px 0 100px;
    color: var(--aura-white);
    overflow-x: clip;
}

.aura-products .container {
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
    position: relative;
}

.aura-products__row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    min-height: 520px;
    position: relative;
}

.aura-products__row:last-of-type {
    margin-bottom: 60px;
}

/* Alternujúci layout: gold + white majú plechovku vľavo, pink vpravo */
.aura-products__row--pink {
    flex-direction: row-reverse;
}

/* ========== Visual (plechovka + shape za ňou) ========== */
.aura-products__visual {
    position: relative;
    flex: 0 0 30%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

/* K1 (WebP fix) obalil shape/particle/can img v <picture> wrapperi. Can je ale
   vnorenы v <span.aura-products__can-wrap>, video je plain element — ich flex
   layout sa nemenil. Shape a particle su priamymi flex-child picture-mi, a iOS
   Safari ich spracuje ako flex item s abspos child imgom — visual glitch (offset
   doprava) vs Chromium. display:contents prevedie picture na transparent layout
   box → img vnutri sa stane priamym flex child (DOM flow rovnaky ako pred K1),
   ale <source type="image/webp"> stale funguje pre selekciu zdroja. */
.aura-products__visual>picture {
    display: contents;
}

.aura-products__visual .aura-products__shape {
    position: absolute;
    top: 50%;
    max-width: 300%;
    height: auto;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    /* filter: saturate(1.8); */
    animation: auraShapeSpin 120s linear -20s infinite;
}

.aura-products__visual .aura-products__particle {
    position: absolute;
    top: 50%;
    max-width: 220%;
    height: auto;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
    /*filter: saturate(1.8);*/
    animation: auraParticleSpin 120s linear infinite;
}

/* 3 inštancie particle — každá má vlastnú pozíciu (top), veľkosť, rýchlosť
   aj smer. Selektory musia mať rovnakú/vyššiu specificitu ako parent
   `.aura-products__visual .aura-products__particle` (0,2,0), inak sa
   override neaplikuje. */
.aura-products__visual .aura-products__particle--1 {
    top: 50%;
    max-width: 200%;
}

.aura-products__visual .aura-products__particle--2 {
    top: 30%;
    max-width: 150%;
    animation-duration: 145s;
    animation-delay: -15s;
    animation-direction: reverse;
}

.aura-products__visual .aura-products__particle--3 {
    top: 70%;
    max-width: 200%;
    animation-duration: 175s;
    animation-delay: -55s;
}

/* Štvrtý particle: malý, flipnutý horizontálne cez individual `scale`
   property, ktorá sa kombinuje s animovaným `transform` bez konfliktu. */
.aura-products__visual .aura-products__particle--4 {
    top: 45%;
    max-width: 50%;
    scale: -1 1;
    animation-duration: 100s;
    animation-delay: -35s;
}

/* Shape a particle centrom posunuté o polovicu plechovky (110px) od stredu
   visualu — z plechovky vytŕča len polovica ornamentu/častíc.
   Orb video halo nasleduje ten istý off-center posun, aby glow bol centrovaný
   na plechovke, nie na strede visualu. */
.aura-products__row--gold .aura-products__shape,
.aura-products__row--gold .aura-products__particle,
.aura-products__row--gold .aura-products__orb,
.aura-products__row--white .aura-products__shape,
.aura-products__row--white .aura-products__particle,
.aura-products__row--white .aura-products__orb {
    left: calc(50% - 110px);
}

.aura-products__row--pink .aura-products__shape,
.aura-products__row--pink .aura-products__particle,
.aura-products__row--pink .aura-products__orb {
    left: calc(50% + 110px);
}

/* Zjednotena viditelnost particles (produkty + modal): zobrazuje sa iba
   particle--1 vo vsetkych aurach, ostatne 3 instancie su skryte globalne.
   Prefix .aura-products__visual potrebny kvoli specificity — `body.aura-body
   img { display: block }` (0,1,1) by inak prebil plain .aura-products__particle--2
   (0,1,0). */
.aura-products__visual .aura-products__particle--2,
.aura-products__visual .aura-products__particle--3,
.aura-products__visual .aura-products__particle--4 {
    display: none;
}

/* Orb video v products visuali — halo za shape/plechovkou. WebM VP9 bez alpha
   (720p@24, CRF 32, ~3.7 MB) — transparencia pozadia rieši mix-blend-mode:
   screen nižšie (čierna z videa sa cez screen neprejaví). Zdroj je fialový
   vortex, hue-rotate prefarbí na gold/pink/white. Square aspect-ratio 1/1 +
   object-fit:cover pre konzistentný kruhový halo, width:120% presahuje okraje
   visualu pre glow efekt. */
.aura-products__visual .aura-products__orb {
    position: absolute;
    top: 50%;
    width: 300%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: .7;
    mix-blend-mode: screen;
}

.aura-products__row--gold .aura-products__orb {
    filter: hue-rotate(135deg) saturate(1.2);
}

.aura-products__row--pink .aura-products__orb {
    filter: hue-rotate(60deg) saturate(1.3);
}

.aura-products__row--white .aura-products__orb {
    filter: saturate(0) brightness(1.3);
}

/* Rotácia v kombinácii s pulzom — 4 kroky po 90° udržia rotáciu
   vizuálne lineárnu, scale kmitá 1 ↔ 1.06. */
@keyframes auraShapeSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(-50%, -50%) rotate(90deg) scale(1.06);
    }

    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1);
    }

    75% {
        transform: translate(-50%, -50%) rotate(270deg) scale(1.06);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

/* Particle rotuje v protismere, pulz v opačnej fáze voči shape. */
@keyframes auraParticleSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1.06);
    }

    25% {
        transform: translate(-50%, -50%) rotate(-90deg) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-180deg) scale(1.06);
    }

    75% {
        transform: translate(-50%, -50%) rotate(-270deg) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg) scale(1.06);
    }
}

/* Wrapper preberá pozíciu a levitáciu (animation translateY) — hover scale
   a rotate sú samostatne na img, takže transformy si nekonkurujú. */
/* Cluster canvases — JS injektuje .aura-products__cluster-canvas--back
   (z:1, za plechovkou) a .aura-products__cluster-canvas--front (z:3,
   pred plechovkou). Canvas je CLUSTER_SCALEx vacsi nez visual a centrovany
   nad nim, aby particles mohli orbitovat aj mimo hranice visualu.
   Rozmery (width/height) riadi JS inline style. */
.aura-products__cluster-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.aura-products__cluster-canvas--back {
    z-index: 1;
}

.aura-products__cluster-canvas--front {
    z-index: 3;
}

/* ========== Modal varianta visualu — fullscreen backdrop, bez plechovky ==========
   Použité v result modali (.aura-quiz__modal). Visual je position:absolute inset:0
   cez celý modal-content — shape + particles sú backdrop, text sa vykresľuje nad ním
   cez z-index:1. Shape je centrálny (products má off-center kvôli plechovke),
   veľkosti v vmin aby neprečnievali viewport. Cluster canvas používa plus-lighter
   blend (lepšie cez tmavý modal-content bg než screen). */
.aura-products__visual--modal {
    mix-blend-mode: lighten;
    position: absolute;
    inset: 0;
    z-index: 0;
    flex: none;
    max-width: none;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    pointer-events: none;
    scale: 0.6;
    /* SSOT pre velkost halo — shape aj orb cerpaju z tejto premennej.
       Overrides na tablete (400%) a mobile (600%) menia len tuto hodnotu. */
    --aura-halo-size: 300%;
    /* Cap na intrinsic shape PNG width (3649px) — shape ma tento cap
       prirodzene (<img> intrinsic), orb je <video> bez intrinsic limitu,
       preto potrebuje explicit max-width aby rastol do rovnakeho stropu. */
    --aura-halo-max: 3649px;
    /* Nezavisly tweak velkosti modal shape (default kopiruje --aura-halo-size).
       Tweakuj cez DevTools: .aura-products__visual--modal { --aura-modal-shape-size: 750%; }
       Per breakpoint hodnoty: desktop 300%, tablet 400%, mobile 800%. */
    --aura-modal-shape-size: var(--aura-halo-size);
    /* Pixelovy strop pre shape — zastavi rast na velkych monitoroch (4K+).
       Default = --aura-halo-max (3649px = intrinsic PNG). Tweakni cez DevTools. */
    --aura-modal-shape-max: var(--aura-halo-max);
}

/* Subtilne pulzovanie pozadia modalu — breathing efekt (scale + opacity).
   Pouziva individual `scale` property aby sa nerozbil `transform: translate(-50%, -50%)`
   na deti (orb/particles). Aktivuje sa iba ked je modal otvoreny kvoli perf. */
@keyframes auraModalPulse {

    0%,
    100% {
        scale: 0.6;
        opacity: 1;
    }

    50% {
        scale: 0.64;
        opacity: 0.88;
    }
}

.aura-quiz__modal.active .aura-products__visual--modal {
    animation: auraModalPulse 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .aura-quiz__modal.active .aura-products__visual--modal {
        animation: none;
    }
}

/* Shape aj všetky 4 particles centrované na stred visual-u. Products má
   particle--2/3/4 na top 30%/70%/45% kvôli bohatej orbit okolo off-center
   plechovky — v modali (fullscreen + scale:2) by to rozhádzalo particles
   mimo viewportu. Preto všetky späť na top:50% left:50%; vizuálnu diverzitu
   zabezpečí existujúca rotácia (rôzne max-width + animation-duration + direction). */
.aura-products__visual--modal .aura-products__shape,
.aura-products__visual--modal .aura-products__particle {
    top: 50%;
    left: 50%;
}

.aura-products__visual--modal .aura-products__cluster-canvas {
    mix-blend-mode: plus-lighter;
}

/* Particles vo fullscreen modali — width odvodena od --aura-halo-size
   rovnakym koeficientom na kazdom breakpointe (desktop 300%, tablet 400%,
   mobil 600%). Particle drzi konstantnu proporciu k shape/orb.
   Cap cez --aura-halo-max (3649px) zastavuje rast na extremne velkych oknach. */
.aura-products__visual--modal .aura-products__particle--1,
.aura-products__visual--modal .aura-products__particle--3 {
    width: calc(var(--aura-halo-size) * 0.45);
    max-width: calc(var(--aura-halo-max) * 0.45);
}

.aura-products__visual--modal .aura-products__particle--2 {
    width: calc(var(--aura-halo-size) * 0.40);
    max-width: calc(var(--aura-halo-max) * 0.40);
}

/* Reset individual `scale: -1 1` z base rules — v kombinacii s keyframe
   `transform: translate(-50%, -50%)` sposobi ze translate sa aplikuje v
   zrkadlenej suradnicovej sustave, takze particle je odsunuty o svoju
   sirku do strany namiesto vycentrovania. */
.aura-products__visual--modal .aura-products__particle--4 {
    width: calc(var(--aura-halo-size) * 0.43);
    max-width: calc(var(--aura-halo-max) * 0.43);
    scale: 1 1;
}

/* Centralny magic vortex portal — WebM VP9 bez alpha (ten isty zdroj ako
   products orb). V modali cierna z videa je absorbovana parent
   .aura-products__visual--modal { mix-blend-mode: lighten } — lighten(cierna, X) = X,
   takze cierne pozadie zmizne. Hue-rotate per data-aura prefarbi fialovu source
   (~270deg): gold=135deg (teple), pink=60deg (magenta), white=desaturate +
   brighter. Hodnoty treba doladit empiricky. */
.aura-products__visual--modal .aura-products__shape {
    width: var(--aura-modal-shape-size);
    max-width: var(--aura-modal-shape-max);
}

/* Tablet override modal halo (shape + orb) — MUSI byt po base .aura-products__visual--modal
   inak base prepise tablet hodnoty (rovnaka specificity, neskorsi vyhrava). */
@media (min-width: 769px) and (max-width: 1023px) {
    .aura-products__visual--modal {
        --aura-halo-size: 400%;
        --aura-modal-shape-size: 400%;
    }
}

.aura-products__visual--modal .aura-products__orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--aura-halo-size);
    max-width: var(--aura-halo-max);
    height: auto;
    aspect-ratio: 1 / 1;
    pointer-events: none;
    z-index: 0;
}

.aura-products__visual--modal[data-aura="gold"] .aura-products__orb {
    filter: hue-rotate(135deg) saturate(1.2);
}

.aura-products__visual--modal[data-aura="pink"] .aura-products__orb {
    filter: hue-rotate(60deg) saturate(1.3);
}

.aura-products__visual--modal[data-aura="white"] .aura-products__orb {
    filter: saturate(0) brightness(1.3);
}

.aura-products__visual .aura-products__can-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 220px;
    animation: auraCanFloat 4s ease-in-out infinite;
}

.aura-products__visual .aura-products__can {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6));
    transition: transform 0.5s ease;
}

.aura-products__visual .aura-products__can:hover {
    transform: scale(1.1) rotate(3deg);
}

/* Touch zariadenia: hover state sa spusti pri tape a "prilepi" sa az do dalsieho
   tapu inde. Z UX je to ruche (plechovka naklonena, nevratila sa). Vypneme uplne. */
@media (hover: none),
(pointer: coarse) {

    .aura-products__visual .aura-products__can:hover,
    .aura-products__visual .aura-products__can:active,
    .aura-products__visual .aura-products__can:focus {
        transform: none;
    }
}

@keyframes auraCanFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Halo za plechovkou — radial gradient v aura farbe, blur + pulz.
   Sedí v can-wrap stacking contexte (position:relative + z-index:2),
   takže z-index:-1 ostáva BEHIND plechovky ale nad particles/shape. */
.aura-products__visual .aura-products__can-wrap::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(30px) opacity(0.7);
    pointer-events: none;
    z-index: 1;
    animation: auraCanGlow 2s ease-in-out infinite;
    mix-blend-mode: plus-lighter;
}

.aura-products__row--gold .aura-products__can-wrap::before {
    background: radial-gradient(circle, rgba(250, 217, 138, 0.6) 0%, rgba(250, 217, 138, 0) 60%);
}

.aura-products__row--pink .aura-products__can-wrap::before {
    background: radial-gradient(circle, rgba(244, 114, 182, 0.6) 0%, rgba(244, 114, 182, 0) 60%);
}

.aura-products__row--white .aura-products__can-wrap::before {
    background: radial-gradient(circle, rgba(230, 230, 230, 0.55) 0%, rgba(230, 230, 230, 0) 60%);
}

/* Pulz v protifáze voči auraCanFloat — plechovka ide dole keď halo je najjasnejší. */
@keyframes auraCanGlow {

    0%,
    100% {
        opacity: 0.55;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

/* ========== Text (heading centered, popis zarovnaný podľa riadku) ========== */
.aura-products__text {
    flex: 1 1 auto;
    position: relative;
    z-index: 2;
}

.aura-products__heading {
    font-family: var(--ff-display);
    font-weight: 400;
    margin: 0 0 28px;
    line-height: 0.84;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
}

/* PINK heading celý posunutý vpravo — parent riadi pozíciu inline-block bloku,
   vnútorný text-align: center ostáva pre vycentrované prefix/name. */
.aura-products__row--pink .aura-products__text {
    text-align: right;
}

.aura-products__prefix {
    display: block;
    font-family: var(--ff-display);
    font-weight: 300;
    font-size: clamp(22px, 2.22vw, 32px);
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.aura-products__name {
    display: block;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(44px, 5.76vw, 83px);
    line-height: 0.84;
    letter-spacing: -0.005em;
}

.aura-products__row--gold .aura-products__name,
.aura-products__row--gold .aura-products__prefix {
    color: var(--aura-gold);
}

.aura-products__row--pink .aura-products__name,
.aura-products__row--pink .aura-products__prefix {
    color: var(--aura-pink);
}

.aura-products__row--white .aura-products__name,
.aura-products__row--white .aura-products__prefix {
    color: var(--aura-white);
}

.aura-products__desc,
.aura-products__size {
    font-family: var(--ff-body);
    font-weight: 300;
    font-size: clamp(20px, 1.95vw, 28px);
    line-height: 1.3;
    color: #fff;
    max-width: 460px;
    margin: 0 0 20px;
}

/* Popis zarovnanie: GOLD/WHITE vľavo, PINK vpravo (Figma) */
.aura-products__row--pink .aura-products__desc,
.aura-products__row--pink .aura-products__size {
    text-align: right;
    margin-left: auto;
}

.aura-products__desc strong {
    font-family: var(--ff-display);
    font-weight: 800;
    color: inherit;
}

.aura-products__size {
    margin-bottom: 0;
}

/* ========== Footer slogan ========== */
.aura-products-footer {
    padding: 60px 0;
}

.aura-products__footer {
    font-family: var(--ff-body);
    font-weight: 300;
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: 1.5;
    text-align: center;
    color: rgba(230, 230, 230, 0.8);
    margin: 0 auto;
    max-width: 620px;
}

.aura-products__footer strong {
    font-weight: 700;
    color: var(--aura-white);
    letter-spacing: 0.02em;
}

/* ========== Follow-cursor tooltip (hover na plechovke) ==========
   Poziciu riadime cez `left`/`top` (nie transform), aby transform bol rezervovany
   iba pre `scale` (bounce entrance). Tym sa vyhneme akejkolvek interpolacii
   medzi novou a starou poziciou pri rychlom presune medzi plechovkami.
   `transform-origin: center bottom` + JS umiestni top-left tak, aby bottom-center
   bol tesne nad kurzorom → bubble narasta "z kurzora" smerom hore. */
.aura-products__tooltip {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    max-width: 280px;
    padding: 14px 20px;
    font-family: var(--ff-body);
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    background: #000;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    opacity: 0;
    transform: scale(0);
    transform-origin: center bottom;
    transition:
        opacity 0.2s ease,
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.aura-products__tooltip.visible {
    opacity: 1;
    transform: scale(1);
}

.aura-products__tooltip strong {
    display: inline-block;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

/* Touch zariadenia — tooltip nedava zmysel bez hover, skryjeme uplne.
   `hover: none` chyti vecsinu mobilov, `pointer: coarse` chyti aj tablety
   a hybrid zariadenia (napr. iPad s Pencil by inak tooltip zobrazili). */
@media (hover: none),
(pointer: coarse) {
    .aura-products__tooltip {
        display: none;
    }
}

/* Respektujeme uzivatelsku preferenciu — bez bounce, iba fade. */
@media (prefers-reduced-motion: reduce) {
    .aura-products__tooltip {
        transition: opacity 0.15s ease;
    }
}

/* ========== Responsive ========== */
@media (max-width: 900px) {

    .aura-products__row,
    .aura-products__row--pink {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 168px;
        min-height: 0;
    }

    /* Reset desktop off-center (calc(50% \u00b1 110px)) \u2014 pod 900px je plechovka
       centrovana (row sa stackuje na column), graphics musia centrovat s nou. */
    .aura-products__row--gold .aura-products__shape,
    .aura-products__row--gold .aura-products__particle,
    .aura-products__row--gold .aura-products__orb,
    .aura-products__row--pink .aura-products__shape,
    .aura-products__row--pink .aura-products__particle,
    .aura-products__row--pink .aura-products__orb,
    .aura-products__row--white .aura-products__shape,
    .aura-products__row--white .aura-products__particle,
    .aura-products__row--white .aura-products__orb {
        left: 50%;
    }

    .aura-products__visual {
        flex: none;
        max-width: 100%;
        min-height: 380px;
        width: 100%;
    }

    .aura-products__text,
    .aura-products__row--pink .aura-products__text {
        text-align: center;
        text-shadow:
            0 0 8px rgba(0, 0, 0, 0.95),
            0 0 20px rgba(0, 0, 0, 0.9),
            0 0 40px rgba(0, 0, 0, 0.75),
            0 0 80px rgba(0, 0, 0, 0.5);
    }

    .aura-products__desc,
    .aura-products__size,
    .aura-products__row--pink .aura-products__desc,
    .aura-products__row--pink .aura-products__size {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    /* SSOT: can-wrap a can img rovnakz max-width, aby img nebol offset v block flow
       (wrap 220 + img 200 → img 10px vlavo voci centru wrap-u aj halo ::before). */
    .aura-products__visual .aura-products__can-wrap,
    .aura-products__visual .aura-products__can {
        max-width: 200px;
    }

    /* Tmavé radial podfarbenie centrované na text — zlepšuje kontrast na mobile */
    .aura-products__text {
        isolation: isolate;
    }

    .aura-products__text::before {
        content: '';
        position: absolute;
        inset: -40px;
        background: radial-gradient(ellipse at center,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0.8) 45%,
                transparent 75%);
        pointer-events: none;
        z-index: -1;
        filter: blur(30px);
    }
}

/* Tablet/intermediate range 641–900px — pod 900px sa products layout meni na
   stacked a visual ide na width:100% (plna sirka viewportu). Base % hodnoty
   pre shape/particle/orb tak generuju enormne presahy (300% sirky viewportu).
   Na mobile (uzsi viewport) su absolutne rozmery OK, ale v 641–900 su prilis
   velke. Zmensujeme iba products variant, modal ostava nedotknuty. */
@media (min-width: 641px) and (max-width: 900px) {
    .aura-products__visual:not(.aura-products__visual--modal) .aura-products__shape {
        max-width: 120%;
    }

    .aura-products__visual:not(.aura-products__visual--modal) .aura-products__particle--1 {
        max-width: 100%;
    }

    .aura-products__visual:not(.aura-products__visual--modal) .aura-products__orb {
        width: 120%;
    }
}

/* Pokryva aj 641-768 medzeru (tablet override zacina az od 769px),
   inak by modal v tomto rozsahu spadol na desktop base hodnoty. */
@media (max-width: 768px) {
    .aura-products {
        padding: 48px 0 64px;
    }

    .aura-products__prefix {
        letter-spacing: 0.2em;
    }

    /* Mobil: modal halo (shape + orb) vacsi (600%) — fullscreen backdrop,
       visual ma scale:0.6, halo potrebuje vyraznejsi presah aby auru zaplnil.
       SSOT cez --aura-halo-size (ovplyvnuje orb + particles).
       --aura-modal-shape-size: 800% — nezavisly shape tweak cez DevTools. */
    .aura-products__visual--modal {
        --aura-halo-size: 600%;
        --aura-modal-shape-size: 800%;
    }
}

/* ==========================================================================
   Reduced motion — a11y
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

    .aura-quiz__result-glow,
    .aura-quiz__start-btn {
        animation: none;
    }

    .aura-quiz__start-btn:hover,
    .aura-quiz__restart-btn:hover,
    .aura-quiz__show-result-btn:hover,
    .aura-products__item:hover,
    .aura-products__item:hover .aura-products__can {
        transform: none;
    }
}