/* style.css */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-panel {
    background: rgba(244, 250, 255, 0.6);
    backdrop-filter: blur(16px);
}

.metallic-gradient {
    background: linear-gradient(135deg, #051125 0%, #1b263b 100%);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #3b82f6;
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#mobile-menu {
    display: none;
    position: fixed;
    top: 96px;
    left: 0;
    width: 100%;
    height: calc(100vh - 96px);
    background: #0f172a;
    z-index: 40;
    overflow-y: auto;
    padding: 2rem;
}

#mobile-menu.active {
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    inset: 0;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-content {
    transform: translateY(20px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    opacity: 0;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

/* Products Specific */
.sidebar-item {
    border-bottom: 1px solid #eee;
    transition: all 0.2s;
    cursor: pointer;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item.active {
    background-color: #051125 !important;
    color: white !important;
    border-bottom: none;
}

.sidebar-item:not(.active):hover {
    background-color: #f8f8f8;
}

.product-section {
    display: none;
}

.product-section.active {
    display: block;
}

.spec-table-row {
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-table-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 700;
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.spec-value {
    font-weight: 500;
    color: #0f172a;
    font-size: 0.9rem;
}

.clip-path-hero {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.fade-update {
    animation: fadeUpdate 0.5s ease-out;
}

@keyframes fadeUpdate {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

nav {
    font-size: 14px;
}