
/* shop header */
.shop-header {
    padding-bottom: 2rem;
}

.shop-subtitle {
    font-size: 16px;
    color: var(--text-inactive);
}

.shop-subtitle a {
    color: inherit;
}

.shop-title {
    font-size: 2rem;
}

.shop-breadcrumb {
    text-decoration: underline;
}

/* shop row */
.shop-row {
    display: flex;
    gap: 0 1rem;
    flex-direction: row;
}

.shop-row.hidden {
    display: none;
}

.shop-col.left {
    flex: 1 0 auto;
    width: 256px;
}

.shop-col.right {
    width: 100%;
    flex: 1 1 auto;
}

/* shop bar */
.shop-bar {
    padding-bottom: 1rem;
    display: flex;

}

.shop-bar-results {
    font-weight: bold;
}

.shop-bar-order {
    margin-left: auto;
    user-select: none;
}

.shop-bar-order-select {
    border: none;
    padding-right: 0.5rem;
    cursor: pointer;
}

.shop-bar-order-select:focus-visible {
    outline: none;
}

/* shop page selector */
.shop-page-selector {
    margin-top: 3rem;
}

/* empty shop search */
.shop-no-products {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.shop-no-products.hidden {
    display: none;
}

.shop-no-products .text {
    font-size: 2rem;
    color: var(--text-inactive);
    font-style: italic;
    padding-bottom: 0.5rem;
}

/* Responsiveness */
/* lg screen */
@media only screen and (max-width: 1200px) {

}

/* md screen */
@media only screen and (max-width: 992px) {
    .shop-row {
        flex-direction: column;
    }

    .shop-col.left {
        flex: 1 0 auto;
        width: 100%;

    }
}

/* sm screen */
@media only screen and (max-width: 768px) {

}

/* xs screen */
@media only screen and (max-width: 576px) {
    .product-card-price.discounted {
        display: none;
    }
}