/*------------------------PAGE DACCUEIL INDEX---------------------------*/
/*////////////////////////////////////////////////////////////////*/

.expanded-mode .accueil-container{
  display: none;
}

.accueil-container{
  margin-left: 5%;
  margin-right: 5%;
}

.hero-section {
  position: relative;
  padding: 30px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  border-radius: 20px;
  margin: 20px 0 40px 0;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Logo flottant */


.hero-logo {
  width: 200px;
  height: 200px;
  opacity: 0.9;
  animation: pulse 5s infinite;
  box-shadow: 0px 0px 110px rgba(240, 185, 11, 0.46);
  border-radius: 100%;
  background: #f0b90b33;
  filter: drop-shadow(0 1px 2px rgb(240, 185, 11));
}

.logo-glow {
  display: none;
}

.hero-logo-wrapper{
  width: 40%;
  justify-content: center;
  display: flex;
}

/* Texte et contenu */
.hero-text-wrapper {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  margin: 0 0 20px 0;
  line-height: 1.2;
  animation: slideInRight 0.8s ease-out;
}

.welcome-text {
  display: block;
  font-size: 1.2rem;
  color: #888;
  font-weight: 400;
  margin-bottom: 8px;
}

.brand-name {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: #555;
  text-shadow: 0 2px 10px rgba(112, 112, 112, 0.1);
}
.brand-name b{
  color:#f0b90b;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 35px;
  animation: slideInRight 0.8s ease-out 0.2s both;
}

/* Boutons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  animation: slideInRight 0.8s ease-out 0.4s both;
}

.hero-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.primary-btn {
  background: linear-gradient(135deg, #707070 0%, #505050 100%);
  color: white;
  box-shadow: 0 5px 20px rgba(112, 112, 112, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(112, 112, 112, 0.4);
}

.secondary-btn {
  background: white;
  color: #707070;
  border: 1px solid #70707052;
  box-shadow: 0 5px 20px rgba(112, 112, 112, 0.1);
}

.secondary-btn:hover {
  background: #f8f8f8;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(112, 112, 112, 0.2);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.hero-btn:hover .btn-shine {
  left: 100%;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #707070;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #ddd;
}

.accueil-container .stat-item span {
  font-weight: 500;
  font-size: 12px;
  color: #66666691;
}

.accueil-container .stat-item {
 display: flex;
  align-items: center;
  margin: 5px;
  flex-direction: column-reverse;
  gap: 10px;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(2deg); }
  50% { transform: translateY(5px) rotate(-1deg); }
  75% { transform: translateY(-5px) rotate(1deg); }
}

@keyframes floatRandom {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-logo {
    width: 150px;
    height: 150px;
  }
  
  .brand-name {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
}


@media (max-width: 768px) {
  .hero-logo {
  margin-left: 0%;
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}
}

@media (max-width: 576px) {
  .hero-section {
    padding: 40px 15px;
  }
  
  .brand-name {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }

}







/*////////////////////////////////////////////////////////////////////
--------------------------Popup de Confirmation Bannière - Styles Spécifiques---------------------------------
/////////////////////////////////////////////////////////////////////*/

    /* Popup de Confirmation Bannière - Styles Spécifiques */
.banner-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    /* backdrop-filter: blur(8px); DISABLED - Performance */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-success-overlay.banner-success-show {
    opacity: 1;
    visibility: visible;
}

.banner-success-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    max-width: 480px;
    width: 90%;
    position: relative;
    overflow: hidden;
    overflow-y: scroll;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-success-overlay.banner-success-show .banner-success-container {
    transform: scale(1) translateY(0);
}

/* En-tête du popup avec gradient et icône animée */
.banner-success-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 32px 32px 24px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-success-header.restore{
  background: linear-gradient(135deg, #1072b9 0%, #059669 100%);
}

.banner-success-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: banner-success-shimmer 3s ease-in-out infinite;
}

@keyframes banner-success-shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(180deg); }
}

.banner-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    position: relative;
    z-index: 1;
    animation: banner-success-bounce 0.6s ease-out 0.2s both;
}

