
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 2000;
    padding: 16px;
    overflow-y: auto;
}

.cookie-banner-container {
    display: flex;
    flex-direction: column;
    gap: 13px;
    justify-content: center;
}

.cookie-text {
    font-size: 0.875rem;
    color: #000;
    text-align: center;
    margin: 0;
}

.cookie-link {
    text-decoration: underline;
    color: #000;
    font-size: 0.875rem;
}

.cookie-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    white-space: nowrap;
}

.cookie-button-outline,
.cookie-button-solid {
    padding: 4px 20px;
    height: 32px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0;
}

.cookie-button-outline {
    background: #fff;
    border: 1px solid #000;
    color: #000;
}

.cookie-button-solid {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}

.cookie-button-link {
    background: none;
    border: none;
    padding: 0;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    color: #000;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    z-index: 2100;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.cookie-modal.show {
    display: flex !important;
}

.cookie-modal__overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
}

.cookie-modal input[type="checkbox"]:focus {
    outline: none;
    box-shadow: none;
}

.cookie-modal input[type="checkbox"].custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid black;
    background-color: white;
    cursor: pointer;
    position: relative;
}

.cookie-modal input[type="checkbox"].custom-checkbox:checked {
    background-color: black;
    border-color: black;
}

.cookie-modal input[type="checkbox"].custom-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cookie-modal__content {
    background: #fff;
    color: #171717;
    max-width: 320px;
    width: calc(100% - 64px);
    margin: 32px auto;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    position: relative;
    border-radius: 16px;
    z-index: 2200;
    box-sizing: border-box;
}

.cookie-modal__header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    text-align: center;
}

.cookie-modal__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #171717;
}

.cookie-modal__close {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal__body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 0px 24px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
}

.cookie-modal__footer {
    display: flex;
    width: 100%;
    padding: 0;
    margin-top: 16px;
}

.cookie-modal__divider {
    height: 0.8px;
    background-color: #373737;
    border: none;
    width: 100%;
    margin: 16px 0px;
}

.cookie-modal-btn {
    flex: 1;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

.cookie-modal-btn-cancel {
    background-color: #f5f5f5;
    color: #171717;
    border-radius: 0;
    border-bottom-left-radius: 16px;
}

.cookie-modal-btn-confirm {
    background-color: #171717;
    color: #fff;
    border-radius: 0;
    border-bottom-right-radius: 16px;
}

.cookie-modal-accordion-box {
    padding: 8px 0px 8px 0px;
}

.cookie-modal-accordion {
    border: none;
    padding: 0;
    margin: 12px 0px 0px 0px;
}

.cookie-modal-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    margin: 0px 0px 12px 0px;
}

.cookie-modal-accordion-header label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cookie-modal-accordion-header input[type='checkbox'] {
    accent-color: black;
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.cookie-modal-accordion-label {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
}

.cookie-modal-accordion-icon {
    transition: transform 0.3s;
}

.cookie-modal-accordion.open .cookie-modal-accordion-icon {
    transform: rotate(180deg);
}

.cookie-modal-accordion-content {
    display: none;
    padding: 8px 0;
    font-size: 0.75rem;
    line-height: 1.4;
}

.cookie-modal-accordion.open .cookie-modal-accordion-content {
    display: block;
}

@media (max-width: 600px) {
    .cookie-modal-accordion-label {
        font-size: 0.875rem;
    }
}
