/* ============================================
   BOUTONS PUSH - Version optimale hybride
   ============================================ */

/* BASE */
.btn-push {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 7px 25px;
  
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    /*white-space: nowrap;*/
  
    /* Pas de background ici → Géré dans Bricks */
    border: 3px solid #000;
    border-radius: 50px;
    box-shadow: 0 6px 0 0 #000;
  
    cursor: pointer;
    transition: all 0.2s ease;
}

/* ÉTATS */
.btn-push:hover {
    transform: translateY(5px);
    box-shadow: 0 1px 0 0 #000;
}
  
.btn-push:active {
    transform: translateY(5px);
    box-shadow: 0 0px 0 0 #000;
    scale: 0.98;
}
  
/* FLÈCHE */
.btn-push--arrow::after {
    content: '';
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background: url('../img/arrow_btn.svg') no-repeat center / contain;
    transition: transform 0.2s;
}
  
.btn-push--arrow:hover::after {
    transform: translateX(4px);
}
  
/* OUTLINE - Version universelle */
.btn-push--outline {
    background: transparent !important; /* Override Bricks background */
    border-color: currentColor;
    box-shadow: 0 6px 0 0 currentColor;
}
  
.btn-push--outline:hover {
    background: currentColor !important;
    color: #000;
    box-shadow: 0 4px 0 0 currentColor;
}
  
.btn-push--outline:active {
    box-shadow: 0 0px 0 0 currentColor;
}
  
/* TAILLES */
.btn-push--small {
    padding: 14px 28px;
    font-size: 16px;
}
  
.btn-push--large {
    padding: 24px 48px;
    font-size: 20px;
}
  
/* ICÔNE SEULE - Ancienne version (conservée si besoin) */
.btn-push--icon {
    padding: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
}
  
.btn-push--icon i {
    font-size: 24px;
}

/* NOUVEAU : BOUTON POUR ICONE SEULE */
.btn_push_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 3px solid #000;
    border-radius: 50%;
    background: transparent; /* ou personnalisable selon besoins */
    cursor: pointer;
    box-shadow: 0 6px 0 0 #000;
    transition: all 0.2s ease;
    color: #000;
    width: auto; /* largeur auto selon l'icône, pas fixe */
    height: auto;
}

.btn_push_icon i, 
.btn_push_icon svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* États hover/active pour btn_push_icon */
.btn_push_icon:hover {
    transform: translateY(4px);
    box-shadow: 0 1px 0 0 #000;
}

.btn_push_icon:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 0 #000;
    scale: 0.98;
}


  
/* RESPONSIVE */
@media (max-width: 768px) {
    .btn-push {
      padding: 16px 32px;
      font-size: 16px;
    }
    
    .btn-push--large {
      padding: 18px 36px;
      font-size: 18px;
    }
    .btn_push_icon {
      padding: 10px;
    }
}


/* SOLEIL ANIMÉ QUI DÉPASSE */
.soleil_rotate {
    width: 800px !important;
    height: 800px !important;
    max-width: none !important;
    
    position: absolute;
    top: -150px;
    left: -400px;
    
    animation: rotate-sun 20s linear infinite;
    transform-origin: center center;
    will-change: transform;
    z-index: 0;
  }
  
  @keyframes rotate-sun {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  #brxe-tiacww {
    position: relative !important;
    overflow: visible !important;
  }
  
  #brxe-ormuiu {
    overflow: visible !important;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .soleil_rotate {
      width: 250px !important;
      height: 250px !important;
      top: -100px;
      right: -125px;
    }
  }
  