.container {
    margin-top: 100px;
    padding: 0 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 32px;
    padding: 40px 20px;
}

.category-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.section-bundles {
    background:
        linear-gradient(90deg,
            rgba(252, 244, 201, 1) 0%,
            rgba(254, 227, 226, 1) 20%,
            rgba(251, 205, 242, 1) 40%,
            rgba(232, 190, 250, 1) 60%,
            rgba(171, 191, 255, 1) 80%,
            rgba(187, 243, 192, 1) 100%),
        rgba(0, 0, 0, 0.75);
    /* Schwarzer Overlay mit 75% Deckkraft */
    background-blend-mode: multiply;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0;
}

.category-card:hover {
    border-color: rgba(232, 190, 250, 0.4);
    /* Lila aus dem Gradienten */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(232, 190, 250, 0.1);
    /* Lila aus dem Gradienten */
}

.category-card:hover .category-thumbnail {
    transform: scale(1.05);
}

.category-thumbnail {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.category-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
}

.category-price {
    font-weight: 700;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    font-size: 1.125rem;
    white-space: nowrap;
}

.category-count {
    color: var(--text-color-light);
    margin: 0;
    font-size: 0.875rem;
}

.category-description-short {
    color: var(--text-color-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.buy-button-small {
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    color: var(--text-color-invert);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(232, 190, 250, 0.3);
    /* Lila aus dem Gradienten */
    width: 100%;
    margin-top: 8px;
}

.buy-button-small:hover {
    box-shadow: 0 8px 20px rgba(232, 190, 250, 0.5);
    /* Intensiveres Lila */
}

.category-card-info button {
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    color: var(--text-color-invert);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(232, 190, 250, 0.3);
    width: 100%;
    margin-top: 8px;
}

.category-card-info button:hover {
    box-shadow: 0 8px 20px rgba(232, 190, 250, 0.5);
}

.no-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 0.8) 0%, rgba(254, 227, 226, 0.8) 20%, rgba(251, 205, 242, 0.8) 40%, rgba(232, 190, 250, 0.8) 60%, rgba(171, 191, 255, 0.8) 80%, rgba(187, 243, 192, 0.8) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color-invert);
    font-size: 0.875rem;
}

/* Bundles Grid */
.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: auto;
}

.bundle-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.bundle-card:hover {
    border-color: rgba(232, 190, 250, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.bundle-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    color: var(--text-color-invert);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 6px 16px rgba(232, 190, 250, 0.4);
}

.bundle-visuals {
    height: 200px;
    position: relative;
    margin-bottom: 28px;
}

.bundle-img {
    position: absolute;
    width: 70%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(232, 190, 250, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-1 {
    left: 0;
    z-index: 3;
}

.img-2 {
    left: 15%;
    top: 12px;
    z-index: 2;
    opacity: 0.9;
    transform: scale(0.95);
}

.img-3 {
    left: 30%;
    top: 24px;
    z-index: 1;
    opacity: 0.8;
    transform: scale(0.9);
}

.bundle-card:hover .img-1 {
    transform: translateX(-8px) rotate(-2deg);
}

.bundle-card:hover .img-2 {
    transform: translate(15px, -8px) rotate(3deg) scale(0.98);
}

.bundle-card:hover .img-3 {
    transform: translate(30px, -15px) rotate(6deg) scale(0.95);
}

.bundle-info h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--text-color);
}

.bundle-price {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin-bottom: 16px;
}

.bundle-desc {
    color: var(--text-color-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.bundle-packages {
    background: linear-gradient(90deg,
            rgba(252, 244, 201, 0.08) 0%,
            rgba(254, 227, 226, 0.08) 20%,
            rgba(251, 205, 242, 0.08) 40%,
            rgba(232, 190, 250, 0.08) 60%,
            rgba(171, 191, 255, 0.08) 80%,
            rgba(187, 243, 192, 0.08) 100%);
    border: 1px solid rgba(232, 190, 250, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.bundle-packages strong {
    display: block;
    margin-bottom: 12px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundle-packages ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bundle-packages li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-color);
    font-size: 0.9375rem;
}

.bundle-packages li:before {
    content: "✓";
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Bundle Card Actions */
.bundle-card .card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.bundle-card .view-button-small,
.bundle-card .add-to-cart-small {
    flex: 1;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    color: var(--text-color-invert);
    width: fit-content;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(232, 190, 250, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bundle-card .view-button-small:hover,
.bundle-card .add-to-cart-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 190, 250, 0.5);
}

.bundle-card .add-to-cart-small {
    background: linear-gradient(90deg,
            rgba(252, 244, 201, 0.15) 0%,
            rgba(254, 227, 226, 0.15) 20%,
            rgba(251, 205, 242, 0.15) 40%,
            rgba(232, 190, 250, 0.15) 60%,
            rgba(171, 191, 255, 0.15) 80%,
            rgba(187, 243, 192, 0.15) 100%);
    color: rgba(232, 190, 250, 1);
    /* Lila Farbe für Text */
    border: 1px solid rgba(232, 190, 250, 0.4);
}

.bundle-card .add-to-cart-small:hover {
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    color: var(--text-color-invert);
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
        padding: 32px 16px;
    }

    .bundle-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 32px;
        padding: 32px 16px;
    }
}

@media (max-width: 768px) {
    .container {
        margin-top: 80px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 12px;
    }

    .bundle-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 12px;
    }

    .category-thumbnail {
        height: 200px;
    }

    .bundle-visuals {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .category-card-info {
        padding: 20px;
    }

    .bundle-card {
        padding: 24px;
    }

    .category-title {
        font-size: 1.125rem;
    }

    .bundle-info h3 {
        font-size: 1.25rem;
    }

    .bundle-price {
        font-size: 1.875rem;
    }
}