/* ===== PRIVACY CHOICES MODAL ===== */
    .privacy-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .privacy-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    .privacy-modal {
        background: #fff;
        border-radius: 12px;
        max-width: 640px;
        width: 100%;
        max-height: calc(100vh - 120px);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transform: translateY(20px);
        transition: transform 0.3s ease;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    .privacy-overlay.is-open .privacy-modal {
        transform: translateY(0);
    }

    /* Header */
    .privacy-modal__header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 30px 30px 25px;
        position: relative;
    }

    @media (min-width: 768px) {
        .privacy-modal__header {
            padding: 60px 60px 25px;
        }
    }

    .privacy-modal__title {
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin: 0;
        padding-right: 40px;
        color: #000;
    }

    @media (min-width: 768px) {
        .privacy-modal__title {
            font-size: 16px;
        }
    }

    .privacy-modal__close {
        position: absolute;
        top: 12px;
        right: 12px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        transition: transform 0.2s ease;
    }

    .privacy-modal__close:hover {
        transform: rotate(90deg);
    }

    .privacy-modal__close svg {
        stroke-width: 1.5px;
        transition: stroke-width 0.2s ease;
    }

    .privacy-modal__close:hover svg {
        stroke-width: 2px;
    }

    /* Content */
    .privacy-modal__content {
        padding: 0 30px 30px;
        overflow-y: auto;
        flex: 1;
    }

    @media (min-width: 768px) {
        .privacy-modal__content {
            padding: 0 60px 60px;
        }
    }

    .privacy-modal__description {
        font-size: 14px;
        line-height: 1.5;
        color: #000;
        margin: 0 0 30px;
        font-weight: 300;
    }

    @media (min-width: 768px) {
        .privacy-modal__description {
            font-size: 16px;
        }
    }

    /* List */
    .privacy-modal__list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .privacy-modal__item {
        margin: 30px 0;
    }

    @media (min-width: 768px) {
        .privacy-modal__item {
            margin: 50px 0;
        }
    }

    .privacy-modal__item-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .privacy-modal__label {
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #000;
    }

    @media (min-width: 768px) {
        .privacy-modal__label {
            font-size: 16px;
        }
    }

    .privacy-modal__item-description {
        font-size: 14px;
        line-height: 1.5;
        color: #000;
        margin: 20px 0 0;
        font-weight: 300;
    }

    @media (min-width: 768px) {
        .privacy-modal__item-description {
            font-size: 16px;
            margin-top: 30px;
        }
    }

    /* Toggle Switch */
    .privacy-toggle {
        display: flex;
        align-items: center;
        cursor: pointer;
        position: relative;
    }

    .privacy-toggle input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .privacy-toggle__switch {
        width: 44px;
        height: 22px;
        background: #ebebeb;
        border-radius: 22px;
        position: relative;
        transition: background-color 0.2s ease;
    }

    .privacy-toggle__switch::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 18px;
        background: #d1cfcf;
        border-radius: 50%;
        top: 2px;
        left: 2px;
        transition: transform 0.3s ease, background-color 0.2s ease;
    }

    /* Checked state */
    .privacy-toggle input:checked+.privacy-toggle__switch {
        background: #333;
    }

    .privacy-toggle input:checked+.privacy-toggle__switch::after {
        transform: translateX(22px);
        background: #fff;
    }

    /* Disabled state (Essential cookies) */
    .privacy-toggle--disabled {
        cursor: default;
    }

    .privacy-toggle--disabled input:checked+.privacy-toggle__switch {
        background: #000;
    }

    .privacy-toggle--disabled input:checked+.privacy-toggle__switch::after {
        background: #fff;
    }

    /* Save Button */
    .privacy-modal__save {
        width: 100%;
        min-height: 60px;
        background: #000;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 60px;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 1px;
        cursor: pointer;
        margin-top: 30px;
        transition: background-color 0.2s ease;
    }

    @media (min-width: 768px) {
        .privacy-modal__save {
            font-size: 16px;
        }
    }

    .privacy-modal__save:hover {
        background: #333;
    }

    /* Body scroll lock when modal is open */
    body.privacy-modal-open {
        overflow: hidden;
    }
