
.shop-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vw, 32px);
}

.shop-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* TOP BAR */
.shop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-gray-300);
}

.result-count {
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--color-gray-700);
    font-style: italic;
}

/* wrapper tổng */
.custom-ordering {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

/* label */
.orderby-label {
    display: flex;
    align-items: center;
    font-size: clamp(10px, 1vw, 12px);
    color: var(--color-gray-700);
    letter-spacing: clamp(0.3px, 0.1vw, 0.5px);
    text-transform: uppercase;
}

.custom-ordering .orderby-select {
    font-size: clamp(12px, 1.2vw, 14px);
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
}

/* khi focus */
.custom-ordering .orderby-select:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

@media (min-width: 993px) {
    .shop-wrapper {
        flex-direction: row;
    }

}

@media (max-width: 992px) {
    .shop-topbar {
        display: none;
    }

}