/* ==========================================================
   PRESTASHOP 9.1.4 – HUMMINGBIRD 2
   Colore principale personalizzato
   ========================================================== */

:root,
[data-bs-theme="light"] {
    /* Colore principale */
    --bs-blue: #69b42e;
    --bs-primary: #69b42e;
    --bs-primary-rgb: 105, 180, 46;

    /* Collegamenti */
    --bs-link-color: #69b42e;
    --bs-link-color-rgb: 105, 180, 46;
    --bs-link-hover-color: #518f21;
    --bs-link-hover-color-rgb: 81, 143, 33;

    /* Stati e bordi */
    --bs-primary-text-emphasis: #518f21;
    --bs-primary-bg-subtle: #edf7e5;
    --bs-primary-border-subtle: #b9db9e;
    --bs-focus-ring-color: rgba(105, 180, 46, 0.25);
}


/* ==========================================================
   PULSANTI PRIMARI
   Hummingbird assegna qui colori propri
   ========================================================== */

.btn-primary {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #69b42e;
    --bs-btn-border-color: #69b42e;

    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #518f21;
    --bs-btn-hover-border-color: #518f21;

    --bs-btn-focus-shadow-rgb: 105, 180, 46;

    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #467c1d;
    --bs-btn-active-border-color: #467c1d;

    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: #69b42e;
    --bs-btn-disabled-border-color: #69b42e;
}


/* ==========================================================
   PULSANTI CON SOLO BORDO
   ========================================================== */

.btn-outline-primary {
    --bs-btn-color: #69b42e;
    --bs-btn-border-color: #69b42e;

    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #69b42e;
    --bs-btn-hover-border-color: #69b42e;

    --bs-btn-focus-shadow-rgb: 105, 180, 46;

    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #518f21;
    --bs-btn-active-border-color: #518f21;
}


/* ==========================================================
   ETICHETTE PRODOTTO: NUOVO, ONLINE, ECC.
   ========================================================== */

.product-flags .badge:not(.discount),
.product-flags .product-flag:not(.discount),
.badge.text-bg-primary,
.text-bg-primary {
    background-color: #69b42e !important;
    border-color: #69b42e !important;
    color: #ffffff !important;
}

.product-flags .badge.discount,
.product-flags .product-flag.discount {
    background-color: #ffffff !important;
    border-color: #69b42e !important;
    color: #69b42e !important;
}


/* ==========================================================
   MINIATURA SELEZIONATA NELLA GALLERIA PRODOTTO
   ========================================================== */

.product-images .thumb-container img.selected,
.product-images .thumb.selected,
.product-images .js-thumb.selected,
.product-thumbnails img.selected,
.product-thumbnails .selected {
    border-color: #69b42e !important;
    box-shadow: 0 0 0 1px #69b42e !important;
}


/* ==========================================================
   UTILITÀ BOOTSTRAP
   ========================================================== */

.text-primary {
    color: #69b42e !important;
}

.bg-primary {
    background-color: #69b42e !important;
}

.border-primary {
    border-color: #69b42e !important;
}

.link-primary {
    color: #69b42e !important;
}

.link-primary:hover,
.link-primary:focus {
    color: #518f21 !important;
}


/* ==========================================================
   CAMPI E CONTROLLI IN FOCUS
   ========================================================== */

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: #69b42e !important;
    box-shadow: 0 0 0 0.25rem rgba(105, 180, 46, 0.25) !important;
}

.form-check-input:checked {
    background-color: #69b42e !important;
    border-color: #69b42e !important;
}


/* ==========================================================
   PAGINAZIONE
   ========================================================== */

.pagination {
    --bs-pagination-color: #69b42e;
    --bs-pagination-hover-color: #518f21;
    --bs-pagination-focus-color: #518f21;
    --bs-pagination-active-color: #ffffff;
    --bs-pagination-active-bg: #69b42e;
    --bs-pagination-active-border-color: #69b42e;
}


/* ==========================================================
   MENU, TAB E NAVIGAZIONE
   ========================================================== */

.nav-pills {
    --bs-nav-pills-link-active-bg: #69b42e;
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: #69b42e;
}


/* ==========================================================
   RASSICURAZIONI CLIENTE
   Titolo/link al passaggio del mouse
   ========================================================== */

.blockreassurance .reassurance--link:hover,
.blockreassurance .reassurance--link:hover .reassurance__title {
    color: #69b42e !important;
}


/* ==========================================================
   SVG CHE UTILIZZANO currentColor
   ========================================================== */

.text-primary svg,
.btn-primary svg,
.btn-outline-primary svg {
    fill: currentColor;
    stroke: currentColor;
}