:root {
    --gold: #c5a059;
    --dark-bg: #000000;
    --transition-premium: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Utilitários Premium */
.text-shadow-premium {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Transição suave para grids dinâmicos */
#watch-grid, #productsGrid {
    transition: opacity 0.4s ease-in-out;
}