/* Estilos minimalistas y modernos */
  .cookie-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: #ffffff;
    color: #333333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 24px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border: 1px solid #eef2f5;
  }
  .cookie-container2 {
    position: fixed;
    bottom: 50px;
    left: 5px;
    max-width: 150px;
    background: #ffffff;
    color: #333333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 12px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border: 1px solid #eef2f5;
  }
  .cookie-content h3 { margin-top: 0; font-size: 18px; color: #111; }
  .cookie-content p { font-size: 13px; line-height: 1.5; color: #666; }
  .cookie-options { margin: 15px 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px;}
  .cookie-options label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
  .cookie-buttons { display: flex; gap: 8px; margin-top: 15px; justify-content: space-between; }
  
  /* Botones */
  .cookie-buttons button { 
    padding: 10px 14px; border-radius: 6px; border: none; font-size: 12px; font-weight: bold; cursor: pointer; transition: all 0.2s;
  }
  .btn-primary { background: #0052cc; color: white; }
  .btn-primary:hover { background: #0043a8; }
  .btn-secondary { background: #f4f5f7; color: #42526e; }
  .btn-secondary:hover { background: #ebecf0; }

