/* Cookie Consent Banner Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid rgba(255, 255, 255, 0.2);
}

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

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.cookie-consent-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    color: white;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-icon {
    font-size: 24px;
    color: #ffd700;
    animation: bounce 2s infinite;
}

.cookie-message {
    flex: 1;
}

.cookie-link {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: #ffed4e;
    text-decoration: none;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-accept {
    background: #10b981;
    color: white;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.btn-accept:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px 0;
    }

    .cookie-consent-text {
        flex-direction: column;
        gap: 8px;
    }

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

    .btn-accept, .btn-decline {
        flex: 1;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-message {
        font-size: 13px;
    }

    .btn-accept, .btn-decline {
        padding: 8px 16px;
        font-size: 13px;
    }
}