@keyframes banner-success-bounce {
    0% { transform: scale(0) rotate(-180deg); }
    50% { transform: scale(1.2) rotate(-90deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.banner-success-icon i {
    font-size: 36px;
    color: white;
    animation: banner-success-pulse 2s ease-in-out infinite;
}

@keyframes banner-success-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.banner-success-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    position: relative;
    z-index: 1;
    animation: banner-success-slide-up 0.5s ease-out 0.4s both;
}

.banner-success-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 1;
    animation: banner-success-slide-up 0.5s ease-out 0.6s both;
}

@keyframes banner-success-slide-up {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Corps du popup */
.banner-success-body {
    padding: 32px;
}

.banner-success-message {
    color: #e5e7eb;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 24px 0;
    animation: banner-success-fade-in 0.5s ease-out 0.8s both;
}

@keyframes banner-success-fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Informations détaillées */
.banner-success-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin: 24px 0;
    animation: banner-success-fade-in 0.3s ease-out 0.3s both;
}

.banner-success-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-success-detail-item:last-child {
    border-bottom: none;
}

.banner-success-detail-label {
    color: #9ca3af;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-success-detail-value {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

/* Bouton d'action */
.banner-success-actions {
    display: flex;
    justify-content: center;
    padding: 0 32px 32px 32px;
}

.banner-success-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: banner-success-fade-in 0.3s ease-out 0.3s both;
    min-width: 160px;
    justify-content: center;
}
.banner-success-btn.restore{
background: linear-gradient(135deg, #1072b9 0%, #059669 100%);
}
.banner-success-btn.restore:hover{
background: linear-gradient(135deg, #1072b9 0%, #059669 100%);
}

.banner-success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.banner-success-btn:active {
    transform: translateY(0);
}

.banner-success-btn i {
    font-size: 18px;
}

/* Bouton de fermeture */
.banner-success-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 2;
}

.banner-success-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(90deg);
}

/* Animations d'entrée/sortie */
.banner-success-overlay.banner-success-hide {
    opacity: 0;
    visibility: hidden;
}

.banner-success-overlay.banner-success-hide .banner-success-container {
    transform: scale(0.8) translateY(-20px);
}

/* Responsive */
@media (max-width: 640px) {
    .banner-success-container {
        width: 95%;
        margin: 20px;
    }
    
    .banner-success-header {
        padding: 24px 24px 20px 24px;
    }
    
    .banner-success-body {
        padding: 24px;
    }
    
    .banner-success-actions {
        padding: 0 24px 24px 24px;
    }
    
    .banner-success-title {
        font-size: 24px;
    }
    
    .banner-success-icon {
        width: 60px;
        height: 60px;
    }
    
    .banner-success-icon i {
        font-size: 28px;
    }
}






















/* ================================
   PREMIUM STATUS - STYLES SIMPLES
   ps = premium status (préfixe)
   ================================ */

/* Base commune pour tous les statuts */
.ps-status {
    border-radius: 12px;
    padding: 14px 16px;
    margin: 10px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ================================
   STATUT PREMIUM ACTIF
   ================================ */
.ps-status.ps-active {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ffc107;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Barre animée en haut */
.ps-status.ps-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ffc107, #ff9800);
    background-size: 200% 100%;
    animation: ps-shimmer 3s linear infinite;
}

@keyframes ps-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Icône couronne */
.ps-status.ps-active .ps-icon-wrapper {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 3px 8px rgba(255, 152, 0, 0.3);
}

/* Contenu texte */
.ps-status.ps-active .ps-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ps-status.ps-active .ps-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e65100;
}

.ps-status.ps-active .ps-date {
    font-size: 14px;
    font-weight: 700;
    color: #bf360c;
}

/* ================================
   STATUT EN ATTENTE
   ================================ */
.ps-status.ps-pending {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Barre bleue en haut */
.ps-status.ps-pending::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #1976d2;
}

/* Header avec icône */
.ps-status.ps-pending .ps-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: #0d47a1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ps-status.ps-pending .ps-header i {
    color: #1565c0;
    animation: ps-pulse 2s ease-in-out infinite;
}

@keyframes ps-pulse {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Grille d'informations */
.ps-status.ps-pending .ps-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.ps-status.ps-pending .ps-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.ps-status.ps-pending .ps-info-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #1565c0;
    opacity: 0.8;
}

.ps-status.ps-pending .ps-info-value {
    font-size: 13px;
    font-weight: 700;
    color: #0d47a1;
}

