/* Cookie Consent Popup - Compact Bottom-Right Style */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    background: linear-gradient(135deg, rgba(248, 97, 6, 0.98) 0%, rgba(220, 85, 5, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cookie-consent-banner.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-consent-text {
    color: #fff;
}

.cookie-consent-text h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-consent-text h3 i {
    font-size: 1.2rem;
    animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.cookie-consent-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s;
}

.cookie-consent-text a:hover {
    opacity: 0.8;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.cookie-btn i {
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background: #fff;
    color: #F86106;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-btn-accept:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Close button (optional) */
.cookie-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.2s;
    opacity: 0.7;
}

.cookie-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .cookie-consent-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 1.25rem;
    }

    .cookie-consent-text h3 {
        font-size: 0.95rem;
    }

    .cookie-consent-text p {
        font-size: 0.825rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .cookie-consent-banner {
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 16px 16px 0 0;
    }
}

/* Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}