/** Shopify CDN: Minification failed

Line 14:4 Unexpected "{"
Line 14:5 Expected identifier but found "%"
Line 14:37 Unexpected "{"
Line 14:38 Expected identifier but found "%"

**/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;700&family=Roboto:wght@300;400;500;700&display=swap');
    
.section-dusf {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    {% comment %} min-height: 100vh; {% endcomment %}
}

.molecule-container {
    position: relative;
    width: 100%;
    height: 1000px;
    max-width: 1400px;
    margin: 0 auto;
}

.element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Roboto Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.element:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.connector {
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.6), rgba(0, 151, 167, 0.6));
    transform-origin: 0 100%;
    z-index: 5;
}

.tooltip {
    visibility: hidden;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 100;
    width: 220px;
    pointer-events: none;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
}

.element:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.tooltip-arrow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

/* Water Theme Colors */
.heavy-metals {
    background: linear-gradient(135deg, #006064, #00838f);
}

.light-metals {
    background: linear-gradient(135deg, #0097a7, #00acc1);
}

.chemical-compounds {
    background: linear-gradient(135deg, #00bcd4, #26c6da);
}

.disinfectants {
    background: linear-gradient(135deg, #4dd0e1, #80deea);
}

.gases {
    background: linear-gradient(135deg, #b2ebf2, #e0f2f1);
    color: #004d40;
}

.biological-contaminants {
    background: linear-gradient(135deg, #0277bd, #0288d1);
}

.scale-hardness {
    background: linear-gradient(135deg, #8e24aa, #ab47bc);
}

.center-element {
    background: linear-gradient(135deg, #42a5f5, #1976d2);
    border: 4px solid #bbdefb;
    z-index: 15;
    width: 180px;
    height: 180px;
}

.category-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    rounded: 20px;
    border-radius: 20px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.page-title {
    text-align: center;
    /* position: absolute; */
    width: 100%;
    /* top: 20px; */
    /* left: 0; */
    /* z-index: 30; */
}

@media (max-width: 768px) {
    .molecule-container {
        height: 700px;
        margin-top: 0;
    }
    
    .element {
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }
    
    .center-element {
        width: 120px;
        height: 120px;
    }
    
    .tooltip {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .molecule-container {
        height: 350px;
        margin-top: 0;
    }
    
    .element {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
    }
    
    .center-element {
        width: 100px;
        height: 100px;
    }
}