/* ========================================================
   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: 4rem 0 0;
    color: white;
}

/* 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;
}

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

.min-vh-75 {
    min-height: 70vh;
}

.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 (NewestProducts component)
   ======================================================== */
.home-product-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.home-product-image {
    position: relative;
    background: #f9fafb;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.home-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(239, 68, 68, 0.25);
}

.home-product-body {
    padding: 16px 16px 10px 16px;
}

.home-product-category {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.home-product-title {
    font-size: 14px;
    font-weight: 900;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.home-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.home-price-current {
    font-size: 20px;
    font-weight: 900;
    color: #16a34a;
}

.home-price-original {
    font-size: 13px;
    font-weight: 800;
    color: #ef4444;
    text-decoration: line-through;
}

.home-product-tax {
    margin-top: 6px;
    font-size: 11px;
    color: #6b7280;
}

.home-product-actions {
    padding: 0 16px 16px 16px;
    margin-top: auto;
}

.home-btn-cart {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 12px 12px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    background: #feaf39;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
}

.home-btn-cart:hover:not(.disabled):not(:disabled) {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(254, 175, 57, 0.35);
}

.home-btn-cart.disabled,
.home-btn-cart:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ========================================================
   Partners marquee
   ======================================================== */
.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: 450px;
    width: 100%;
}

.floating-category-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    border: 2px solid var(--card-color, #feaf39);
    overflow: hidden;
    width: 115px;
    height: 115px;
    z-index: 1;
    /* GPU-Beschleunigung für flüssige Animationen */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.floating-category-card:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 30px var(--card-color);
    z-index: 100;
    border-width: 3px;
    animation-play-state: paused;
}

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

.category-image-wrapper {
    width: 100%;
    height: 72px;
    border-radius: 12px;
    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;
}

/* 6 Cards - Positionen */
.floating-category-card.card-1 {
    top: 10%;
    left: 5%;
    animation: floatA 6s ease-in-out infinite;
}

.floating-category-card.card-2 {
    top: 5%;
    left: 40%;
    animation: floatB 7s ease-in-out infinite;
    animation-delay: 0.5s;
}

.floating-category-card.card-3 {
    top: 15%;
    right: 5%;
    animation: floatC 5.5s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-category-card.card-4 {
    bottom: 25%;
    left: 8%;
    animation: floatD 6.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.floating-category-card.card-5 {
    bottom: 20%;
    left: 42%;
    animation: floatE 5s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-category-card.card-6 {
    bottom: 30%;
    right: 8%;
    animation: floatF 7s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* Sanfte Float-Animationen */
@keyframes floatA {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

@keyframes floatB {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, -12px); }
}

@keyframes floatC {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, -10px); }
}

@keyframes floatD {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -18px); }
}

@keyframes floatE {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -14px); }
}

@keyframes floatF {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(12px, -16px); }
}

/* Wave Divider */
.wave-divider {
    position: relative;
    width: 100%;
    height: 100px;
    margin-top: -1px;
    z-index: 3;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    fill: #f8f9fa;
}

/* ???????????????????????????????????????????????????????????????????????
   USP Section
   ??????????????????????????????????????????????????????????????????????? */
.usp-section {
    background: white;
}

.usp-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.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: #2c3e50;
    font-weight: 700;
}

/* ???????????????????????????????????????????????????????????????????????
   Newsletter Section
   ??????????????????????????????????????????????????????????????????????? */
.newsletter-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.newsletter-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--firelax-orange) 0%, var(--firelax-orange-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-orange);
}

.input-group-modern {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.form-control-modern {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--firelax-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.btn-modern {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--firelax-orange) 0%, var(--firelax-orange-hover) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* ???????????????????????????????????????????????????????????????????????
   Sale Section
   ??????????????????????????????????????????????????????????????????????? */
.sale-section {
    background: linear-gradient(135deg, var(--firelax-dark) 0%, var(--firelax-sidebar) 100%);
    position: relative;
    overflow: hidden;
}

.sale-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.sale-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-weight: 700;
    color: white;
}

.text-gradient-sale {
    background: linear-gradient(135deg, var(--firelax-orange) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ???????????????????????????????????????????????????????????????????????
   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
   ??????????????????????????????????????????????????????????????????????? */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-image-container {
        height: 350px;
    }
    
    .floating-category-card {
        width: 100px;
        height: 100px;
    }
    
    .newsletter-card {
        padding: 2rem;
    }
    
    .input-group-modern {
        flex-direction: column;
    }
}

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

    .products-section .section-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
    }

    .products-section .section-header > div {
        width: 100%;
    }

    .products-section .section-header h2 {
        font-size: 1.95rem;
        line-height: 1.2;
    }

    .products-section .section-header p {
        font-size: 1rem;
        line-height: 1.45;
        margin-bottom: 0;
        max-width: 30ch;
    }

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

    .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;
    }
    
    .hero-image-container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        height: auto;
        min-height: 0;
    }

    .floating-category-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 0.95 / 1;
    }

    .floating-category-card.card-1,
    .floating-category-card.card-2,
    .floating-category-card.card-3,
    .floating-category-card.card-4,
    .floating-category-card.card-5,
    .floating-category-card.card-6 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .hero-image-container .floating-category-card.card-1 { animation: floatMobileA 4.8s ease-in-out infinite !important; animation-delay: 0s !important; }
    .hero-image-container .floating-category-card.card-2 { animation: floatMobileB 5.3s ease-in-out infinite !important; animation-delay: 0.25s !important; }
    .hero-image-container .floating-category-card.card-3 { animation: floatMobileC 5s ease-in-out infinite !important; animation-delay: 0.5s !important; }
    .hero-image-container .floating-category-card.card-4 { animation: floatMobileD 5.5s ease-in-out infinite !important; animation-delay: 0.75s !important; }
    .hero-image-container .floating-category-card.card-5 { animation: floatMobileE 4.9s ease-in-out infinite !important; animation-delay: 1s !important; }
    .hero-image-container .floating-category-card.card-6 { animation: floatMobileF 5.4s ease-in-out infinite !important; animation-delay: 1.25s !important; }

    .hero-image-container .floating-category-card {
        animation-iteration-count: infinite !important;
        animation-duration: 5.2s !important;
        animation-play-state: running !important;
    }

    .category-image-wrapper {
        height: 56px;
        border-radius: 10px;
    }
    
    .category-icon {
        width: 35px;
        height: 35px;
    }
    
    .category-icon i {
        font-size: 1rem;
    }
    
    .category-label {
        font-size: 0.6rem;
    }

    .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;
    }

    .products-section .section-header h2 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .products-section .section-header p {
        font-size: 0.98rem;
        max-width: 100%;
    }

    .usp-card {
        padding: 1.2rem 0.9rem;
    }

    .usp-card h4 {
        font-size: 1.02rem;
    }

    .usp-card p {
        font-size: 0.92rem;
    }

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

    .hero-image-container {
        gap: 0.55rem;
    }

    .category-image-wrapper {
        height: 48px;
        border-radius: 8px;
    }

    .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-icon {
        width: 28px;
        height: 28px;
    }

    .category-icon i {
        font-size: 0.8rem;
    }

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

    .home-product-body {
        padding: 12px 12px 8px 12px;
    }

    .home-product-actions {
        padding: 0 12px 12px 12px;
    }

    .home-product-category {
        font-size: 12px;
    }

    .home-product-tax {
        font-size: 12px;
    }

    .home-price-current {
        font-size: 18px;
    }

    /* Newsletter auf Mobile kompakter */
    .newsletter-card {
        padding: 1.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;
    }
}

@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); }
}
