.bottom-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.1s linear;
}

.bottom-sheet.show {
  opacity: 1;
  z-index: 1000;
  pointer-events: auto;
}

.bottom-sheet .sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: #000;
}

.bottom-sheet .content {
  width: 100%;
  position: relative;
  background: var(--colorPrimary);
  max-height: 100vh;
  height: 50vh;
  max-width: 1150px;
  padding: 25px 30px;
  transform: translateY(100%);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: 0.3s ease;
}

.bottom-sheet.show .content {
  transform: translateY(0%);
}

.bottom-sheet.dragging .content {
  transition: none;
}

.bottom-sheet.fullscreen .content {
  border-radius: 0;
  overflow-y: hidden;
}

.bottom-sheet .header {
  display: flex;
  justify-content: center;
}

.header .drag-icon {
  cursor: grab;
  user-select: none;
  padding: 15px;
  margin-top: -15px;
}

.header .drag-icon span {
  height: 4px;
  width: 40px;
  display: block;
  background: #217550;
  border-radius: 50px;
}

.bottom-sheet .body {
  height: 100%;
  overflow-y: auto;
  padding: 15px 0 40px;
  scrollbar-width: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.bottom-sheet .body::-webkit-scrollbar {
  width: 0;
}

.bottom-sheet .body h2 {
  font-size: 1.8rem;
}

.bottom-sheet .body p {
  margin-top: 20px;
  font-size: 1.05rem;
}

.bottom-sheet-product-image-container {
  width: 50%;
  height: 0;
  padding-bottom: 50%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  position: relative;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.bottom-sheet-product-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bottom-sheet-product-info-container {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  width: 100%;
}

.bottom-sheet-product-info-container .name {
  font-size: 26px;
  font-weight: 700;
  color: var(--nb-primary-text-color);
}

.bottom-sheet-product-info-container .price {
  font-size: 26px;
  font-weight: 700;
  color: var(--nb-primary-text-color);
}

.bottom-sheet-product-info-container .price > strike {
  color: #afafaf;
  font-size: 12px;
  font-weight: 500;
}

.bottom-sheet-product-info-container .description {
  color: #595959;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.bottom-sheet-product-info-container .category-container {
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--nb-secondary-color);
  color: #fff;
  align-self: flex-start;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  gap: 5px;
  margin-top: auto;
}

.bottom-sheet-product-info-container .category-container .text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.product-item {
  position: relative;
}

.product-item .bottom-sheet-product-info-container .not-available {
  display: none;
}

.product-item.inactive .bottom-sheet-product-info-container .not-available {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  color: #9b9b9b;
  background: #f1f1f1;
  padding: 8px 10px;
  border-radius: 5px;
  margin-top: 10px;
}

.product-item.inactive .bottom-sheet-product-info-container .price {
  color: #9b9b9b;
}

.product-item.inactive .bottom-sheet-product-info-container .price > strike {
  color: #9b9b9b;
  font-size: 12px;
  font-weight: 500;
}

.product-item.inactive .bottom-sheet-product-info-container .category-container {
  color: #9b9b9b;
  background: #f1f1f1;
}

.product-item.inactive .bottom-sheet-product-info-container .category-container .text {
  color: #9b9b9b;
  font-size: 10px;
  font-weight: 500;
}

.product-item.inactive .bottom-sheet-product-info-container .name {
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 700;
}

.product-item.inactive .bottom-sheet-product-image-container img {
  -webkit-filter: grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(0%);
  filter: grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(0%);
  mix-blend-mode: none;
}

.product-item.inactive .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 60%);
  border-radius: 20px 20px 0 0;
}

.bottom-part {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
}

.bottom-sheet .fixed-footer {
  position: absolute;
  background-color: var(--colorPrimary);
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 25px 30px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.bottom-sheet .price {
  font-size: 26px;
  font-weight: 700;
  color: var(--nb-primary-text-color);
}

.bottom-sheet .price > strike {
  color: #afafaf;
  font-size: 16px;
  font-weight: 500;
}

.bottom-sheet .category-container {
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--nb-secondary-color);
  color: #fff;
  align-self: flex-start;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  gap: 5px;
  margin-top: auto;
}

.bottom-sheet .category-container .text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.bottom-sheet .badge-section {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bottom-sheet .product-badge {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #4b92ff;
  padding: 8px 10px;
  border-radius: 5px;
}

.product-item.inactive .category-container {
  color: #9b9b9b;
  background: #f1f1f1;
}

.product-item.inactive .category-container .text {
  color: #9b9b9b;
  font-size: 10px;
  font-weight: 500;
}