.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #20B2AA;
    color: white;
    padding: 1rem;
    display: none;
    z-index: 9999;
}

.cookie-banner.visible {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-settings-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
}

.cookie-settings-popup.visible {
    display: block;
}

.cookie-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.cookie-overlay.visible {
    display: block;
}

.cookie-settings-header {
    color: #20B2AA;
    margin-bottom: 1rem;
}

.cookie-toggle-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
    background-color: #20B2AA;
}

input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-button {
    background: white;
    border: 2px solid #20B2AA;
    color: #20B2AA;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 1rem;
}

.cookie-button.primary {
    background: #20B2AA;
    color: white;
}

.cookie-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-list {
    list-style: none;
    padding: 0;
}

.cookie-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: start;
}

.cookie-list li::before {
    content: "✓";
    color: #20B2AA;
    margin-right: 0.5rem;
}

.cookie-list.won-t li::before {
    content: "✕";
    color: #ff4444;
}