.cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1c1c1c;
    border-top: 1px solid #333;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookieConsentBanner.active {
    transform: translateY(0);
}

.cookieConsentContainer {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookieConsentContainer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookieConsentText {
    flex: 1;
}

.cookieConsentText h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cookieConsentText p {
    font-size: 0.875rem;
    color: #c0c0c0;
    margin: 0;
    line-height: 1.5;
}

.cookieConsentText a {
    color: #bd3d65;
    text-decoration: underline;
}

.cookieConsentButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookieConsentBtn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.cookieConsentBtnAccept {
    background: #bd3d65;
    color: white;
    border-color: #bd3d65;
}

.cookieConsentBtnAccept:hover {
    background: #d64573;
    border-color: #d64573;
}

.cookieConsentBtnReject {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cookieConsentBtnReject:hover {
    background: #333;
}

.cookieConsentBtnSettings {
    background: transparent;
    color: #c0c0c0;
    border-color: #555;
}

.cookieConsentBtnSettings:hover {
    border-color: #888;
    color: #ffffff;
}

.cookieSettingsPanel {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookieSettingsPanel.active {
    opacity: 1;
    visibility: visible;
}

.cookieSettingsOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.cookieSettingsContent {
    position: relative;
    background: #1c1c1c;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookieSettingsPanel.active .cookieSettingsContent {
    transform: scale(1);
}

.cookieSettingsClose {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
}

.cookieSettingsClose:hover {
    color: #fff;
}

.cookieSettingsContent h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cookieSettingsContent>p {
    color: #c0c0c0;
    margin-bottom: 1.5rem;
}

.cookieCategory {
    background: #242424;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #333;
}

.cookieCategoryHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookieCategoryHeader h4 {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

.cookieCategoryHeader input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #bd3d65;
}

.cookieCategoryHeader input[type="checkbox"]:disabled {
    opacity: 0.5;
}

.cookieCategory p {
    font-size: 0.8125rem;
    color: #888;
    margin: 0;
}

.cookieSettingsButtons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cookieSettingsButtons .cookieConsentBtn {
    flex: 1;
    min-width: 120px;
}