*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
    color:#222;
}

/* ===========================
   COVER PAGE
=========================== */

.cover-page{

    width:210mm;
    min-height:297mm;

    margin:0 auto;

    background:#ffffff;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    page-break-after:always;

}

.logo{

    font-size:70px;

    font-weight:bold;

    margin-bottom:25px;

}

.logo-red{

    color:#E30613;

}

.logo-black{

    color:#111;

}

.cover-page h1{

    font-size:38px;

    margin-bottom:20px;

}

.cover-page p{

    color:#666;

    font-size:18px;

}

/* ===========================
   PRODUCT PAGES
=========================== */

#catalogContainer{

    width:210mm;

    margin:auto;

}

.catalog-page{

    width:210mm;

    min-height:297mm;

    background:#fff;

    padding:20mm;

    page-break-after:always;

}

.product-card{

    border:1px solid #ddd;

    border-radius:12px;

    padding:15px;

    margin-bottom:20px;

}

.product-card img{

    width:100%;

    height:220px;

    object-fit:contain;

    background:#fafafa;

    border-bottom:1px solid #eee;

    margin-bottom:15px;

}

.product-name{

    font-size:24px;

    font-weight:bold;

    margin-bottom:10px;

}

.product-info{

    margin-bottom:8px;

    font-size:16px;

}

.product-price{

    color:#E30613;

    font-size:26px;

    font-weight:bold;

    margin:15px 0;

}

.product-description{

    line-height:1.7;

    color:#555;

}
/* ===========================
   PRINT BUTTON
=========================== */

.print-toolbar{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:999;

}

#printBtn{

    background:#E30613;

    color:#fff;

    border:none;

    padding:15px 25px;

    border-radius:12px;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    box-shadow:0 5px 15px rgba(0,0,0,.2);

}

#printBtn:hover{

    background:#c40010;

}

@media print{

    .print-toolbar{

        display:none;

    }

    body{

        background:#fff;

    }

}