.woodmart-product-printer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
}

.woodmart-product-printer-container .product-image img {
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.product-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.product-short-description,
.product-description,
.product-attributes {
    margin-bottom: 30px;
}

.product-attributes .attribute {
    margin-bottom: 10px;
}

.print-product-button {
    display: block;
    margin: 30px auto;
    padding: 10px 20px;
    background: #ffa500 !important;
    color: white;
    border: none;
    border-radius: 10px !important;
    cursor: pointer;
    font-size: 16px;
}

.print-product-button:hover {
    background: #F8BD19 !important;
}

@media print {
    .print-product-button {
        display: none;
    }
    
    body {
        background: #fff !important;
        color: #000 !important;
    }
    
    .woodmart-product-printer-container {
        max-width: 100%;
        padding: 0;
    }
}