.cookie-consent-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: #360065;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.cookie-consent-toast.show { transform: translateY(0); opacity: 1; }
.cookie-consent-toast h3 { margin: 0 0 10px 0; font-size: 18px; font-weight: 600; }
.cookie-consent-toast p { margin: 0 0 15px 0; color: #ecf0f1; }
.cookie-consent-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-consent-btn {
    padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer;
    font-size: 14px; font-weight: 500; transition: background-color 0.2s ease;
    flex: 1; min-width: 80px;
}
.cookie-consent-btn.accept { background: #228a4e; color: white; }
.cookie-consent-btn.accept:hover { background: #219a52; }
.cookie-consent-btn.decline { background: #a7362a; color: white; }
.cookie-consent-btn.decline:hover { background: #c0392b; }

@media (max-width: 768px) {
    .cookie-consent-toast { left: 10px; right: 10px; bottom: 10px; }
    .cookie-consent-buttons { flex-direction: column; }
}
