.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
  }
  
  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .cookie-content p {
    margin: 0;
    font-size: 14px;
  }
  
  .cookie-content a {
    color: #4da6ff;
    text-decoration: underline;
  }
  
  .cookie-buttons {
    margin-top: 10px;
  }
  
  .btn {
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    margin-left: 8px;
    font-weight: bold;
  }
  
  .accept {
    background: #28a745;
    color: #fff;
  }
  
  .reject {
    background: #dc3545;
    color: #fff;
  }

  /* Back to top button */

.back-to-top {
    position: fixed;
    /* display: none; */
    background: #007bff;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 30px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
    visibility: hidden;

    transform: translateY(20px);

    transition: 
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s;

    pointer-events: none;
  }

  .back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .back-to-top i {
    padding-top: 12px;
    color: #fff;
  }