/* Cookie Consent Popup Styles */

.cookie-consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid #ff6b35;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: slideUp 0.4s ease-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-popup.hidden {
    display: none;
    animation: slideDown 0.4s ease-in forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-consent-content {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-content h3 {
    margin: 0 0 8px 0;
    color: #ff6b35;
    font-size: 16px;
    font-weight: 600;
}

.cookie-consent-content p {
    margin: 0;
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-content p a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-consent-content p a:hover {
    color: #ff8a5b;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    min-width: fit-content;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent-btn-accept {
    background-color: #ff6b35;
    color: white;
}

.cookie-consent-btn-accept:hover {
    background-color: #ff8a5b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cookie-consent-btn-decline {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookie-consent-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #888;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-popup {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .cookie-consent-content {
        width: 100%;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .cookie-consent-btn {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-popup {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
    }

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

    .cookie-consent-btn {
        width: 100%;
        padding: 12px 16px;
    }
}
