/* nav_buttons.css — Boutons harmonisés et esthétiques */
.nav-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.nav-buttons .btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #164912, #29831b);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.15s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-buttons .btn:hover {
    background: linear-gradient(135deg, #022e0c, #04220d);
    transform: translateY(-2px);
}

.nav-buttons .btn:active {
    transform: translateY(0);
    background: linear-gradient(135deg, #02300e, #024a10);
}

.nav-buttons .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 60, 15, 0.4);
}
/* ===== Ajout Promo: icône sur le bouton Promotions ===== */
.nav-buttons a[href*="page=promotions"]{
  position: relative;
  padding-left: 44px;
}
.nav-buttons a[href*="page=promotions"]::before{
  content: "";
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  background: no-repeat center/contain url("../../assets/images/tolpilejetons.png");
}

