input:checked::before {
    visibility: hidden !important;
}
    .cookie-banner {
      position: fixed;
      bottom: -200px;
      left: 20px;
      right: 20px;
      margin: 0 auto;
      background: #ffffff;
      color: black;
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: bottom 0.5s ease-in-out;
      z-index: 9999;
    }

    .cookie-banner.show {
      bottom: 20px;
    }

    .cookie-content {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .cookie-icon {
      font-size: 24px;
      line-height: 1;
    }

    .cookie-text {
      font-size: 15px;
      font-weight: 400;
    }

    .cookie-text a {
      color: black;
      font-weight: 700;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .cookie-text a:hover {
      color: #252525;
    }

    .cookie-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .cookie-buttons button {
      padding: 10px 24px;
      border-radius: 8px;
      border: none;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .cookie-buttons .accept {
    background: #212121;
    color: #e3e3e3;
}

    .cookie-buttons .accept:hover {
      background: #000000;
    }

    .cookie-buttons .decline {
    background: #505050;
    color: #fff;
}

    .cookie-buttons .decline:hover {
      background: #252525;
    }

    .cookie-buttons .customize {
      background: #505050;
    color: #fff;
    }

    .cookie-buttons .customize:hover {
      background: #252525;
    }

    /* Cookie Modal */
    .cookie-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 10000;
    }

    .cookie-modal.active {
      display: flex;
      animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    .cookie-modal-content {
      background: #fff;
      width: 90%;
      max-width: 700px;
      border-radius: 16px;
      padding: 30px;
      overflow-y: auto;
      max-height: 85vh;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    }

    .cookie-modal-content h2 {
      color: #0f1028;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .cookie-modal-content p {
      color: #4a5568;
      font-size: 14px;
    }

    .cookie-item {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.2s;
    }

    .cookie-item:hover {
      background: #edf2f7;
    }

    .cookie-item h4 {
      color: #2d3748;
      font-size: 16px;
      margin-bottom: 5px;
    }

    .cookie-item p {
      font-size: 11px;
      color: #718096;
    }

    /* Switch */
    .switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 24px;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #cbd5e0;
      transition: 0.3s;
      border-radius: 34px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 3px;
      bottom: 3px;
      background: #fff;
      transition: 0.3s;
      border-radius: 50%;
    }

    input:checked + .slider {
      background: #333333;
    }

    input:checked + .slider:before {
      transform: translateX(26px);
    }

    input:disabled + .slider {
      background: #a0aec0;
      cursor: not-allowed;
    }

    .modal-footer {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 20px;
    }

    .save-btn, .close-btn {
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .save-btn {
      background: #333;
    color: #fff;
    }

    .save-btn:hover {
      background: #000000;
    }

    .close-btn {
      background: #e2e8f0;
      color: #4a5568;
    }

    .close-btn:hover {
      background: #cbd5e0;
    }

    /* Email Popup */
    .popup {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      display: none;
      flex-direction: column;
      gap: 15px;
      z-index: 10001;
      min-width: 350px;
      max-width: 450px;
    }

    .popup.show {
      display: flex;
      animation: slideIn 0.3s ease-in-out;
    }

    @keyframes slideIn {
      from { opacity: 0; transform: translate(-50%, -20px); }
      to { opacity: 1; transform: translate(-50%, 0); }
    }

    .popup input {
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      font-size: 14px;
      width: 100%;
      transition: border-color 0.2s;
    }

    .popup input:focus {
      border-color: #a0aec0;
      outline: none;
    }

    .button-row {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
    }

    .cancel-btn {
      background: transparent;
      color: #a0aec0;
      border: none;
      font-size: 14px;
      cursor: pointer;
      font-weight: 500;
    }

    .cancel-btn:hover {
      color: #1a7c5a;
    }

    .allow-btn {
      background: #222222;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }

    .allow-btn:hover {
      background: #000000;
    }
 img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 2em !important;
    width: 2em !important;
    margin: 0 .07em !important;
    vertical-align: -.1em !important;
    background: none !important;
    padding: 0 !important;
}
    /* Responsive */
    @media (max-width: 768px) {
      .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        left: 10px;
        right: 10px;
      }

      .cookie-buttons {
        width: 100%;
        justify-content: center;
      }

      .cookie-modal-content {
        padding: 20px;
      }

      .popup {
        min-width: 90%;
      }
    }