.model-stats {
    max-width: 960px;
    margin: 3rem auto 2rem;
    padding: 0 1rem;
    font-family: inherit;
}

.model-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.stat-card {
    background: #f5f3ee;
    border-radius: 8px;
    padding: 1rem 1.25rem;
}

.stat-card__label {
    font-size: 15px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
    font-weight: 500;
}

.stat-card__value {
    font-size: 23px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.1;
}

.stat-card__unit {
    font-size: 15px;
    color: #aaa;
    margin-top: 3px;
}

@media (max-width: 600px) {
    .model-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Setcard Button Styles */
.model-actions {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.btn-setcard {
    background: var(--dark-red, #7a1c2e);
    color: #fff;
    border: none;
    padding: 0.8rem 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.btn-setcard:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* PDF Export Fixes */
@media print {
    .btn-setcard, .footer-nav, .btn-suche, .site-nav, .btn-close, .btn-prev, .btn-next {
        display: none !important;
    }
    
    body {
        background: #fff !important;
    }
    
    .model-detail-container {
        padding: 0 !important;
    }
}

/* Helper for PDF Export to ensure fonts and styles are applied in the clone */
.pdf-export-container {
    background: #f7f4f0 !important;
}

.pdf-export-container .model-headline {
    margin-top: 0;
}

.pdf-export-container .site-footer {
    margin-top: 2rem !important;
    padding: 2rem 1rem !important;
}

.pdf-export-container .photo-card {
    transform: none !important; /* No rotation in PDF for cleaner look and better fit */
    break-inside: avoid;
}

.pdf-export-container .model-gallery-collage {
    column-count: 3 !important; /* Force 3 columns for better A4 fit */
}