.line {
    width: 100vw;
    height: 1px;
    background-color: #E0E0E0;
}

.line.dark {
    background-color: #b9b9b9;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #E0E0E0;
}

.separator.cut {
    background: linear-gradient(
        to right, 
        #060606 0%,
        #E0E0E0 20%,
        #E0E0E0 80%,
        #060606 100%
    );
}

.separator.bolder {
   background-color: #a3a3a3; 
}

.indent {
    width: 30px;
    height: 30px;
    background-color: #b8b8b8;
    margin-top: 0.4rem;
}

.product-card .label {
    opacity: 1;
}

.label {
    padding: 0.25rem 1rem;
    border: 1px solid #c9c9c9;
    border-radius: 10rem;
    width: fit-content;
    font-size: 0.75em;
    color: #a0a0a0;
    opacity: 0;
    transform: translateY(0.1rem);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.label.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

@media screen and (max-width: 1365px) {
    .separator.hidden-1365 {
        display: none;
    }
    .hero .separator.cut {
        display: none;
    }
}