

    /* Popup */
    .cookie-popup {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #1c1c1c;
      border-radius: 8px;
      max-width: 500px;
      width: 100%;
      padding: 20px;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
      z-index: 9999;
    }



    .cookie-popup h2 {
      margin: 0 0 10px;
      color: #fff;
    }
    .cookie-popup h2 span {
      color: #e63946;
    }

    .cookie-section {
      margin: 15px 0;
      padding: 10px 0;
      border-bottom: 1px solid #333;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cookie-section:last-child {
      border: none;
    }

    .cookie-section h3 {
      margin: 0;
      font-size: 14px;
      color: #fff;
    }

    .cookie-section p {
      margin: 5px 0 0;
      font-size: 12px;
      color: #bbb;
    }

    /* Toggle switch */
    .switch {
      position: relative;
      display: inline-block;
      width: 40px;
      height: 20px;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0; left: 0;
      right: 0; bottom: 0;
      background-color: #444;
      transition: .4s;
      border-radius: 20px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 14px; width: 14px;
      left: 3px;
      bottom: 3px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
    }

    input:checked + .slider {
      background-color: #e63946;
    }

    input:checked + .slider:before {
      transform: translateX(20px);
    }

    .buttons {
      display: flex;
      justify-content: flex-end;
      margin-top: 20px;
      gap: 10px;
    }

    .btn {
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
    }

    .btn.save {
      background: #e63946;
      color: #fff;
    }

    .btn.cancel {
      background: #333;
      color: #fff;
    }

    .info-box {
      margin-top: 15px;
      background: #2b2b2b;
      padding: 10px;
      border-radius: 6px;
      font-size: 12px;
      color: #bbb;
    }

    .info-box strong {
      color: #e63946;
    }

@media (max-width: 480px) {
  .cookie-popup {
    right: 10px;
    left: 10px;
    bottom: 10px;
    max-width: none;
    width: auto;
    padding: 15px;
    font-size: 14px;
  }

  .cookie-popup h2 {
    font-size: 16px;
  }

  .cookie-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-section h3 {
    font-size: 12px;
  }

  .cookie-section p {
    font-size: 11px;
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
}
