/* ============================================================
   Jacaré Shop – Custom Theme (Verde Escuro)
   Sobrescreve as variáveis primary do Bootstrap/Metronic
   ============================================================ */

:root {
    --bs-primary:              #1b4332;
    --bs-primary-rgb:          27, 67, 50;
    --bs-primary-active:       #143327;
    --bs-link-color:           #1b4332;
    --bs-link-hover-color:     #143327;

    /* Metronic primary tokens */
    --kt-primary:              #1b4332;
    --kt-primary-active:       #143327;
    --kt-primary-light:        #d8f3dc;
    --kt-primary-light-active: #b7e4c7;
    --kt-primary-inverse:      #ffffff;
}

/* Botões primary */
.btn-primary {
    --bs-btn-bg:               #1b4332;
    --bs-btn-border-color:     #1b4332;
    --bs-btn-hover-bg:         #143327;
    --bs-btn-hover-border-color: #143327;
    --bs-btn-active-bg:        #0f2a1f;
    --bs-btn-active-border-color: #0f2a1f;
}

.btn-light-primary {
    color: #1b4332;
    background-color: #d8f3dc;
}
.btn-light-primary:hover {
    color: #fff;
    background-color: #1b4332;
}

/* Badges */
.badge-primary         { background-color: #1b4332 !important; }
.badge-light-primary   { background-color: #d8f3dc !important; color: #1b4332 !important; }

/* Links e textos */
.text-primary          { color: #1b4332 !important; }
.text-hover-primary:hover { color: #1b4332 !important; }
.bg-primary            { background-color: #1b4332 !important; }
.border-primary        { border-color: #1b4332 !important; }

/* Navbar */
.app-header {
    border-bottom: 2px solid #1b4332;
}

/* Active / focus */
.form-control:focus,
.form-select:focus {
    border-color: #1b4332;
    box-shadow: 0 0 0 0.25rem rgba(27, 67, 50, 0.20);
}

/* Paginação */
.page-item.active .page-link {
    background-color: #1b4332;
    border-color: #1b4332;
}
.page-link { color: #1b4332; }
.page-link:hover { color: #143327; }
