/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-consent__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent__content {
    flex: 1;
}

.cookie-consent__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.cookie-consent__text {
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 0;
}

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

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

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent__btn--accept {
    background-color: #ff7b00;
    color: #ffffff;
}

.cookie-consent__btn--accept:hover {
    background-color: #ff9933;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 123, 0, 0.3);
}

.cookie-consent__btn--decline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-consent__btn--decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent__wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent__actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-consent__btn {
        width: 100%;
        text-align: center;
    }

    .cookie-consent__title {
        font-size: 16px;
    }

    .cookie-consent__text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px;
    }

    .cookie-consent__btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

