/* Global Settings */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    cursor: none;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }

/* Custom Cursor */
#custom-cursor {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease-out, opacity 0.3s ease;
}

.cursor-hover {
    transform: scale(4);
    opacity: 0.5;
}

@media (max-width: 768px) {
    #custom-cursor { display: none; }
    body { cursor: auto; }
}

/* Effects and Transitions */
.transition-soft { 
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

.glow-text:hover { 
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); 
    color: #fff; 
}

.glow-button {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glow-button:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    background-color: #fff;
    color: #000;
}

/* Shop Elements (Index) */
.product-card:hover {
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    transition: all 0.5s ease;
}

.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: moveBg 15s infinite alternate ease-in-out;
}

@keyframes moveBg {
    0% { transform: translate(-10%, -10%) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.2); }
}

.cart-open { overflow: hidden; }
.active-link { border-bottom: 2px solid white; padding-bottom: 4px; }