.shoppingbag-main-section {
  padding: 20px 0;
  min-height: 60vh;
}

.shoppingbag-title h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.shoppingbag-title span {
  color: #666;
  font-size: 14px;
}

.shopping-bag-inner{
  padding: 20px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.shopping-bag-inner:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.shopping-bag-inner h5{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.shopping-bag-inner-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.shopping-bag-inner-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.color-green{
  color: #257f39;
  font-weight: 500;
  font-size: 14px;
}

.bag-size-inner{
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bag-size-inner span{
  margin-right: 10px;
  font-weight: 500;
}

.bag-size-inner select{
  width: 200px;
  border-radius: 8px;
  padding: 6px 12px;
  border: 1px solid #ddd;
  background: white;
}

.bag-size-main {
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.bag-size-main span{
  font-size: 14px;
  font-weight: 500;
}

.increse-decrese{
  margin-left: 0;
  align-items: center;
  gap: 10px;
}

.increse-decrese span{
  margin-right: 10px;
  font-weight: 500;
}

.increse-decrese-btn{
  width: 132px;
  display: flex;
  align-items: center;
  border: 1px solid #949494;
  border-radius: 22px;
  overflow: hidden;
}

.increse-decrese-btn input{
  width: 60px;
  height: 36px;
  text-align: center;
  vertical-align: top;
  -moz-appearance: textfield;
  border: none;
  border-left: 1px solid #949494;
  border-right: 1px solid #949494;
  background: white;
}

.increse-decrese-btn input::-webkit-outer-spin-button,
.increse-decrese-btn input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.increse-decrese-btn input:focus-visible{
  outline: none;
  box-shadow: none;
}

.increse-decrese-btn input:focus{
  outline: none;
}

.decrease-quantity, .increase-quantity{
  width: 36px;
  height: 36px;
  background: #f8f9fa;
  color: #000;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.decrease-quantity:hover, .increase-quantity:hover {
  background: #e9ecef;
}

.decrease-quantity{
  border-radius: 22px 0 0 22px;
}

.increase-quantity{
  border-radius: 0 22px 22px 0;
}

.product-price p:first-child {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  color: #28a745;
}

.save-item{
  margin-right: 10px;
}

.save-item, .remove-item{
  background: #fff;
  border: 1px solid #000;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.save-item:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.remove-item:hover {
  background: #dc3545;
  border-color: #dc3545;
  color: white;
  transform: translateY(-2px);
}

.inner-total-price {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.total-price{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.price-title h6, .price h6 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.price h6 {
  color: #28a745;
}

.checkout-btn a {
  background: #28a745;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.checkout-btn a:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .shoppingbag-title h5 {
    font-size: 20px;
  }
  
  .shoppingbag-title span {
    font-size: 13px;
  }
  
  .shopping-bag-inner {
    padding: 15px 10px;
  }
  
  .shopping-bag-inner h5 {
    font-size: 14px;
  }
  
  .shopping-bag-inner-image {
    margin-bottom: 15px;
  }
  
  .bag-size-main {
    flex-direction: column;
    gap: 10px;
  }
  
  .bag-size-inner {
    width: 100%;
  }
  
  .bag-size-inner select {
    width: 100%;
    max-width: 200px;
  }
  
  .increse-decrese {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .product-price {
    margin-top: 10px;
  }
  
  .product-price p:first-child {
    font-size: 16px;
  }
  
  .save-item, .remove-item {
    font-size: 12px;
    padding: 6px 12px;
    margin-top: 5px;
  }
  
  .save-item {
    margin-right: 5px;
  }
  
  .total-price {
    padding: 10px 0;
  }
  
  .price-title h6, .price h6 {
    font-size: 18px;
  }
  
  .checkout-btn a {
    padding: 10px 25px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  
  .inner-total-price {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .shoppingbag-main-section {
    padding: 10px 0;
  }
  
  .shopping-bag-inner {
    padding: 12px 8px;
  }
  
  .bag-size-inner span,
  .increse-decrese span {
    font-size: 13px;
  }
  
  .increse-decrese-btn {
    width: 120px;
  }
  
  .increse-decrese-btn input {
    width: 48px;
    height: 32px;
  }
  
  .decrease-quantity, .increase-quantity {
    width: 32px;
    height: 32px;
  }
}