.product-card-modern {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(6, 99, 111, 0.15);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 32px rgba(6, 99, 111, 0.15);
    border-color: rgba(108, 171, 131, 0.3);
}

.product-card-modern.monats-highlight-card {
    border: 2px solid #6CAB83;
    box-shadow: 0 4px 16px rgba(108, 171, 131, 0.25);
}

.product-card-modern.monats-highlight-card:hover {
    box-shadow: 0 20px 40px rgba(108, 171, 131, 0.35);
    border-color: #6CAB83;
}

.countdown-timer-small {
    background: linear-gradient(135deg, #6CAB83 0%, #05a74e 100%);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.75rem;
}

.countdown-timer-small .countdown-text {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 0.35rem;
}

.countdown-timer-small .countdown-display {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    align-items: center;
}

.countdown-timer-small .countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-timer-small .countdown-number {
    font-size: 1.3rem;
    line-height: 1;
}

.countdown-timer-small .countdown-label {
    font-size: 0.55rem;
    opacity: 0.85;
}

.product-card-header {
    background: linear-gradient(135deg, #06636F 0%, #0a7a8a 100%);
    color: white;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(180, 213, 148, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.category-badge-modern {
    position: relative;
    background: rgba(180, 213, 148, 0.95);
    color: #06636F;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    display: inline-block;
    width: fit-content;
}

.product-name-modern {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: white;
    position: relative;
    z-index: 1;
    word-break: break-word;
    line-height: 1.3;
}

.product-body-modern {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price-section-modern {
    background: linear-gradient(135deg, rgba(6, 99, 111, 0.05), rgba(108, 171, 131, 0.05));
    border-left: 4px solid #6CAB83;
    padding: 1rem;
    border-radius: 8px;
    margin: 0 0 1rem 0;
}

.price-label {
    font-size: 0.85rem;
    color: #6CAB83;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #06636F;
    margin: 0.5rem 0 0 0;
}

.price-duration {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.25rem;
}

.partnerships-section {
    margin-top: 1.5rem;
    padding: 1rem;
    border-top: none;
    background: linear-gradient(135deg, rgba(6, 99, 111, 0.04), rgba(108, 171, 131, 0.04));
    border-radius: 12px;
}

.partnerships-label {
    font-size: 0.85rem;
    color: #06636F;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 1rem;
}

.partnership-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e0e8e7;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.partnership-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    color: #333;
    transition: all 0.2s ease;
    border-bottom: 1px solid #eef3f2;
    gap: 1rem;
    min-height: 60px;
}

.partnership-item:last-child {
    border-bottom: none;
}

.partnership-item:nth-child(odd) {
    background: #ffffff;
}

.partnership-item:nth-child(even) {
    background: #f8fbfa;
}

.partnership-item:hover {
    background: #f0f8f7;
    color: #06636F;
}

.partnership-item-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.job-logo-small {
    width: 80px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.partnership-item-duration {
    white-space: nowrap;
    font-size: 0.75rem;
    color: #666;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .partnership-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem 0.85rem;
        min-height: auto;
    }

    .partnership-item-logo-section {
        width: 100%;
        gap: 0.6rem;
    }

    .job-logo-small {
        width: 60px;
        height: 32px;
    }

    .partnership-item-duration {
        white-space: normal;
        width: 100%;
        font-size: 0.7rem;
        margin-left: 0.4rem;
    }

    .partnership-chip-badge {
        width: 100%;
        text-align: center;
        border-radius: 6px;
    }
}

.partnership-chip-badge {
    background: #6CAB83;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0 0 6px 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.partnership-chip-badge:hover {
    background: #05a74e;
    transform: scale(1.05);
}

.cta-button-modern {
    background: linear-gradient(135deg, #06636F, #0a7a8a);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.cta-button-modern:hover {
    background: linear-gradient(135deg, #04454d, #06636F);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(6, 99, 111, 0.25);
    color: white;
}

.zoom-on-hover-animated {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoom-on-hover-animated:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.result-products-grid > [class*="col-"] {
    display: flex;
}

.result-products-grid > [class*="col-"] .product-card-modern {
    width: 100%;
}
