.counter {
  display: flex;
  align-items: center;
}

.counter-btn {
  background-color: var(--button-secondary);
  color: var(--background-light);
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.counter-btn:active {
  background-color: var(--button-secondary-active);
}

.counter-value {
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--button-secondary);
}

/* Bottom Sheet Styling */

.bottom-sheet {
  width: 100%;
  max-width: 480px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  transition: height 0.3s ease;
  /* display: none !important; */
}

.chevron-btn {
  text-align: center;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 0;
}

.expandable-section {
  max-height: 0;
  overflow-y: auto;
  transition: max-height 0.3s ease;
}

.bottom-sheet.expanded .expandable-section {
  max-height: 300px;
}

.product-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px dashed #ddd;
}

.product-image {
  width: 60px !important;
  height: 60px !important;
  border-radius: 4px;
  margin-right: 12px;
}

.product-details {
  flex: 1;
}

.product-name {
  font-weight: bold;
  font-size: 14px;
}

.product-size {
  font-size: 12px;
  color: #888;
}

.product-price {
  font-size: 14px;
  font-weight: bold;
  margin-top: 4px;
}

.quantity-controls {
  display: flex;
  align-items: center;
}

.quantity-btn {
  background-color: #f1f1f1;
  border: none;
  padding: 6px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.quantity {
  margin: 0 8px;
  font-weight: bold;
}

.bottom-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: white;
  position: sticky;
  bottom: 0;
}

.total-items {
  font-size: 14px;
  margin-bottom: 0px;
}

.total-price {
  font-weight: bold;
  font-size: 16px;
}

.go-to-cart-btn {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.go-to-cart-btn:hover {
  background-color: #333;
}

.cart-section {
  background-color: var(--overpass);
  border-radius: 8px;
  padding-bottom: 16px;
  height: 331px;
  overflow-y: auto;
}
