/* Premium Cookie Banner for Toldos Murcia */
.cookie-banner-wrapper {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 10000;
    display: none;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 20px 50px rgba(42, 42, 78, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-info h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #2a2a4e;
}

.cookie-info p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.cookie-info a {
    color: #e8670a;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: #e8670a;
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 103, 10, 0.3);
}

.cookie-btn-accept:hover {
    background: #d15a08;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 103, 10, 0.4);
}

.cookie-btn-settings {
    background: #f0f0f5;
    color: #2a2a4e;
}

.cookie-btn-settings:hover {
    background: #e5e5f0;
}

@media (max-width: 768px) {
    .cookie-banner-wrapper {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    .cookie-banner-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
    }
}
