﻿@font-face {
    font-family: B Titr;
    src: url('font/B Titr Bold.ttf');
}

@font-face {
    font-family: B Nazanin;
    src: url('font/B Nazanin.ttf');
}

@font-face {
    font-family: B Lotus;
    src: url('font/B Lotus.ttf');
}



body {
    margin: 0;
    background: #fff;
    font-family: Peyda, sans-serif;
    color: #000;
}

.page {
    width: 210mm;
    min-height: 297mm;
    padding: 15mm;
    margin: auto;
}

/* Header */
.top-header {
    text-align: center;
    margin-bottom: 18px;
}

.brand-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.bird {
    width: 70px;
    fill: #f9bd03; /* طلایی پرینت‌سیف */
}

.brand-box {
    border: 1px solid #f9bd03;
    padding: 4px;
    border-radius: 5px;
    font-weight: 700;
}

.fa-title {
    margin-top: 6px;
    font-size: 16px;
}

/* Table */
.price-table {
    width: 88%;
    border: 2px solid #f9bd03;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 9px;
    border-collapse: collapse;
}

    .price-table th,
    .price-table td {
        border: 1px solid #000;
        padding: 6px 8px;
        text-align: center;
    }

    .price-table thead th {
        font-weight: 700;
    }
/* Table */
.header-table {
    width: 88%;
    font-family: Peyda;
    border: 2px solid #f9bd03;
    border-radius: 5px;
    font-size: 18px;
    margin-bottom: 9px;
    font-weight: 700;
}

    .header-table th,
    .header-table td {
       
        text-align: center;
    }

    .header-table thead th {
        font-weight: 700;
    }
/* Notes */
.notes {
    margin-top: 12px;
    font-size: 13px;
}

    .notes ul {
        margin: 0;
        padding-right: 18px;
    }

/* Specs */
.specs {
    width: 85%;
    margin-top: 9px;
    
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    font-size: 13px;

  
    border: 2px solid #f9bd03;
    border-radius: 5px;
 
    margin-bottom: 9px;
    border-collapse: collapse;
}

/* Print */
@media print {
    .page {
        padding: 3mm;
    }
}

.price-table {
    position: relative;
    border-collapse: collapse;
}

    .price-table::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('/Content/vslight.png');
        background-repeat: repeat;
        background-size: 80px;
        opacity: 0.02; /* شدت کم‌رنگی لوگو */
        pointer-events: none;
        z-index: 0;
    }

    .price-table th,
    .price-table td {
        position: relative;
        z-index: 1;
    }