/* Cookie Consent Styles */
#cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 1rem;
    right: 1rem;
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 1.25rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 191, 36, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cookie-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 2.5rem;
    }
}

.cookie-content {
    flex: 1;
}

.cookie-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #fef3c7; /* amber-100 */
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-text {
    font-size: 0.875rem;
    color: #94a3b8; /* slate-400 */
    line-height: 1.5;
}

.cookie-text a {
    color: #fbbf24; /* amber-400 */
    text-decoration: underline;
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: #fcd34d; /* amber-300 */
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.cookie-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(217, 119, 6, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.cookie-btn-secondary:hover {
    background: rgba(148, 163, 184, 0.1);
    color: white;
    border-color: rgba(148, 163, 184, 0.4);
}
