/* ============================================
   HOMEPAGE CONVERSION BOOST
   Hero-Verschönerung, neue Zitat-Inszenierung,
   Micro-Interactions & Scroll-Effekte
   Lädt NACH allen anderen Styles (Overrides ok)
   ============================================ */

/* ----------------------------------------
   1. ANNOUNCEMENT BAR — sanfter Glanz-Sweep
   ---------------------------------------- */
.announcement-bar {
    position: relative;
    overflow: hidden;
}

.announcement-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(100deg,
        transparent 0%,
        rgba(255, 255, 255, 0.14) 50%,
        transparent 100%);
    animation: hcbBarSheen 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hcbBarSheen {
    0%, 55% { left: -60%; }
    85%, 100% { left: 120%; }
}

/* ----------------------------------------
   2. HERO — Ken-Burns-Zoom, Glow & CTA-Sheen
   ---------------------------------------- */
.luxury-hero--editorial .luxury-hero__image {
    animation: hcbKenBurns 22s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes hcbKenBurns {
    0%   { transform: scale(1) translateY(0); }
    100% { transform: scale(1.08) translateY(-1.5%); }
}

/* Warmer Lichtschein unten links im Hero */
.luxury-hero--editorial .luxury-hero__gradient::before {
    content: '';
    position: absolute;
    inset: auto auto -20% -15%;
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(196, 148, 148, 0.22) 0%,
        rgba(196, 148, 148, 0.08) 40%,
        transparent 70%);
    animation: hcbGlowPulse 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hcbGlowPulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.12); }
}

/* Eyebrow-Linien wachsen sanft ein */
.luxury-hero__eyebrow-line {
    animation: hcbLineGrow 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.2s backwards;
}

@keyframes hcbLineGrow {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}

/* CTA: dauerhafter, dezenter Glanz-Sweep + stärkerer Hover */
.luxury-hero__cta {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(20, 14, 14, 0.28);
}

.luxury-hero__cta .luxury-hero__cta-text {
    position: relative;
    z-index: 2;
}

.luxury-hero__cta .luxury-hero__cta-icon {
    position: relative;
    z-index: 2;
    animation: hcbArrowNudge 2.4s ease-in-out infinite;
}

@keyframes hcbArrowNudge {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(3px); }
}

.luxury-hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 100%);
    transform: skewX(-18deg);
    animation: hcbCtaSheen 4.5s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes hcbCtaSheen {
    0%, 60%  { left: -80%; }
    90%, 100% { left: 140%; }
}

.luxury-hero__cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 38px rgba(20, 14, 14, 0.36);
}

/* Trust-Indikatoren: Glas-Pillen mit Stagger-Reveal */
.luxury-hero__indicator {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
    animation: hcbFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.luxury-hero__indicator:nth-child(1) { animation-delay: 1.0s; }
.luxury-hero__indicator:nth-child(2) { animation-delay: 1.15s; }
.luxury-hero__indicator:nth-child(3) { animation-delay: 1.3s; }

.luxury-hero__indicator:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@keyframes hcbFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------
   3. ZITATE — Neue Inszenierung
   Riesiges dekoratives Anführungszeichen,
   Shimmer auf dem Akzentwort, Scroll-Reveal,
   schwebende Ornament-Punkte
   ---------------------------------------- */
.editorial-quote-section {
    position: relative;
    overflow: hidden;
}

/* Sanfter Hintergrund-Schein hinter dem Zitat */
.editorial-quote-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 640px;
    height: 320px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse,
        rgba(196, 148, 148, 0.10) 0%,
        rgba(248, 232, 232, 0.06) 45%,
        transparent 72%);
    pointer-events: none;
}

.editorial-quote {
    position: relative;
}

/* Riesiges Anführungszeichen, schwebend */
.editorial-quote__mark {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(72px, 12vw, 128px);
    line-height: 0.6;
    height: 0.42em;
    color: rgba(168, 120, 120, 0.28);
    user-select: none;
    pointer-events: none;
    animation: hcbQuoteFloat 5s ease-in-out infinite;
}

@keyframes hcbQuoteFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-7px) rotate(-2deg); }
}

/* Reveal erst beim Scrollen (statt beim Seitenladen) */
.editorial-quote-section.lmr-fade-in .editorial-quote__text {
    animation: none;
    background-size: 0% 100%;
}
.editorial-quote-section.lmr-fade-in .editorial-quote__rule {
    animation: none;
    width: 0;
}
.editorial-quote-section.lmr-fade-in .editorial-quote__author {
    opacity: 0;
    animation: none;
}
.editorial-quote-section.lmr-fade-in .editorial-quote__mark {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.editorial-quote-section.lmr-fade-in.is-visible .editorial-quote__text {
    animation: quoteMaskReveal 1.8s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards;
}
.editorial-quote-section.lmr-fade-in.is-visible .editorial-quote__rule {
    animation: quoteRuleGrow 1s cubic-bezier(0.65, 0, 0.35, 1) 1.6s forwards;
}
.editorial-quote-section.lmr-fade-in.is-visible .editorial-quote__author {
    animation: hcbFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 2.1s forwards;
}
.editorial-quote-section.lmr-fade-in.is-visible .editorial-quote__mark {
    opacity: 1;
}

/* Shimmer über dem kursiven Akzentwort */
.editorial-quote-section.is-visible .editorial-quote__text em {
    background: linear-gradient(100deg,
        #A87878 0%,
        #A87878 38%,
        #E8C8C8 50%,
        #A87878 62%,
        #A87878 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hcbShimmer 4s ease-in-out 2.4s infinite;
}

@keyframes hcbShimmer {
    0%, 35%   { background-position: 110% 0; }
    75%, 100% { background-position: -60% 0; }
}

/* Schwebende Ornament-Punkte links & rechts */
.editorial-quote__orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        rgba(232, 200, 200, 0.9),
        rgba(168, 120, 120, 0.35));
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease 0.6s;
}

