:root {
        --bg: #fdfcf9;
        --shadow: 0 12px 24px rgba(0,0,0,0.07);
    }

    .dlaa .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .favoriten-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
        padding-bottom: 50px;
    }

    .fav-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fav-card {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        position: relative;
        opacity: 0;
        transform: translateY(30px);
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .fav-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .dlaa .rank-tag {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--bg);
        backdrop-filter: blur(5px);
        padding: 6px 14px;
        border-radius: 12px;
        /* font-weight: 800;
        font-size: 0.9rem;*/
        z-index: 2;
    }

    .dlaa .dlaa-product-text {
        font-size: 1rem;
    }

    .dlaa .image-wrapper {
        width: 100%;
        height: 250px;
        overflow: hidden;
        background: #f0f0f0;
    }

    .dlaa .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background-color: #fff;
        padding-top: 20px;
        transition: transform 0.6s ease;
    }

    .fav-card:hover img {
        transform: scale(1.08);
    }

    .dlaa .content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .buy-button-block {
        display: block;
        text-align: center;
        color: #fff;
        text-decoration: none;
        padding: 14px;
        border-radius: 14px;
        font-weight: 700;
        transition: background 0.3s;
    }
    .buy-button-block--green {
        background-color: #27AE5D;
    }
    .buy-button-block--red {
        background-color: #e74c3c;
    }
    .buy-button-block--system {
        background-color: var(--primary-color);
    }

    .buy-button-block--amazon {
        display: block;
        text-align: center;
        text-decoration: none;
        padding: 14px;
        font-weight: 700;
        transition: background 0.3s;
        background: #f0c14b;
        background: linear-gradient(180deg, #f7dfa5, #f0c14b) repeat scroll 0 0 transparent;
        border-color: #9c7e31 #90742d #786025 !important;
        border-radius: 3px;
        box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .4);
        color: #111 !important;
    }

    .dlaa-product-text {
        height: 120px;
    }

    @media (max-width: 1024px) {
        .favoriten-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile Optimierung */
    @media (max-width: 680px) {
        .favoriten-grid {
            grid-template-columns: 1fr;
        }
        .image-wrapper { height: 280px; }
    }