.cookie-customise {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.customise-box {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 25px;
    border-radius: 20px;
}

.customise-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cookie-option p {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}

/* Toggle switch */
.switch {
    position: relative;
    width: 46px;
    height: 24px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 20px;
    transition: 0.3s;
}

.slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.switch input:checked + .slider {
    background: #ff4d2d;
}

.switch input:checked + .slider:before {
    transform: translateX(22px);
}

.switch.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.cookie-footer {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
