.page-header {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    margin: 0 0 10px;
    color: var(--primary-dark);
}

.page-header p {
    margin: 0;
    color: var(--muted);
}

.products-page {
    padding: 40px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    background: #eef2f7;
    color: var(--muted);
}

.product-content {
    padding: 18px;
}

.product-category {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.35;
}

.product-description {
    min-height: 48px;
    color: var(--muted);
    font-size: 14px;
}

.product-stock {
    margin: 12px 0;
    color: #15803d;
    font-weight: 700;
}

.product-price {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 900;
}

.btn-view-product {
    display: block;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    overflow: hidden;
    background: #fff;
}

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

.product-image {
    height: 240px;
    padding: 16px;
}

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