body {
    margin: 0;
    background: #cfcfcf;
    font-family: Arial, sans-serif;
}

/* Simulazione A4 su schermo */
.catalog-page {
    width: 794px;   /* proporzione A4 */
    height: 1123px;
    background: white;
    margin: 40px auto;
    display: flex;
    justify-content: center;
}

.page-inner {
    width: 90%;
    height: 95%;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

/* GRID 2x3 */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
}

.product-card {
    border: 1px solid #000;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.catalog-logo {
    height: 30px !important;
    width: auto;
}

.page-header {
    height: 120px;
}