.editorial-quote-section.is-visible .editorial-quote__orb { opacity: 0.7; }

.editorial-quote__orb--1 {
    width: 10px; height: 10px;
    top: 18%; left: 10%;
    animation: hcbOrbFloat 6s ease-in-out infinite;
}
.editorial-quote__orb--2 {
    width: 6px; height: 6px;
    top: 62%; right: 12%;
    animation: hcbOrbFloat 7.5s ease-in-out 1s infinite reverse;
}
.editorial-quote__orb--3 {
    width: 4px; height: 4px;
    bottom: 14%; left: 22%;
    animation: hcbOrbFloat 8s ease-in-out 0.5s infinite;
}

@keyframes hcbOrbFloat {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(6px, -12px); }
    66%      { transform: translate(-5px, -5px); }
}

/* --- Variante 2: Dunkles Zitat-Panel (zweites Zitat) --- */
.editorial-quote-section--dark {
    background: linear-gradient(160deg, #1E1616 0%, #2B1F1F 55%, #241A1A 100%);
    padding: 88px 0;
    margin: 48px 0 0;
}

.editorial-quote-section--dark::before {
    background: radial-gradient(ellipse,
        rgba(196, 148, 148, 0.16) 0%,
        rgba(196, 148, 148, 0.05) 45%,
        transparent 72%);
}

.editorial-quote-section--dark .editorial-quote__text {
    color: #F5EDE8;
}

.editorial-quote-section--dark .editorial-quote__mark {
    color: rgba(232, 200, 200, 0.22);
}

.editorial-quote-section--dark .editorial-quote__author {
    color: rgba(245, 237, 232, 0.55);
}

.editorial-quote-section--dark .editorial-quote__rule {
    background: rgba(232, 200, 200, 0.45);
}

.editorial-quote-section--dark.is-visible .editorial-quote__text em {
    background: linear-gradient(100deg,
        #D9A9A9 0%,
        #D9A9A9 38%,
        #F8E8E8 50%,
        #D9A9A9 62%,
        #D9A9A9 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hcbShimmer 4s ease-in-out 2.4s infinite;
}

/* ----------------------------------------
   4. MICRO-INTERACTIONS & POLISH
   ---------------------------------------- */

/* Testimonial-Karten: Lift + Bild-Zoom */
.testimonial-card {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(20, 14, 14, 0.12);
}

.testimonial-image-wrapper { overflow: hidden; }

.testimonial-photo {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover .testimonial-photo {
    transform: scale(1.05);
}

/* Sterne funkeln nacheinander beim Hover */
.testimonial-card:hover .testimonial-rating i {
    animation: hcbStarPop 0.5s ease backwards;
}
.testimonial-card:hover .testimonial-rating i:nth-child(1) { animation-delay: 0s; }
.testimonial-card:hover .testimonial-rating i:nth-child(2) { animation-delay: 0.07s; }
.testimonial-card:hover .testimonial-rating i:nth-child(3) { animation-delay: 0.14s; }
.testimonial-card:hover .testimonial-rating i:nth-child(4) { animation-delay: 0.21s; }
.testimonial-card:hover .testimonial-rating i:nth-child(5) { animation-delay: 0.28s; }

@keyframes hcbStarPop {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.35); }
    100% { transform: scale(1); }
}

/* Alle LMR-Buttons: Glanz-Sweep beim Hover */
.lmr-btn {
    position: relative;
    overflow: hidden;
}

.lmr-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.lmr-btn:hover::after { left: 140%; }

/* Trust-Icons: sanfter Puls beim Hover */
.lmr-trust__item:hover .lmr-trust__icon,
.lmr-trust-strip__item:hover .lmr-trust-strip__icon {
    animation: hcbIconPulse 0.6s ease;
}

@keyframes hcbIconPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.18); }
    100% { transform: scale(1); }
}

/* Final-CTA: langsamer Hintergrund-Zoom */
.lmr-final-cta__bg {
    animation: hcbKenBurns 18s ease-in-out infinite alternate;
    will-change: transform;
}

/* Boutique-Pillars: Stagger-Reveal */
.boutique-pillars-section .boutique-pillars__item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.boutique-pillars-section.is-visible .boutique-pillars__item {
    opacity: 1;
    transform: translateY(0);
}

