/* ============================================
   COMPCARD STYLES - House of Top Models
   ============================================ */

#hotm-print-btn {
    cursor: pointer;
}

/* ---- PÁGINAS ---- */
#hotm-compcard-wrapper {
    width: 210mm;
    font-family: 'Georgia', serif;
}

.cc-page {
    width: 210mm;
    height: 297mm;
    overflow: hidden;
    position: relative;
    page-break-after: always;
}

/* ---- PÁGINA 1 ---- */
.cc-page-1 {
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-page1-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30mm 15mm 20mm;
    box-sizing: border-box;
}

.cc-logo-wrap {
    width: 100%;
    text-align: center;
}

.cc-logo {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
}

.cc-profile-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10mm 0;
}

.cc-profile-img {
    width: 140mm;
    height: 185mm;
    object-fit: cover;
    object-position: top center;
    border: 3px solid #c9a84c;
}

.cc-name-wrap {
    width: 100%;
    text-align: center;
    border-top: 1px solid #c9a84c;
    padding-top: 8mm;
}

.cc-model-id {
    color: #c9a84c;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cc-model-name {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* ---- PÁGINA 2 ---- */
.cc-page-2 {
    background-color: #0a0a0a;
}

.cc-page2-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10mm 12mm;
    box-sizing: border-box;
    gap: 5mm;
}

.cc-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #c9a84c;
    padding-bottom: 4mm;
}

.cc-logo-small {
    max-height: 40px;
    object-fit: contain;
}

.cc-top-name {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.cc-top-id {
    color: #c9a84c;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---- GRID DE FOTOS ---- */
.cc-book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3mm;
    height: 140mm;
}

.cc-book-photo {
    overflow: hidden;
    border: 1px solid #2a2a2a;
}

.cc-book-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.cc-book-photo.cc-empty {
    background-color: #111111;
}

/* ---- SEPARADOR ---- */
.cc-divider-gold {
    height: 1px;
    background: linear-gradient(to right, transparent, #c9a84c, transparent);
    margin: 1mm 0;
}

/* ---- MEDIDAS ---- */
.cc-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2mm;
}

.cc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #111111;
    border: 1px solid #1e1e1e;
    padding: 3mm 2mm;
    text-align: center;
}

.cc-stat-wide {
    grid-column: span 2;
}

.cc-label {
    color: #c9a84c;
    font-size: 7px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-family: 'Arial', sans-serif;
}

.cc-value {
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

/* ---- CONTACTO ---- */
.cc-contact-bar {
    display: flex;
    justify-content: center;
    gap: 15mm;
    padding: 3mm 0;
}

.cc-contact-item {
    color: #c9a84c;
    font-size: 10px;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

/* ---- FOOTER NOMBRE ---- */
.cc-footer-name {
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 700;
    border-top: 1px solid #c9a84c;
    padding-top: 4mm;
    margin-top: auto;
}