/* Cookie Toast Styles */
.cookie-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--gray-medium);
    animation: slideUp 0.5s ease;
}

.cookie-content {
    flex: 1;
}

.cookie-text {
    font-size: 0.9375rem;
    color: var(--gray-text);
    margin-bottom: 0;
    line-height: 1.5;
}

.cookie-link {
    color: var(--orange-serena);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-link:hover {
    color: var(--orange-hover);
}

.cookie-btn {
    background: var(--dark-serena);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: var(--orange-serena);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .cookie-toast {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
        border-bottom: none;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