.boutique-pillars-section.is-visible .boutique-pillars__item:nth-child(1) { transition-delay: 0.1s; }
.boutique-pillars-section.is-visible .boutique-pillars__item:nth-child(2) { transition-delay: 0.25s; }
.boutique-pillars-section.is-visible .boutique-pillars__item:nth-child(3) { transition-delay: 0.4s; }

/* ----------------------------------------
   5. SALE COUNTDOWN STRIP — Dringlichkeit
   ---------------------------------------- */
.sale-strip {
    position: relative;
    background: linear-gradient(120deg, #2B1F1F 0%, #4A2E2E 45%, #2B1F1F 100%);
    background-size: 200% 100%;
    animation: hcbStripShift 8s ease-in-out infinite;
    color: #F5EDE8;
    overflow: hidden;
}

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

.sale-strip__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    text-align: center;
}

.sale-strip__label {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(232, 200, 200, 0.16);
    border: 1px solid rgba(232, 200, 200, 0.3);
    color: #E8C8C8;
    animation: hcbLabelPulse 2.4s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes hcbLabelPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 200, 200, 0.35); }
    50%      { box-shadow: 0 0 0 7px rgba(232, 200, 200, 0); }
}

.sale-strip__text {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(245, 237, 232, 0.92);
}

.sale-strip__timer {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.sale-strip__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    padding: 6px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sale-strip__unit b {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    color: #FFFFFF;
}

.sale-strip__unit small {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 237, 232, 0.6);
}

.sale-strip__cta {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #2B1F1F;
    background: #E8C8C8;
    padding: 10px 22px;
    border-radius: 999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    white-space: nowrap;
}

.sale-strip__cta:hover {
    background: #F5DEDE;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
    .sale-strip__inner { padding: 12px 14px; gap: 8px 14px; }
    .sale-strip__text { display: none; }
    .sale-strip__unit { min-width: 42px; padding: 5px 6px; }
    .sale-strip__unit b { font-size: 16px; }
    .sale-strip__cta { padding: 9px 18px; font-size: 12px; }
}

/* ----------------------------------------
   6. SOCIAL PROOF TOAST — "hat gerade gekauft"
   ---------------------------------------- */
.sp-toast {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 9997;
    width: calc(100% - 32px);
    max-width: 330px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(196, 148, 148, 0.22);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(196, 148, 148, 0.12), 0 18px 44px rgba(20, 14, 14, 0.14);
    font-family: 'Inter', -apple-system, sans-serif;
    cursor: pointer;
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.sp-toast.sp-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.sp-toast__img {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    background: #F8F2EE;
    border: 1px solid rgba(196, 148, 148, 0.18);
}

.sp-toast__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-toast__body { flex: 1; min-width: 0; }

.sp-toast__line1 {
    margin: 0;
    font-size: 12px;
    color: #6B5B5B;
    line-height: 1.35;
}

.sp-toast__line1 strong { color: #2B1F1F; font-weight: 600; }

.sp-toast__line2 {
    margin: 2px 0 0;
    font-size: 12.5px;
    font-weight: 600;
    color: #2B1F1F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-toast__meta {
    margin: 4px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10.5px;
    color: #9A8A8A;
}

.sp-toast__verified {
    color: #4C9A6B;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sp-toast__close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    line-height: 1;
    color: #B8A8A8;
    cursor: pointer;
    padding: 2px;
}

.sp-toast__close:hover { color: #2B1F1F; }

@media (max-width: 640px) {
    /* Auf Mobile über dem Summer-Sale-Toast platzieren, kollisionsfrei */
    .sp-toast { bottom: 104px; max-width: 300px; }
}

/* ----------------------------------------
   7. PAYMENT TRUST — Zahlarten-Icons
   ---------------------------------------- */
.payment-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin-top: 18px;
}

.payment-trust__label {
    width: 100%;
    text-align: center;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2px;
}

.payment-trust i {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease, transform 0.3s ease;
}

.payment-trust i:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}

.payment-trust--light .payment-trust__label { color: #9A8A8A; }
.payment-trust--light i { color: #8A7575; }
.payment-trust--light i:hover { color: #2B1F1F; }

/* ----------------------------------------
   8. REDUCED MOTION — alles ruhigstellen
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .announcement-bar::after,
    .luxury-hero--editorial .luxury-hero__image,
    .luxury-hero--editorial .luxury-hero__gradient::before,
    .luxury-hero__cta::before,
    .luxury-hero__cta-icon,
    .editorial-quote__mark,
    .editorial-quote__orb,
    .lmr-final-cta__bg,
    .sale-strip,
    .sale-strip__label {
        animation: none !important;
    }

    .editorial-quote-section.lmr-fade-in .editorial-quote__text {
        background-size: 100% 100%;
    }
    .editorial-quote-section.lmr-fade-in .editorial-quote__rule {
        width: 64px;
    }
    .editorial-quote-section.lmr-fade-in .editorial-quote__author,
    .editorial-quote-section.lmr-fade-in .editorial-quote__mark {
        opacity: 1;
    }
    .boutique-pillars-section .boutique-pillars__item {
        opacity: 1;
        transform: none;
    }
}
