/* ========================================================
   FIRELAX - Home Page Styles
   ======================================================== */

/* ???????????????????????????????????????????????????????????????????????
   Hero Section - FiRelax Corporate Identity
   ??????????????????????????????????????????????????????????????????????? */
.hero-modern {
    background: linear-gradient(135deg, var(--firelax-dark) 0%, var(--firelax-sidebar) 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: -70px;
    color: white;
    display: flex;
    flex-direction: column;
    /* Navbar ist sticky → Hero füllt restlichen Viewport */
    height: 100svh;
    max-height: 100svh;
}

/* Video/GIF Hintergrund Container */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    /* GPU-Beschleunigung für Video */
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Fallback GIF - optimiert mit will-change */
.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/Design ohne Titel.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Wenn Video vorhanden, verstecke GIF */
.hero-modern.has-video::before {
    display: none;
}

.hero-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(254, 175, 57, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

/* Container ohne extra GIF */
.hero-container-gif {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-container-gif::before {
    display: none;
}

.min-vh-75 {
    min-height: 0;
    height: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: rgba(254, 175, 57, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 175, 57, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    animation: fadeInDown 0.8s ease-out;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--firelax-orange) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 400;
    line-height: 1.7;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--firelax-orange) 0%, var(--firelax-orange-hover) 100%);
    border: none;
    color: #1a1d23;
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    font-size: 1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    color: #1a1d23;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--firelax-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.8s both;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-item i {
    color: var(--firelax-orange);
    font-size: 1.25rem;
}

/* ========================================================
   Home product cards (ViewComponent overrides for carousels)
   ======================================================== */

/* ========================================================
   Partners marquee (reused in Amazon layout)
   ======================================================== */
.partners-section {
    background: #ffffff;
}

.partners-marquee {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 24px 0;
}

/* Sanfte Fade-Kanten links & rechts */
.partners-marquee::before,
.partners-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}
.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.partners-track {
    display: flex;
    gap: 48px;
    align-items: center;
    width: max-content;
    animation: partners-marquee 40s linear infinite;
    will-change: transform;
}

/* Logo-Links */
.partner-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px 16px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.partner-logo-link:hover {
    transform: scale(1.12);
    opacity: 1;
}

/* Logo-Bilder */
.partner-logo {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo-link:hover .partner-logo {
    filter: grayscale(0%);
}

/* Fallback: Text-Chips (falls nötig) */
.partner-chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.92;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

@keyframes partners-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .partners-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 24px;
    }
    .partner-logo {
        filter: grayscale(0%);
    }
    .partner-logo-link {
        opacity: 1;
    }
}

/* ???????????????????????????????????????????????????????????????????????
   Floating Category Cards - Rechte Seite
   ??????????????????????????????????????????????????????????????????????? */
.hero-image-container {
    position: relative;
    height: 480px;
    width: 100%;
    overflow: visible;
}

.floating-category-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 0;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    border: 2px solid var(--card-color, #feaf39);
    overflow: hidden;
    width: 100px;
    height: 100px;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: box-shadow 0.25s ease, border-width 0.15s ease;
    /* JS positions them; start hidden */
    left: -200px;
    top: -200px;
}

.floating-category-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 30px var(--card-color);
    z-index: 100;
    border-width: 3px;
}

.category-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    gap: 5px;
    padding: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,1) 100%);
}

.category-image-wrapper {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.category-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.25s ease;
}

.floating-category-card:hover .category-preview-image {
    transform: scale(1.06);
}

.category-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--card-color) 0%, color-mix(in srgb, var(--card-color) 70%, black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--card-color) 40%, transparent);
}

.floating-category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 1.2rem;
    color: white;
}

.category-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #1a1d23;
    text-align: center;
    line-height: 1.2;
}

/* Card sizes adapt to count - JS handles positioning */

/* ???????????????????????????????????????????????????????????????????????
   USP Section (Parallax innerhalb Hero)
   ??????????????????????????????????????????????????????????????????????? */
.usp-section {
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 4;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-shrink: 0;
}

.usp-section.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.usp-section > .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 10px var(--space-6);
}

.usp-card {
    text-align: center;
    padding: 1rem 1.5rem;
    transition: var(--transition);
    height: 100%;
    background: transparent;
    border-radius: 15px;
}

.usp-card:hover {
    transform: translateY(-10px);
}

.usp-icon-wrapper {
    position: relative;
    display: inline-block;
}

