/**
 * 3DM Express - Cookie Consent Styles
 */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1B2A4A;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.is-visible {
    transform: translateY(0);
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
}

.cookie-consent__text {
    flex: 1;
}

.cookie-consent__text p {
    color: #CBD5E0;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent__text a {
    color: #FF6B00;
    text-decoration: underline;
}

.cookie-consent__text a:hover {
    color: #FFB366;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent__btn {
    padding: 0.625rem 1.5rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-consent__btn--accept {
    background-color: #FF6B00;
    color: #FFFFFF;
    border-color: #FF6B00;
}

.cookie-consent__btn--accept:hover {
    background-color: #E05E00;
    border-color: #E05E00;
}

.cookie-consent__btn--reject {
    background-color: transparent;
    color: #CBD5E0;
    border-color: #4A5568;
}

.cookie-consent__btn--reject:hover {
    border-color: #CBD5E0;
    color: #FFFFFF;
}

/* ── Responsive ────────────────────────────────────── */

@media (max-width: 768px) {
    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem 1rem;
    }

    .cookie-consent__actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent__btn {
        flex: 1;
        max-width: 160px;
    }
}
