/* Cart Item Styles */
/* .cart-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  background: #ffffff;
  padding-bottom: 2px;
  padding-top: 2px;
} */

.item-details_checklist-row {
  gap: 16px;
  margin-bottom: 16px;
}

.item-image_checklist {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.item-details_checklist {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item_name_cart_item {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.item_variant_cart_item {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
}

.stock-status {
  font-size: 12px;
  color: #4caf50;
  margin-top: 4px;
}

.pack-size_cart_item {
  font-size: 12px;
  color: #999;
}

.quantity-price-row {
  gap: 20px;
}

.quantity-controls_checklist {
  display: flex;
  align-items: center !important;
  gap: 0 !important;
  border: 1px solid green !important;
  border-radius: 24px;
  overflow: hidden !important;
  background: white !important;
  margin: 0px 0px !important;
  padding: 0px 0px !important;
}

.quantity-btn_cart_main {
  width: 30px !important;
  height: 30px !important;
  background: #008000 !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid green !important;
}
.quantity-btn:hover {
  background: #45a049;
}

.quantity-btn:active {
  background: #3d8b40;
}

.quantity-input_checklist {
  width: 35px !important;
  height: 29px !important;
  border: none !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  background: white !important;
  outline: none !important;
  color: #495057 !important;
}

.quantity-input_checklist::-webkit-outer-spin-button,
.quantity-input_checklist::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input_checklist:focus {
  outline: none;
}

.item-price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.item-price {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.price-per-unit {
  font-size: 12px;
  color: #999;
}

.remove-btn_checklist {
  border: none;
  background: none;
  color: #dc3545;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.remove-btn:hover {
  color: #d32f2f;
  text-decoration: underline;
}

/* Confirm Order Button */
.confirm-btn {
  width: 100%;
  padding: 1rem;
  background-color: #0a6629ff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 1.5rem;
}
.confirm-btn:hover {
  background-color: #0a6629ff;
}
.quantity-btn_cart_main {
  border-radius: 21px !important;
}
.checkout-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 2px solid #d0d0d0;
  border-radius: 8px;
  background: #ffffff;
  position: sticky;
  bottom: 0;
  margin-left: 18px;
  margin-right: 18px;
}

.checkout-summary {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summary-price_checkout {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.summary-details {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.checkout-btn {
  flex: 1;
  padding: 12px 24px;
  background: #0a6629ff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 48px;
}

.checkout-btn:hover {
  background: #45a049;
}

.checkout-btn:active {
  background: #3d8b40;
}
.sidebar-section_checklist {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 20px;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.item-price-section_checklist {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.summary-row_checklist {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.sidebar-title_checklist {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.total-row_checklist {
  border-top: 1px solid #dee2e6;
  font-size: 1.1rem;
}
.cart-container_checklist{
  margin-top: 10px;
}
/* Responsive */
@media (max-width: 576px) {
  .checkout-footer {
    flex-direction: row;
    gap: 10px;
  }

  .checkout-btn {
    width: 100%;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cart-item {
    padding: 8px;
  }

  .item-image_checklist {
    width: 60px;
    height: 60px;
  }

  .quantity-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .item-price-section {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .remove-btn {
    margin-top: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {

  .product-image {
    width: 130px;
    height: 130px;
  }

  .section-title {
    font-size: 2rem;
  }
}
