/* Products Section Styles */

.products-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* Product Card */
.product-card {
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 30px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #B7CE3F 0%, #197DBC 100%) border-box;
}


/* Product Image */
.product-image {
    background: #F5F5F7;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

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

/* Product Title */
.product-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #2B363A;
    margin: 0 0 8px 0;
}

/* Plan Text */
.product-plan-text {
    font-size: 16px;
    font-weight: 500;
    color: #197DBC;
    margin: 0 0 16px 0;
}

/* Product Content */
.product-content {
    flex: 1;
    margin-bottom: 20px;
}

.product-content p {
    margin: 0 0 12px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #2B363A;
}

.product-content strong {
    font-weight: 700;
    color: #151515;
}

/* Price styling in content */
.product-content p:first-child {
    font-size: 32px;
    font-weight: 700;
    color: #2B363A;
    margin-bottom: 16px;
}

.product-content p:first-child strong {
    font-size: 18px;
    font-weight: 500;
}

/* Product Badge */
.product-badge {
    display: inline-block;
    background: #FFFFFF;
    color: #2B363A;
    padding: 2px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Product Button */
.product-button {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    margin-bottom: 16px;
}

/* VAT Text */
.product-vat-text {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    text-align: center;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .products-section {
        padding: 80px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 992px) {
    .products-section {
        padding: 100px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .product-card {
        padding: 40px 28px;
    }
}

/* Data/Minutes/Text Styling */
.product-content p strong:first-child {
    display: block;
    margin-bottom: 4px;
}

/* Ensure proper spacing for list items in content */
.product-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-content ul li {
    margin-bottom: 8px;
    padding-left: 0;
}