@media (max-width: 768px) {
  .custom-mobile-cart {
    box-shadow: none;
    border: 1px solid #f4f0ea;
    border-radius: 10px;
    background: rgba(243, 240, 233, 0.41);
    margin-top: -1rem;
    margin-bottom: -1rem;
    padding: 8px;
  }

  .mobile-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    justify-content: flex-start;
    padding: 8px 12px;
  }



  

  .cart-thumbnail img {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
  }

  .cart-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex-grow: 1;
  }

  .cart-product-name {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
    color: #333;
  }

  .cart-product-variation {
    font-size: 13px;
    line-height: 1.15;
	
  }
  .cart-product-price {
    font-size: 16px;
  }

  .cart-quantity-form {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .cart-quantity-select {
    padding: 5px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ddd;
  }

  .update-cart-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }

  .update-cart-btn:hover {
    opacity: 0.7;
  }

  .remove-item img {
    width: 15px;
    height: 14px;
    cursor: pointer;
  }
}