   .cookie-banner {
      position: fixed;
      left: 24px;
      right: 24px;
      bottom: 24px;
      z-index: 9999;

      max-width: 860px;
      margin: auto;

      background-color: rgb(255, 255, 255) !important;
     
      border-radius: 8px;
      padding: 24px;

      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;

      box-shadow:
        0 10px 30px rgba(0,0,0,.25),
        0 0 0 1px rgba(255,255,255,.05);

      animation: fadeUp .3s ease;
    }

    .cookie-banner.hidden {
      display: none;
    }
    
    .cookie-overlay.hidden {
      display: none;
	}
    
 	.cookie-overlay {
	    position: fixed;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    background: rgba(0, 0, 0, 0.5);
	    z-index: 9998;
	}

	.cookie-content {
		text-align: left;
	}

    .cookie-content h3 {
      margin: 0 0 8px;
      font-size: 18px;     
    }

    .cookie-content p {
      margin: 0;
      line-height: 1.5;
      color: rgb(45, 60, 85) !important;
      font-size: 12px;
    }
    
    .cookie-content a {	    
	    text-decoration: none;
	    color: #e30613;
	    font-size: 12px;
	}

    .cookie-actions {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
    }

    .cookie-btn {
      background-color: #e30613;
      color: white;
      border: 0;
      padding: 12px 18px;
      font-weight: 600;
      cursor: pointer;
      transition: .2s ease;
      font-size: 14px;
    }

    .cookie-btn.reject {
      /*background: var(--secondary);*/
      background-color: transparent;
      color: rgb(45, 60, 85);
    }

    .cookie-btn.reject:hover {
      opacity: .9;
    }


    .cookie-btn.accept:hover {
      transform: translateY(-1px);
    }

    .manage-cookies {
      margin-top: 32px;
      background: transparent;
      border: 0;
      text-decoration: underline;
      cursor: pointer;
      color: #334155;
      font-size: 14px;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 700px) {
      .cookie-banner {
        flex-direction: column;
        align-items: stretch;
      }

      .cookie-actions {
        width: 100%;
        flex-direction: column-reverse;
      }

      .cookie-btn {
        width: 100%;
      }
    }