/* ===== GLOBAL ===== */
body {
    font-family: "Georgia", "Times New Roman", serif;
    background: #fffaf5;
}

/* ===== MAIN CONTAINER ===== */
.sria-print {
    background: #fff;
    padding: 25px;
    border: 2px solid #c9a14a;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    position: relative;
}

/* ===== HEADER ===== */
.sria-print h1 {
    text-align: center;
    color: #4b1e1e;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.sria-print h2 {
    color: #4b1e1e;
    margin: 0;
}

.sria-print p {
    font-size: 13px;
    color: #333;
}

/* ===== GOLD DIVIDER ===== */
hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #c9a14a, transparent);
    margin: 10px 0 15px;
}

/* ===== SECTION TITLES ===== */
h3 {
    background: #4b1e1e;
    color: #fff;
    padding: 6px 10px;
    border-left: 5px solid #c9a14a;
    font-size: 14px;
    margin-top: 20px;
}

/* ===== TABLE ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 12px;
}

table td {
    border: 1px solid #e5d3a3;
    padding: 6px;
}

table tr:nth-child(even) {
    background: #fffaf5;
}

/* ===== LABELS ===== */
td:first-child {
    font-weight: 600;
    color: #4b1e1e;
    width: 25%;
}

/* ===== WATERMARK ===== */
.watermark {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: url("https://sriadhirafashions.com/wp-content/uploads/2025/12/logo_new-300x300.jpg") no-repeat center;
    background-size: contain;
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

/* ===== NOTES ===== */
.sria-print h3 + p {
    background: #fffaf5;
    padding: 10px;
    border-left: 4px solid #c9a14a;
    border-radius: 6px;
}

/* ===== PRINT PERFECT ===== */
@media print {

    @page {
        size: A4;
        margin: 12mm;
    }

    body * {
        visibility: hidden;
    }

    .sria-print, .sria-print * {
        visibility: visible;
    }

    .sria-print {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: none;
    }

    button, form {
        display: none !important;
    }
}