/* Products Hero */
.products-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../assets/images/products-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.products-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Products Grid */
.products-grid {
    padding: 80px 0;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-content ul {
    list-style: none;
    margin: 20px 0;
}

.product-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.product-content ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.product-cta {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.product-cta:hover {
    background: var(--secondary-color);
}