﻿/* === GLOBAL FONT & THEME COLORS === */
* {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #555555;
}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
}

/* === HEADER BUTTONS === */
#signin-btn,
#signout-btn,
#go-pro-btn,
button,
.btn,
.download-btn {
    background-color: #38B6FF;
    color: #ffffff !important;
    border: 1px solid #38B6FF;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* === FILTER DROPDOWNS === */
select {
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    background: #fff;
    color: #555555;
}

/* === MODEL GRID === */
#catalog-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* === MODEL CARD === */
.model-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    background: #ffffff;
}

.model-card-thumb {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 6px;
    background: #f5f5f5;
}

.model-card-title {
    font-size: 15px;
    font-weight: 600;
    margin: 10px 0 4px 0;
    color: #555555;
}

.model-card-meta {
    font-size: 13px;
    line-height: 18px;
    color: #555555;
    margin-bottom: 10px;
}

.model-card-actions {
    text-align: center;
}

/* === PAGINATION === */
#pagination-container {
    text-align: center;
    margin: 25px 0;
}

#page-indicator {
    font-size: 14px;
    font-weight: 500;
}

/* === MODEL COUNTER — MATCH TAGLINE + FOOTER EXACTLY === */
#model-count {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;

    /* JS sets an inline color; !important wins over that */
    color: #A6A8AB !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
}

/* === MUTED TEXT (tagline under filters) === */
.text-muted {
    color: #A6A8AB;
}

/* === FOOTER — FULL MATCH TO TAGLINE === */
footer,
.site-footer {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    font-size: 14px;
    font-weight: 400;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #A6A8AB;

    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

footer a,
.site-footer a {
    color: #A6A8AB;
    text-decoration: underline;
}

footer span,
.site-footer span,
footer div,
.site-footer div,
footer p,
.site-footer p {
    color: #A6A8AB;
}



