
* {
    font-family: 'Roboto', sans-serif !important;
}

/* Product Card - Grey version for #2, #3, etc */
.product-card-grey {
    max-width: 1300px;
    margin: 0 auto 30px;
    background: white;
    border: 2px solid #d0d0d0;  /* Grey border */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);  /* Stronger shadow */
}

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

.image-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-right: 2px solid #e0e0e0;
    position: relative;
}

/* Grey Badge for #2, #3 */
.badge-grey {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #808080;  /* Grey color */
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
}

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

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

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

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

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

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

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

.feature-icon.pro {
    background: #4caf50;
    color: white;
}

.feature-icon.con {
    background: #f44336;
    color: white;
}

.feature-title {
    font-weight: 700;
    color: #1f2937;
}

.feature-description {
    color: #4b5563;
    font-weight: 400;
}

.score-section {
    padding: 40px 30px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.score-number {
    font-size: 80px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 5px;
}

.score-label {
    font-size: 24px;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 5px;
}

.stars {
    color: #ffa500;
    font-size: 36px;
    margin-bottom: 3px;
}

.user-ratings {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 400;
}

.cta-button {
    background: #ff9800;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #f57c00;
}

.discount-banner {
    background: #f44336;
    color: white;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
}

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

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

@media (max-width: 1024px) {
    .card-content {
        grid-template-columns: 1fr;
    }
    
    .image-section {
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
        position: relative;
    }
    
    .features-section {
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
    }
    
    .badge-grey {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .product-image {
        margin-top: 40px;
    }
}

@media (max-width: 640px) {
    .product-title {
        font-size: 24px;
    }
    .score-number {
        font-size: 60px;
    }
    .score-heading {
        font-size: 20px;
    }
}
