/* -------------------------------------------
Custom Cookie Banner
------------------------------------------- */

:root {
    --cc-bg: #1a1a1a;
    --cc-text-color: #f0f0f0;
    --cc-primary-color: #EA7203;
    --cc-secondary-color: #4b4b4b;
    --cc-border-color: #2c2c2c;
    --cc-link-color: #EA7203;
}

.dc-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    max-width: none;
    background-color: #0b0b0b;
    color: var(--cc-text-color);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 56px 72px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
    font-family: 'Outfit', sans-serif;
    transform: translateY(8px);
    opacity: 0;
    animation: dc-consent-in 0.25s ease-out forwards;
}

.dc-consent a {
    color: var(--cc-link-color);
    text-decoration: none;
}

.dc-consent a:hover {
    color: #fff;
    text-decoration: underline;
}

.dc-consent__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.dc-consent__text {
    max-width: 780px;
}

.dc-consent__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dc-consent__eyebrow {
    display: none;
}

.dc-consent__desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.dc-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.dc-consent--settings .dc-consent__actions--main {
    display: none;
}

.dc-consent__btn {
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dc-consent__btn--primary {
    background-color: var(--cc-primary-color);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    box-shadow: 0 10px 24px rgba(234, 114, 3, 0.25);
}

.dc-consent__btn--secondary {
    background-color: var(--cc-secondary-color);
    color: #fff;
}

.dc-consent__btn--ghost {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dc-consent__btn--link {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
    letter-spacing: 0;
    padding: 6px 10px;
}

.dc-consent__btn--primary:hover {
    background-color: #f2851b;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(234, 114, 3, 0.35);
}

.dc-consent__btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    transform: translateY(-1px);
}

.dc-consent__btn--link:hover {
    color: #fff;
    text-decoration: underline;
}


.dc-consent__modal {
    margin-top: 16px;
    border-top: 1px solid var(--cc-border-color);
    padding-top: 24px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.dc-consent__modal-inner {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.dc-consent__modal[hidden] {
    display: none;
}

.dc-consent__modal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dc-consent__modal-desc {
    font-size: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.dc-consent__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 64px;
    margin-bottom: 30px;
    justify-items: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.dc-consent__option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.dc-consent__option input {
    accent-color: var(--cc-primary-color);
    width: 22px;
    height: 22px;
}

.dc-consent__option input:disabled {
    opacity: 0.55;
}

.dc-consent__option span {
    line-height: 1.4;
}

@keyframes dc-consent-in {
    from {
        transform: translateY(12px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .dc-consent {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        padding: 24px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dc-consent__content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .dc-consent__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-left: 0;
        padding-top: 0;
    }

    .dc-consent__options {
        grid-template-columns: 1fr;
    }

    .dc-consent__btn--link {
        padding: 6px 0;
        text-align: center;
        margin-left: 0;
    }
}
