.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.transition-luxury {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.object-shadow {
    box-shadow: 0px 40px 80px rgba(0, 0, 0, 0.06);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f9f9f8; 
}

.dark ::-webkit-scrollbar-track {
    background: #1a1c1c;
}

::-webkit-scrollbar-thumb {
    background: #1a1c1c;
    border-radius: 0;
}

.dark ::-webkit-scrollbar-thumb {
    background: #e5e2e1;
}

.purchase-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.purchase-confirmation.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.parallax-zoom {
    transform: scale(1);
    transition: transform 0.1s linear;
    will-change: transform;
}

.industrial-bg {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 1) 0%, rgba(243, 244, 243, 1) 100%);
}

.dark .industrial-bg {
    background: radial-gradient(circle at center, rgba(28, 27, 27, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dark .pricing-card {
    background: rgba(26, 28, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}