/* Position spéciale */
.ps-status.ps-pending .ps-info-item:first-child .ps-info-value {
    font-size: 16px;
    color: #1976d2;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 480px) {
    .ps-status {
        padding: 12px;
        font-size: 12px;
    }
    
    .ps-status.ps-active .ps-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .ps-status.ps-pending .ps-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .ps-status.ps-pending .ps-info-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
















/*////////////////////////////////////////////////////////////////*
 * 🍪 NoraDrops Cookie Management System - Styles CSS
 * Gestion moderne et conforme RGPD des cookies
/////////////////////////////////////////////////////////////// */

.cookie-banner {
  position: fixed;
  bottom: -600px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border: 1px solid rgba(112, 112, 112, 0.3);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  z-index: 99999;
  width: 90%;
  max-width: 500px;
  transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  /* backdrop-filter: blur(10px); DISABLED - Performance */
}

.cookie-banner.show {
  bottom: 20px;
}

.cookie-banner.animate-in {
  animation: cookieBounce 0.6s ease;
}

@keyframes cookieBounce {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.02); }
}

.cookie-banner-content {
  padding: 20px;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.cookie-icon {
  font-size: 28px;
  margin-right: 12px;
  animation: cookieRotate 3s infinite;
}

@keyframes cookieRotate {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.cookie-banner-header h3 {
  color: #fff;
  font-size: 20px;
  margin: 0;
  flex: 1;
}

.cookie-close-btn {
  background: none;
  border: none;
  color: #707070;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}

.cookie-close-btn:hover {
  color: #fff;
  transform: rotate(90deg);
}

.cookie-description {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.cookie-categories {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 20px;
}

.cookie-categories::-webkit-scrollbar {
  width: 6px;
}

.cookie-categories::-webkit-scrollbar-track {
  background: rgba(112, 112, 112, 0.1);
  border-radius: 3px;
}

.cookie-categories::-webkit-scrollbar-thumb {
  background: #707070;
  border-radius: 3px;
}

.cookie-category {
  background: rgba(112, 112, 112, 0.1);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.cookie-category:hover {
  background: rgba(112, 112, 112, 0.15);
  transform: translateX(5px);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category-info h4 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-category-info h4 i {
  color: #f0b90b;
}

.cookie-category-info p {
  color: #909090;
  font-size: 12px;
  margin: 0;
}

.cookie-category-details {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}

.cookie-category-details p {
  color: #808080;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

/* Switch toggle */
.cookie-switch {
  position: relative;
}

.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch label {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  background: #404040;
  border-radius: 34px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-switch label::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-switch input:checked + label {
  background: linear-gradient(135deg, #f0b90c 0%, #9f7a05 100%);
}

.cookie-switch input:checked + label::after {
  transform: translateX(24px);
}

.cookie-switch.disabled label {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f0b90b !important;
}

.cookie-banner-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-secondary {
  background: transparent;
  color: #909090;
  border: 1px solid #404040;
}

.cookie-btn-secondary:hover {
  background: rgba(112, 112, 112, 0.1);
  border-color: #707070;
  color: #fff;
}

.cookie-btn-primary {
  background: #707070;
  color: #fff;
}

.cookie-btn-primary:hover {
  background: #808080;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(112, 112, 112, 0.3);
}

.cookie-btn-accent {
  background: linear-gradient(135deg, #f0b90b 0%, #a57e03 100%);
  color: #fff;
}

.cookie-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Notification toast */
.cookie-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border: 1px solid rgba(112, 112, 112, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  color: #fff;
  font-size: 14px;
  z-index: 100000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-toast.show {
  transform: translateX(0);
}

.cookie-toast.success {
  border-color: #4ade80;
}

.cookie-toast.error {
  border-color: #f87171;
}

/* Bouton flottant pour les paramètres */
#cookieSettingsBtn {
position: fixed;
  bottom: 23px;
  left: 8px;
  background: #ffffff78;
  color: white;
  border: none;
  border-radius: 120px;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  animation: cookieRotate 3s infinite;
  width: 60px;
  height: 60px;
}

#cookieSettingsBtn:hover {
  transform: scale(1.2);
  z-index: 9999;
}

/* Responsive */
@media (max-width: 600px) {
  .cookie-banner {
    width: 95%;
    bottom: -700px;
  }
  
  .cookie-banner.show {
    bottom: 10px;
  }
  
  .cookie-banner-footer {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}
