/* Winner Card - Special styling */
.winner-card {
    max-width: 1300px;
    margin: 0 auto 30px;
    background: white;
    border: 4px solid #4caf50;  /* Thicker green border */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);  /* Green glow shadow */
    position: relative;
}

/* Winner Banner at top */
.winner-banner {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.winner-banner::before {
    content: '🏆 ';
}

.winner-banner::after {
    content: ' 🏆';
}

.winner-content {
    display: grid;
    grid-template-columns: 350px 1fr 380px;
    gap: 0;
}

.winner-image-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);  /* Light green gradient */
    border-right: 2px solid #4caf50;
    position: relative;
}

.winner-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.winner-product-image {
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.winner-features-section {
    padding: 40px;
    border-right: 2px solid #4caf50;
}

.winner-product-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #4caf50;  /* Green border */
}

.winner-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.winner-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 1.3;
}

.winner-feature-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 15px;
    font-weight: bold;
    margin-top: 2px;
}

.winner-feature-icon.pro {
    background: #4caf50;
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.winner-feature-icon.con {
    background: #f44336;
    color: white;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

.winner-feature-title {
    font-weight: 700;
    color: #000000;
}

.winner-feature-description {
    color: #000000;
    font-weight: 400;
}

.winner-score-section {
    padding: 40px 30px;
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);  /* Light green gradient */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.winner-score-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.winner-score-number {
    font-size: 90px;  /* Bigger than others */
    font-weight: 700;
    color: #4caf50;  /* Green color */
    line-height: 1;
    margin-bottom: 10px;
}

.winner-score-label {
    font-size: 26px;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 10px;
}

.winner-stars {
    color: #ffa500;
    font-size: 40px;  /* Bigger stars */
    margin-bottom: 5px;
}

.winner-user-ratings {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.winner-cta-button {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);  /* Green button */
    color: white;
    border: none;
    padding: 18px 40px;  /* Slightly bigger */
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.winner-cta-button:hover {
    background: linear-gradient(135deg, #45a049 0%, #388e3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.winner-discount-banner {
    background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
    color: white;
    padding: 18px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.winner-discount-text {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.winner-discount-date {
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .winner-content {
        grid-template-columns: 1fr;
    }
    
    .winner-image-section {
        border-right: none;
        border-bottom: 2px solid #4caf50;
        position: relative;
        padding-top: 80px;  /* Add more top padding to make room for badge */
    }
    
    .winner-features-section {
        border-right: none;
        border-bottom: 2px solid #4caf50;
    }
    
    .winner-badge {
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        max-width: 90%;  /* Allow badge to be wider */
        white-space: nowrap;  /* Prevent text wrapping */
    }
    
    .winner-product-image {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .winner-banner {
        font-size: 16px;
        padding: 10px;
    }
    
    .winner-image-section {
        padding-top: 90px;
    }
    
    .winner-badge {
        top: 20px;
        font-size: 14px;  /* Slightly smaller text */
        padding: 8px 16px;
        max-width: 95%;  /* Allow more width on small screens */
        white-space: normal;  /* Allow wrapping only if absolutely needed */
        text-align: center;
        line-height: 1.3;
    }
    
    .winner-product-title {
        font-size: 24px;
    }
    
    .winner-score-number {
        font-size: 70px;
    }
    
    .winner-score-heading {
        font-size: 20px;
    }
}
