/* Products page specific styles */
.product-category {
    margin-bottom: 60px;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 30px;
}

.product-details {
    flex: 1;
    max-width: 60%;
}

.product-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.product-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-image {
    flex: 1;
    text-align: center;
    max-width: 40%;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.product-cta {
    margin-top: 20px;
}

.product-cta a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.product-cta a:hover {
    background-color: #003d82;
}

/* Featured products section */
.featured-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.featured-product {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.featured-product .product-image {
    flex: 1;
    max-width: 40%;
}

.featured-product .product-content {
    flex: 1;
    max-width: 60%;
    padding: 0;
}

.featured-product:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .product-content,
    .featured-product {
        flex-direction: column !important;
    }
    
    .product-details,
    .product-image,
    .featured-product .product-image,
    .featured-product .product-content {
        max-width: 100%;
    }
    
    .product-image {
        order: -1;
        margin-bottom: 20px;
    }
}
