    .bottom-gradient {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: linear-gradient(to top, #BABEC1 0%, transparent 100%);
      pointer-events: none;
      z-index: 998;
    }

    /* GDPR BAR */
    .gdpr-box {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #fff;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      font-size: 15px;
      font-weight: bold;
      line-height: 1.4;
      z-index: 999;
      opacity: 1;
      transition: opacity 0.5s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .gdpr-box.hide {
      opacity: 0;
      pointer-events: none;
    }

    .gdpr-wrapper {
      width: 55%;
      margin: 0 auto;
    }

    .gdpr-content {
      display: flex;
      align-items: center;
      gap: 40px;
      font-size: 12px;
      flex-wrap: nowrap;
      width: 100%;
    }

    .gdpr-text {
      flex: 0 1 75%;
      max-width: 75%;
      margin: 0 auto;
      text-align: center;
    }

    .gdpr-content button {
      padding: 8px 16px;
      background-color: #000;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
      font-size: 14px;
      margin-left: auto;
      margin-right: 40px;
    }

    .gdpr-content button:hover {
      background-color: #333;
    }
	