.localCartSectionContainer {
  height: 65%;
  display: flex;
  flex-direction: column;
}

.siderContent {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0px;
}

.listLocalCartContainer {
  overflow-y: auto;
  overscroll-behavior: contain !important;
  padding-bottom: 150px !important;
}

.emptyCartContainer {
  height: 100%;
  display: flex;
  align-items: center;
  overflow-y: auto;
  overscroll-behavior: contain !important;
  padding: 20px;
  text-align: center;
  justify-content: center;
}

.addToCartLabel {
  margin-left: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--textColor);
}

.suggestionContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.suggestionItem {
  background-color: var(--primaryColor);
  padding: 5px 15px;
  margin-top: 5px;
  margin-right: 10px;
  border-radius: 10px;
  color: var(--textColor);
  font-weight: 600;
  cursor: pointer;
}

.confirmModalDescription {
  margin-bottom: 12px;
  line-height: 1.4;
}

.confirmListContainer {
  max-height: 360px;
  overflow-y: auto;
  padding-right: 6px;
}

.confirmTotalRow {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-top: 16px;
  font-size: 1.1rem;
}
