#storeCartModal {
  --primary: #C85A17;
  --primary-hover: #A8440B;
  --secondary: #F3EAD8;
  --secondary-hover: #E9DBC2;
  --accent: #F59E0B;
  --card-bg: #FFFFFF;
  --bg-primary: #FAF7F2;
  --text-primary: #221510;
  --text-secondary: #6B584F;
  --border: #EADECF;
}

#storeCartModal * {
  box-sizing: border-box;
}

#storeCartModal .overflow-y-auto {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #EADECF transparent;
}

#storeCartModal .overflow-y-auto::-webkit-scrollbar {
  width: 6px;
}

#storeCartModal .overflow-y-auto::-webkit-scrollbar-track {
  background: transparent;
}

#storeCartModal .overflow-y-auto::-webkit-scrollbar-thumb {
  background-color: #EADECF;
  border-radius: 9999px;
}

#storeCartModal .overflow-y-auto::-webkit-scrollbar-thumb:hover {
  background-color: #C85A17;
}

@media (max-height: 700px) {
  #storeCartModal > div:last-child {
    max-height: 95vh;
  }
}