/* frontend/public/css/products.css */
.products-page {
    min-height: 100vh;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.product-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: #d32f2f;
}

.product-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: #111;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-info .price {
    color: #d32f2f;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
}

.btn-view {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #d32f2f;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.3s;
    width: 100%;
}

.btn-view:hover {
    background-color: #d32f2f;
}