﻿/* Luxury Horology Custom Styles */

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #c5a880;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #aa820a;
}

#toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast-msg {
    pointer-events: auto;
    background: #111827;
    color: #f9fafb;
    border-left: 4px solid #d4af37;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInLeft 0.3s ease-out forwards;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}