.usp-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--firelax-orange) 0%, var(--firelax-orange-hover) 100%);
    border-radius: 50%;
    opacity: 0.1;
    transition: var(--transition);
}

.usp-card:hover .usp-icon-bg {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.1);
}

.usp-icon-wrapper i {
    position: relative;
    z-index: 1;
    color: var(--firelax-orange);
}

.usp-card h4 {
    color: #ffffff;
    font-weight: 700;
}

.usp-card .text-muted {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ========================================================
   Amazon-Style Home Content Layout
   ======================================================== */

/* Main wrapper - FiRelax warm gray background */
.amz-home {
    background: #f0f0f0;
    padding: 20px 0 40px;
}

/* Container - consistent width */
.amz-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========================================================
   Amazon Card Grid (4-card rows)
   ======================================================== */
.amz-card-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    align-items: stretch;
}

.amz-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.amz-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.amz-card--accent {
    border-bottom: 3px solid var(--firelax-orange, #feaf39);
}

.amz-card-title {
    font-size: 21px;
    font-weight: 700;
    color: #0F1111;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.amz-card-image-link {
    display: block;
    text-decoration: none;
    flex: 1;
    min-height: 0;
}

.amz-card-image-link img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    background: #f7f8f8;
    transition: transform 0.3s ease;
}

.amz-card-image-link:hover img {
    transform: scale(1.03);
}

.amz-card-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 400;
    color: var(--firelax-orange, #feaf39);
    text-decoration: none;
}

.amz-card-more:hover {
    color: var(--firelax-orange-hover, #d4850c);
    text-decoration: underline;
}

.amz-card-detail {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #565959;
}

/* Promo Visual (icon-based cards) */
.amz-card-promo-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 200px;
    border-radius: 8px;
    background: #f0f2f2;
    color: #0F1111;
    text-decoration: none;
    transition: background 0.25s ease;
}

.amz-card-promo-visual:hover {
    background: #e8eaea;
}

.amz-card-promo-visual i {
    font-size: 3rem;
    color: var(--firelax-orange, #feaf39);
}

.amz-card-promo-visual span {
    font-size: 14px;
    font-weight: 600;
    color: #565959;
}

.amz-card-promo-visual--sale {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFF8E1 100%);
}

