.cl-legal a {
    display: inline !important;
  }
  /* =========================================
   BOUTON OR PREMIUM + SHINE + SOULIGNEMENT DELUXE
   ========================================= */

.cl-btn-gold {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.7rem 2.4rem;
    font-size: 0.9rem;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    
    color: #ffffff;
    background: linear-gradient(135deg, #c89c4f, #f5d19a, #b8832b);
    border: none;
    border-radius: 0;

    box-shadow: 0 10px 22px rgba(148, 117, 54, 0.35);
    cursor: pointer;

    margin: 0 auto 1.8rem;

    text-decoration: none;
    transition: background 0.25s ease, 
                box-shadow 0.25s ease,
                transform 0.25s ease;
}

/* SHINE diagonal */
.cl-btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: cl-gold-shine 5.5s cubic-bezier(0.45, 0.05, 0.30, 0.95) infinite;
}

/* Soulignement OR Deluxe */
.cl-btn-gold::after {
    content: "";
    position: absolute;

    left: 18%;
    right: 18%;
    bottom: 0.70rem;

    height: 1px;
    background: rgba(255, 255, 255, 0.85);
    opacity: 0.9;

    transition: all 0.25s ease;
}

/* Hover Deluxe */
.cl-btn-gold:hover {
    background: linear-gradient(135deg, #d9b260, #ffe2b3, #c89237);
    box-shadow: 0 16px 32px rgba(148, 117, 54, 0.50);
    transform: translateY(-2px);
}

.cl-btn-gold:hover::after {
    left: 14%;
    right: 14%;
    opacity: 1;
}

/* Animation SHINE */
@keyframes cl-gold-shine {
  0%, 75%, 100% { left: -70%; }
  40% { left: 130%; }
}
