/* Products Page Styles (based on index-styles.css) */

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.section-title h2 {
    font-size: 2rem;
    color: #6a1b9a;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #6a1b9a, #9c27b0);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 12px 20px 12px;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.product-card img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
}
.product-title {
    margin-bottom: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    letter-spacing: 1px;
    text-align: center;
}
.product-title a {
    color: #111;
    text-decoration: none;
}
.product-title a:hover {
    color: #6a1b9a;
    text-decoration: underline;
}
.product-price {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #222;
    text-align: center;
}
.add-to-cart-btn {
    background: linear-gradient(90deg, #6a1b9a 0%, #9c27b0 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(156,39,176,0.08);
}
.add-to-cart-btn:hover {
    background: linear-gradient(90deg, #9c27b0 0%, #6a1b9a 100%);
    box-shadow: 0 4px 16px rgba(156,39,176,0.15);
}
.no-products, .no-categories {
    color: #aaa;
    font-size: 1.1rem;
    text-align: center;
    padding: 48px 0;
}
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .product-card img {
        max-width: 100%;
        height: 160px;
    }
} 