/* === A3 Sheet Layout (precise mm) === */

.sheet {
    width: 420mm;
    height: 297mm;
    display: grid;
    grid-template-columns: repeat(4, 105mm);
    grid-template-rows: repeat(2, 148.5mm);
    background: #fff;
    border: 0.1mm solid #999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
}

/* Sector */
.sector {
    width: 105mm;
    height: 148.5mm;
    border: 0.1mm dashed #bbb;
    padding: 2.5mm;
    overflow: hidden;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 6pt;
    line-height: 1.25;
    color: #111;
}

.sector-empty {
    background: #fafafa;
}

/* Sector content structure */
.sector-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sector-header {
    display: flex;
    align-items: center;
    gap: 1.5mm;
    padding-bottom: 1.2mm;
    margin-bottom: 1.5mm;
    border-bottom: 0.2mm solid #333;
}

.sector-lang-badge {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    font-size: 5pt;
    font-weight: 700;
    padding: 0.3mm 1.2mm;
    border-radius: 0.5mm;
    letter-spacing: 0.3pt;
    flex-shrink: 0;
    align-self: flex-start;
}

.sector-body {
    flex: 1;
    overflow: hidden;
}

/* Sections */
.section {
    margin-bottom: 1mm;
}

.section-title {
    font-weight: 700;
    font-size: 6pt;
    margin-bottom: 0.3mm;
    color: #000;
}

.section p {
    margin: 0;
    font-size: 5.5pt;
    line-height: 1.25;
}

.section-notice-top {
    background: #f5f5f5;
    padding: 0.8mm;
    margin-bottom: 1.5mm;
    border: 0.1mm solid #ddd;
}

.section-notice-top p {
    font-size: 5.5pt;
    text-align: center;
}

/* Product info sector */
.product-info-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1mm;
    padding-top: 5mm;
}

.product-info-body p {
    font-size: 7pt;
    margin: 0;
}

.info-label {
    font-size: 6pt !important;
    color: #666;
}

.info-company {
    font-size: 9pt !important;
}

.info-address {
    font-size: 6.5pt !important;
    line-height: 1.4;
}

.info-web {
    color: #3a7bd5;
    font-size: 7pt !important;
}

.info-separator {
    width: 20mm;
    height: 0.2mm;
    background: #ccc;
    margin: 2mm 0;
}

/* Cover sector */
.sector-cover .cover-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5mm 3mm;
}

.cover-logo {
    width: 60mm;
    height: auto;
    margin-bottom: 4mm;
}

.cover-separator {
    width: 30mm;
    height: 0.2mm;
    background: #ccc;
    margin: 3mm 0;
}

.cover-product-name {
    font-size: 10pt;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.3pt;
    margin: 0;
}

.cover-model {
    font-size: 7pt;
    color: #666;
    margin: 1mm 0 0 0;
}

.cover-names {
    display: flex;
    flex-direction: column;
    gap: 0.8mm;
}

.cover-localized {
    font-size: 5.5pt;
    color: #444;
    margin: 0;
    line-height: 1.3;
}

/* Info sector logo */
.info-logo {
    width: 35mm;
    height: auto;
    margin-bottom: 1.5mm;
}

/* Info blocks */
.info-block {
    width: 100%;
    margin-bottom: 1.5mm;
}

.info-symbol-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5mm;
    text-align: left;
}

.info-symbol {
    width: 5mm;
    height: 5mm;
    flex-shrink: 0;
}

.info-symbol-row .info-label {
    font-size: 4.5pt !important;
    color: #666;
    margin: 0;
}

.info-symbol-row .info-value {
    font-size: 5pt !important;
    margin: 0;
    line-height: 1.3;
}

.info-symbol-row .info-company {
    font-size: 5.5pt !important;
    margin: 0;
}

.info-symbol-row .info-web {
    font-size: 5pt !important;
    margin: 0;
}

/* Symbols grid */
.info-symbols-grid {
    display: flex;
    justify-content: center;
    gap: 3mm;
    margin: 2mm 0;
    flex-wrap: wrap;
}

.info-symbol-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5mm;
}

.info-symbol-item span {
    font-size: 5pt;
    color: #333;
}

/* CE mark */
.info-ce-block {
    margin: 1mm 0;
}

.info-ce {
    width: 10mm;
    height: auto;
}

.info-origin {
    font-size: 5.5pt !important;
    color: #555;
    margin-top: 1mm;
}

/* EAN barcode */
.info-barcode {
    margin-top: 2mm;
}

.info-barcode svg {
    width: 35mm;
    height: auto;
}

