/* =============================================
   Loveroom Gift Card — Print Styles
   @media print (loaded with media="print")
   ============================================= */

/* Hide everything except the card */
body * {
    visibility: hidden !important;
}

/* Show only the preview card */
#lgc-preview,
#lgc-preview *,
.lgc-card,
.lgc-card * {
    visibility: visible !important;
}

#lgc-preview {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 210mm !important;
    height: 148mm !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    z-index: 999999 !important;
}

/* Force backgrounds to print */
#lgc-preview,
#lgc-preview * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
}

/* A5 landscape page setup */
@page {
    size: A5 landscape;
    margin: 0;
}

/* Hide WordPress header, footer, sidebar, admin bar */
#wpadminbar,
.site-header,
.site-footer,
.site-navigation,
.sidebar,
header,
footer,
nav,
.lgc-builder__controls,
.lgc-builder__header,
.lgc-preview-title,
.lgc-sticky-preview > h3 {
    display: none !important;
}
