/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 400px;
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s forwards;
    border: 1px solid #e5aa17;
  }
  
  @keyframes slideUp {
    from {
      transform: translate(-50%, 100px);
      opacity: 0;
    }
    to {
      transform: translate(-50%, 0);
      opacity: 1;
    }
  }
  
  .cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .cookie-text h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #222;
  }
  
  .cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
  }
  
  .cookie-btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
  }
  
  .btn-accept {
    background-color: #e5aa17;
    color: white;
  }
  
  .btn-accept:hover {
    background-color: #c89815;
  }
  
  .btn-settings {
    background-color: #f1f1f1;
    color: #333;
  }
  
  .btn-settings:hover {
    background-color: #e1e1e1;
  }
  
  @media (max-width: 480px) {
    .cookie-consent {
      bottom: 0;
      border-radius: 10px 10px 0 0;
      width: 100%;
      max-width: none;
    }
    
    .cookie-buttons {
      flex-direction: column;
    }
  }