.amz-card-promo-visual--sale:hover {
    background: linear-gradient(135deg, #FFE0B2 0%, #FFF3E0 100%);
}

.amz-card-promo-visual--sale i {
    color: #CC0C39;
}

.amz-card-promo-visual--shipping {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
}

.amz-card-promo-visual--shipping:hover {
    background: linear-gradient(135deg, #C8E6C9 0%, #E8F5E9 100%);
}

.amz-card-promo-visual--shipping i {
    color: #067D62;
}

.amz-card-promo-visual--brands {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFF8E1 100%);
}

.amz-card-promo-visual--support {
    background: linear-gradient(135deg, #E3F2FD 0%, #E8EAF6 100%);
}

.amz-card-promo-visual--support i {
    color: #1976D2;
}

/* ========================================================
   Amazon Carousel
   ======================================================== */
.amz-carousel-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.amz-carousel-section--sale {
    border-left: 4px solid #CC0C39;
}

.amz-section-title {
    font-size: 21px;
    font-weight: 700;
    color: #0F1111;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.amz-section-title-icon {
    color: #CC0C39;
    margin-right: 6px;
}

.amz-section-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    color: var(--firelax-orange, #feaf39);
    text-decoration: none;
}

.amz-section-link:hover {
    color: var(--firelax-orange-hover, #d4850c);
    text-decoration: underline;
}

.amz-carousel {
    position: relative;
    padding: 0 48px;
}

.amz-carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.amz-carousel-viewport::-webkit-scrollbar {
    display: none;
}

/* Override Bootstrap row inside carousel */
.amz-carousel-track.row {
    flex-wrap: nowrap !important;
    margin: 0 -6px;
    padding: 4px 0;
}

/* Override ViewComponent column widths for carousel items */
.amz-carousel-track .col-md-6,
.amz-carousel-track .col-lg-3 {
    flex: 0 0 240px !important;
    max-width: 240px !important;
    min-width: 240px !important;
    padding: 0 6px;
}

/* Contain product card overflow in carousel context */
.amz-carousel-track .product-card {
    overflow: hidden;
}

/* Sale carousel uses wider items */
.amz-carousel-track--sale .col-md-6,
.amz-carousel-track--sale .col-lg-6 {
    flex: 0 0 340px !important;
    max-width: 340px !important;
    min-width: 340px !important;
    padding: 0 6px;
}

/* Navigation Buttons */
.amz-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 80px;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #0F1111;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(15, 17, 17, 0.12);
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.amz-carousel-btn:hover {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(15, 17, 17, 0.2);
}

.amz-carousel-btn--prev {
    left: 0;
}

.amz-carousel-btn--next {
    right: 0;
}

/* ========================================================
   Brands Section (inside Amazon layout)
   ======================================================== */
.amz-brands-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ========================================================
   Newsletter (Amazon CTA style)
   ======================================================== */
.amz-newsletter {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.amz-newsletter-title {
    font-size: 21px;
    font-weight: 700;
    color: #0F1111;
    margin: 0 0 6px;
}

.amz-newsletter-text {
    font-size: 14px;
    color: #565959;
    margin: 0 0 16px;
}

.amz-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}

.amz-newsletter-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #a6a6a6;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.amz-newsletter-input:focus {
    border-color: var(--firelax-orange, #feaf39);
    box-shadow: 0 0 0 3px rgba(254, 175, 57, 0.25);
}

.amz-newsletter-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--firelax-orange, #feaf39) 0%, var(--firelax-orange-hover, #d4850c) 100%);
    border: 1px solid var(--firelax-orange-hover, #d4850c);
    border-radius: 8px;
    color: #0F1111;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.15s ease;
}

.amz-newsletter-btn:hover {
    background: linear-gradient(135deg, var(--firelax-orange-hover, #d4850c) 0%, var(--firelax-orange, #feaf39) 100%);
    transform: translateY(-1px);
}

.amz-newsletter-hint {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #565959;
}

/* ========================================================
   Responsive - Amazon Layout
   ======================================================== */
@media (max-width: 1200px) {
    .amz-carousel-track .col-md-6,
    .amz-carousel-track .col-lg-3 {
        flex: 0 0 220px !important;
        max-width: 220px !important;
        min-width: 220px !important;
    }
    .amz-carousel-track--sale .col-md-6,
    .amz-carousel-track--sale .col-lg-6 {
        flex: 0 0 300px !important;
        max-width: 300px !important;
        min-width: 300px !important;
    }
}

@media (max-width: 992px) {
    .amz-card-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .amz-carousel {
        padding: 0;
    }
    .amz-carousel-btn {
        display: none;
    }
}

/* ========================================================
   Home Sale Compact Card (Aktuelle Angebote Carousel)
   ======================================================== */
.home-sale-card {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e3e6e6;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.home-sale-card:hover {
    box-shadow: 0 6px 20px rgba(15, 17, 17, 0.12);
    transform: translateY(-2px);
}

.home-sale-card.is-out-of-stock {
    opacity: 0.75;
}

.home-sale-card__media {
    position: relative;
    flex: 0 0 140px;
    background: #f7f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-sale-card__image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 12px;
}

.home-sale-card__image {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.home-sale-card:hover .home-sale-card__image {
    transform: scale(1.05);
}

.home-sale-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #CC0C39;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
    line-height: 1.2;
}

.home-sale-card__status {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(15, 17, 17, 0.75);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.home-sale-card__body {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.home-sale-card__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.home-sale-card__brand {
    font-size: 11px;
    font-weight: 700;
    color: #565959;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.home-sale-card__meta {
    font-size: 11px;
    color: #007185;
}

.home-sale-card__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-sale-card__title a {
    color: #0F1111;
    text-decoration: none;
}

.home-sale-card__title a:hover {
    color: #007185;
}

.home-sale-card__info {
    font-size: 12px;
    color: #565959;
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-sale-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

.home-sale-card__price {
    font-size: 18px;
    font-weight: 700;
    color: #0F1111;
}

.home-sale-card__price.is-sale {
    color: #CC0C39;
}

.home-sale-card__price-old {
    font-size: 13px;
    color: #565959;
    text-decoration: line-through;
}

.home-sale-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 8px;
}

.home-sale-card__vat {
    font-size: 11px;
    color: #565959;
    flex-shrink: 0;
}

.home-sale-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.15s ease;
    background: linear-gradient(135deg, var(--firelax-orange, #feaf39) 0%, var(--firelax-orange-hover, #d4850c) 100%);
    color: #0F1111;
}

.home-sale-card__cta:hover {
    filter: brightness(1.08);
}

.home-sale-card__cta.is-disabled {
    background: #e3e6e6;
    color: #565959;
    cursor: not-allowed;
    pointer-events: none;
}

.home-sale-card .omnibus-price-hint {
    font-size: 11px;
    margin-bottom: 4px;
}

/* ???????????????????????????????????????????????????????????????????????
   Animations
   ??????????????????????????????????????????????????????????????????????? */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ???????????????????????????????????????????????????????????????????????
   Responsive - Hero Section
   ??????????????????????????????????????????????????????????????????????? */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-image-container {
        display: none;
    }

    .usp-card {
        padding: 1.35rem 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .amz-card-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .amz-card-title {
        font-size: 16px;
    }

    .amz-card-image-link img {
        height: 140px;
    }

    .amz-card-promo-visual {
        height: 140px;
    }

    .amz-card-promo-visual i {
        font-size: 2rem;
    }

    .amz-section-title {
        font-size: 18px;
    }

    .amz-carousel-track .col-md-6,
    .amz-carousel-track .col-lg-3 {
        flex: 0 0 200px !important;
        max-width: 200px !important;
        min-width: 200px !important;
    }

    .amz-carousel-track--sale .col-md-6,
    .amz-carousel-track--sale .col-lg-6 {
        flex: 0 0 280px !important;
        max-width: 280px !important;
        min-width: 280px !important;
    }

    .usp-card h4 {
        font-size: 1.05rem;
        line-height: 1.25;
        margin-top: 0.9rem !important;
        margin-bottom: 0.6rem !important;
        word-break: normal;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .usp-card p {
        font-size: 0.94rem;
        line-height: 1.45;
        margin-bottom: 0;
        word-break: normal;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .trust-badges {
        gap: 1.5rem;
    }

    .amz-newsletter-form {
        flex-direction: column;
    }

    .amz-newsletter-btn {
        width: 100%;
    }
    
    .footer-dark .row.py-5 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.1rem;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .footer-dark .row.py-5 > [class*="col-"] {
        margin-bottom: 0 !important;
    }

    .footer-dark .row.py-5 .footer-heading {
        font-size: 1.02rem;
        margin-bottom: 0.65rem;
        white-space: normal;
    }

    .footer-dark .row.py-5 .footer-links li {
        margin-bottom: 0.45rem;
    }

    .footer-dark .row.py-5 .footer-links a {
        min-height: 0 !important;
        display: inline-flex !important;
        align-items: flex-start;
        line-height: 1.35;
        font-size: 0.95rem;
        white-space: normal;
        overflow-wrap: anywhere;
        hyphens: auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .amz-card-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .amz-card {
        padding: 12px;
    }

    .amz-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .amz-card-image-link img {
        height: 110px;
    }

    .amz-card-promo-visual {
        height: 110px;
    }

    .amz-card-promo-visual i {
        font-size: 1.75rem;
    }

    .amz-card-promo-visual span {
        font-size: 12px;
    }

    .amz-card-more,
    .amz-card-detail {
        font-size: 12px;
    }

    .amz-carousel-section {
        padding: 15px;
    }

    .amz-section-title {
        font-size: 16px;
    }

    .amz-carousel-track .col-md-6,
    .amz-carousel-track .col-lg-3 {
        flex: 0 0 170px !important;
        max-width: 170px !important;
        min-width: 170px !important;
    }

    .amz-carousel-track--sale .col-md-6,
    .amz-carousel-track--sale .col-lg-6 {
        flex: 0 0 260px !important;
        max-width: 260px !important;
        min-width: 260px !important;
    }

    .amz-newsletter {
        padding: 20px 15px;
    }

    .amz-newsletter-title {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .footer-dark .row.py-5 {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .footer-dark .row.py-5 .footer-links a {
        font-size: 0.93rem;
    }

    .category-label {
        font-size: 0.5rem;
    }

    /* Hero Buttons volle Breite */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    /* Trust-Badges enger */
    .trust-badges {
        gap: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Mobile Float-Animations (GPU-optimiert) */
@keyframes floatMobileA {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -6px, 0); }
}

@keyframes floatMobileB {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(2px, -5px, 0); }
}

@keyframes floatMobileC {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-2px, -5px, 0); }
}

@keyframes floatMobileD {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(1px, -6px, 0); }
}

@keyframes floatMobileE {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-1px, -5px, 0); }
}

@keyframes floatMobileF {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(2px, -6px, 0); }
}
